UNPKG

@pdfme/pdf-lib

Version:

Create and modify PDF files with JavaScript

88 lines 3.38 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("../core"); /** * Represents JavaScript that has been embedded in a [[PDFDocument]]. */ class PDFJavaScript { constructor(ref, doc, embedder) { /** The unique reference assigned to this embedded script within the document. */ Object.defineProperty(this, "ref", { enumerable: true, configurable: true, writable: true, value: void 0 }); /** The document to which this embedded script belongs. */ Object.defineProperty(this, "doc", { enumerable: true, configurable: true, writable: true, value: void 0 }); Object.defineProperty(this, "alreadyEmbedded", { enumerable: true, configurable: true, writable: true, value: false }); Object.defineProperty(this, "embedder", { enumerable: true, configurable: true, writable: true, value: void 0 }); this.ref = ref; this.doc = doc; this.embedder = embedder; } /** * > **NOTE:** You probably don't need to call this method directly. The * > [[PDFDocument.save]] and [[PDFDocument.saveAsBase64]] methods will * > automatically ensure all JavaScripts get embedded. * * Embed this JavaScript in its document. * * @returns Resolves when the embedding is complete. */ async embed() { if (!this.alreadyEmbedded) { const { catalog, context } = this.doc; const ref = await this.embedder.embedIntoContext(this.doc.context, this.ref); if (!catalog.has(core_1.PDFName.of('Names'))) { catalog.set(core_1.PDFName.of('Names'), context.obj({})); } const Names = catalog.lookup(core_1.PDFName.of('Names'), core_1.PDFDict); if (!Names.has(core_1.PDFName.of('JavaScript'))) { Names.set(core_1.PDFName.of('JavaScript'), context.obj({})); } const Javascript = Names.lookup(core_1.PDFName.of('JavaScript'), core_1.PDFDict); if (!Javascript.has(core_1.PDFName.of('Names'))) { Javascript.set(core_1.PDFName.of('Names'), context.obj([])); } const JSNames = Javascript.lookup(core_1.PDFName.of('Names'), core_1.PDFArray); JSNames.push(core_1.PDFHexString.fromText(this.embedder.scriptName)); JSNames.push(ref); this.alreadyEmbedded = true; } } } /** * > **NOTE:** You probably don't want to call this method directly. Instead, * > consider using the [[PDFDocument.addJavaScript]] method, which will * create instances of [[PDFJavaScript]] for you. * * Create an instance of [[PDFJavaScript]] from an existing ref and script * * @param ref The unique reference for this script. * @param doc The document to which the script will belong. * @param embedder The embedder that will be used to embed the script. */ Object.defineProperty(PDFJavaScript, "of", { enumerable: true, configurable: true, writable: true, value: (ref, doc, embedder) => new PDFJavaScript(ref, doc, embedder) }); exports.default = PDFJavaScript; //# sourceMappingURL=PDFJavaScript.js.map