123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2021 Mozilla Foundation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * @licend The above is the entire license notice for the
- * Javascript code in this page
- */
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.XfaLayer = void 0;
- var _util = require("../shared/util.js");
- var _xfa_text = require("./xfa_text.js");
- class XfaLayer {
- static setupStorage(html, id, element, storage, intent) {
- const storedData = storage.getValue(id, {
- value: null
- });
- switch (element.name) {
- case "textarea":
- if (storedData.value !== null) {
- html.textContent = storedData.value;
- }
- if (intent === "print") {
- break;
- }
- html.addEventListener("input", event => {
- storage.setValue(id, {
- value: event.target.value
- });
- });
- break;
- case "input":
- if (element.attributes.type === "radio" || element.attributes.type === "checkbox") {
- if (storedData.value === element.attributes.xfaOn) {
- html.setAttribute("checked", true);
- } else if (storedData.value === element.attributes.xfaOff) {
- html.removeAttribute("checked");
- }
- if (intent === "print") {
- break;
- }
- html.addEventListener("change", event => {
- storage.setValue(id, {
- value: event.target.checked ? event.target.getAttribute("xfaOn") : event.target.getAttribute("xfaOff")
- });
- });
- } else {
- if (storedData.value !== null) {
- html.setAttribute("value", storedData.value);
- }
- if (intent === "print") {
- break;
- }
- html.addEventListener("input", event => {
- storage.setValue(id, {
- value: event.target.value
- });
- });
- }
- break;
- case "select":
- if (storedData.value !== null) {
- for (const option of element.children) {
- if (option.attributes.value === storedData.value) {
- option.attributes.selected = true;
- }
- }
- }
- html.addEventListener("input", event => {
- const options = event.target.options;
- const value = options.selectedIndex === -1 ? "" : options[options.selectedIndex].value;
- storage.setValue(id, {
- value
- });
- });
- break;
- }
- }
- static setAttributes({
- html,
- element,
- storage = null,
- intent,
- linkService
- }) {
- const {
- attributes
- } = element;
- const isHTMLAnchorElement = html instanceof HTMLAnchorElement;
- if (attributes.type === "radio") {
- attributes.name = `${attributes.name}-${intent}`;
- }
- for (const [key, value] of Object.entries(attributes)) {
- if (value === null || value === undefined || key === "dataId") {
- continue;
- }
- if (key !== "style") {
- if (key === "textContent") {
- html.textContent = value;
- } else if (key === "class") {
- html.setAttribute(key, value.join(" "));
- } else {
- if (isHTMLAnchorElement && (key === "href" || key === "newWindow")) {
- continue;
- }
- html.setAttribute(key, value);
- }
- } else {
- Object.assign(html.style, value);
- }
- }
- if (isHTMLAnchorElement) {
- if (!linkService.addLinkAttributes) {
- (0, _util.warn)("XfaLayer.setAttribute - missing `addLinkAttributes`-method on the `linkService`-instance.");
- }
- linkService.addLinkAttributes?.(html, attributes.href, attributes.newWindow);
- }
- if (storage && attributes.dataId) {
- this.setupStorage(html, attributes.dataId, element, storage);
- }
- }
- static render(parameters) {
- const storage = parameters.annotationStorage;
- const linkService = parameters.linkService;
- const root = parameters.xfa;
- const intent = parameters.intent || "display";
- const rootHtml = document.createElement(root.name);
- if (root.attributes) {
- this.setAttributes({
- html: rootHtml,
- element: root,
- intent,
- linkService
- });
- }
- const stack = [[root, -1, rootHtml]];
- const rootDiv = parameters.div;
- rootDiv.appendChild(rootHtml);
- const transform = `matrix(${parameters.viewport.transform.join(",")})`;
- rootDiv.style.transform = transform;
- rootDiv.setAttribute("class", "xfaLayer xfaFont");
- const textDivs = [];
- while (stack.length > 0) {
- const [parent, i, html] = stack[stack.length - 1];
- if (i + 1 === parent.children.length) {
- stack.pop();
- continue;
- }
- const child = parent.children[++stack[stack.length - 1][1]];
- if (child === null) {
- continue;
- }
- const {
- name
- } = child;
- if (name === "#text") {
- const node = document.createTextNode(child.value);
- textDivs.push(node);
- html.appendChild(node);
- continue;
- }
- let childHtml;
- if (child?.attributes?.xmlns) {
- childHtml = document.createElementNS(child.attributes.xmlns, name);
- } else {
- childHtml = document.createElement(name);
- }
- html.appendChild(childHtml);
- if (child.attributes) {
- this.setAttributes({
- html: childHtml,
- element: child,
- storage,
- intent,
- linkService
- });
- }
- if (child.children && child.children.length > 0) {
- stack.push([child, -1, childHtml]);
- } else if (child.value) {
- const node = document.createTextNode(child.value);
- if (_xfa_text.XfaText.shouldBuildText(name)) {
- textDivs.push(node);
- }
- childHtml.appendChild(node);
- }
- }
- for (const el of rootDiv.querySelectorAll(".xfaNonInteractive input, .xfaNonInteractive textarea")) {
- el.setAttribute("readOnly", true);
- }
- return {
- textDivs
- };
- }
- static update(parameters) {
- const transform = `matrix(${parameters.viewport.transform.join(",")})`;
- parameters.div.style.transform = transform;
- parameters.div.hidden = false;
- }
- }
- exports.XfaLayer = XfaLayer;
|