2023-08-07 18:02:18 +00:00
|
|
|
import { DeesElement, property, html, customElement, domtools, type TemplateResult, type CSSResult, } from '@design.estate/dees-element';
|
2022-05-30 21:15:32 +00:00
|
|
|
|
2023-08-07 17:13:29 +00:00
|
|
|
import { Deferred } from '@push.rocks/smartpromise';
|
2022-05-30 21:15:32 +00:00
|
|
|
|
2023-09-07 00:57:30 +00:00
|
|
|
// import type pdfjsTypes from 'pdfjs-dist';
|
2022-05-30 21:15:32 +00:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
interface HTMLElementTagNameMap {
|
|
|
|
'dees-pdf': DeesPdf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@customElement('dees-pdf')
|
|
|
|
export class DeesPdf extends DeesElement {
|
|
|
|
// DEMO
|
|
|
|
public static demo = () => html` <dees-pdf></dees-pdf> `;
|
|
|
|
|
|
|
|
// INSTANCE
|
|
|
|
|
|
|
|
@property()
|
|
|
|
public pdfUrl: string =
|
|
|
|
'https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf';
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
// you have access to all kinds of things through this.
|
|
|
|
// this.setAttribute('gotIt','true');
|
|
|
|
}
|
|
|
|
|
|
|
|
public render(): TemplateResult {
|
|
|
|
return html`
|
|
|
|
<style>
|
|
|
|
:host {
|
2023-10-05 12:36:59 +00:00
|
|
|
font-family: 'Roboto', 'Inter', sans-serif;
|
2022-05-30 21:15:32 +00:00
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
:host([hidden]) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pdfcanvas {
|
|
|
|
box-shadow: 0px 0px 5px #ccc;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<canvas id="pdfcanvas" .height=${0} .width=${0}></canvas>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static pdfJsReady: Promise<any>;
|
2023-09-07 00:57:30 +00:00
|
|
|
public static pdfjsLib: any // typeof pdfjsTypes;
|
2022-05-30 21:15:32 +00:00
|
|
|
public async connectedCallback() {
|
|
|
|
super.connectedCallback();
|
|
|
|
if (!DeesPdf.pdfJsReady) {
|
|
|
|
const pdfJsReadyDeferred = domtools.plugins.smartpromise.defer();
|
|
|
|
DeesPdf.pdfJsReady = pdfJsReadyDeferred.promise;
|
2024-01-15 11:57:49 +00:00
|
|
|
// @ts-ignore
|
|
|
|
DeesPdf.pdfjsLib = await import('https://cdn.jsdelivr.net/npm/pdfjs-dist@4.0.379/+esm');
|
|
|
|
DeesPdf.pdfjsLib.GlobalWorkerOptions.workerSrc = 'https://cdn.jsdelivr.net/npm/pdfjs-dist@4.0.379/build/pdf.worker.mjs';
|
2022-05-30 21:15:32 +00:00
|
|
|
pdfJsReadyDeferred.resolve();
|
|
|
|
}
|
|
|
|
await DeesPdf.pdfJsReady;
|
|
|
|
this.displayContent();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async displayContent() {
|
|
|
|
await DeesPdf.pdfJsReady;
|
|
|
|
|
|
|
|
// Asynchronous download of PDF
|
|
|
|
const loadingTask = DeesPdf.pdfjsLib.getDocument(this.pdfUrl);
|
|
|
|
loadingTask.promise.then(
|
|
|
|
(pdf) => {
|
|
|
|
console.log('PDF loaded');
|
|
|
|
|
|
|
|
// Fetch the first page
|
|
|
|
const pageNumber = 1;
|
|
|
|
pdf.getPage(pageNumber).then((page) => {
|
|
|
|
console.log('Page loaded');
|
|
|
|
|
|
|
|
const scale = 10;
|
|
|
|
const viewport = page.getViewport({ scale: scale });
|
|
|
|
|
|
|
|
// Prepare canvas using PDF page dimensions
|
|
|
|
const canvas: any = this.shadowRoot.querySelector('#pdfcanvas');
|
|
|
|
const context = canvas.getContext('2d');
|
|
|
|
canvas.height = viewport.height;
|
|
|
|
canvas.width = viewport.width;
|
|
|
|
|
|
|
|
// Render PDF page into canvas context
|
|
|
|
const renderContext = {
|
|
|
|
canvasContext: context,
|
|
|
|
viewport: viewport,
|
|
|
|
};
|
|
|
|
|
|
|
|
const renderTask = page.render(renderContext);
|
|
|
|
renderTask.promise.then(function () {
|
|
|
|
console.log('Page rendered');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(reason) => {
|
|
|
|
// PDF loading error
|
|
|
|
console.error(reason);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|