2021-03-19 18:11:40 +09:00
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
2021-05-27 23:56:31 +09:00
|
|
|
import { PageViewport } from "./display_utils.js";
|
|
|
|
|
2021-03-19 18:11:40 +09:00
|
|
|
class XfaLayer {
|
2021-05-28 00:44:55 +09:00
|
|
|
static setupStorage(html, fieldId, element, storage, intent) {
|
2021-05-24 20:42:42 +09:00
|
|
|
const storedData = storage.getValue(fieldId, { value: null });
|
|
|
|
switch (element.name) {
|
|
|
|
case "textarea":
|
2021-06-03 02:14:41 +09:00
|
|
|
if (storedData.value !== null) {
|
|
|
|
html.textContent = storedData.value;
|
|
|
|
}
|
2021-05-28 00:44:55 +09:00
|
|
|
if (intent === "print") {
|
|
|
|
break;
|
|
|
|
}
|
2021-05-24 20:42:42 +09:00
|
|
|
html.addEventListener("input", event => {
|
|
|
|
storage.setValue(fieldId, { value: event.target.value });
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "input":
|
|
|
|
if (element.attributes.type === "radio") {
|
2021-05-28 00:44:55 +09:00
|
|
|
if (storedData.value) {
|
|
|
|
html.setAttribute("checked", true);
|
|
|
|
}
|
|
|
|
if (intent === "print") {
|
|
|
|
break;
|
|
|
|
}
|
2021-05-24 20:42:42 +09:00
|
|
|
html.addEventListener("change", event => {
|
|
|
|
const { target } = event;
|
|
|
|
for (const radio of document.getElementsByName(target.name)) {
|
|
|
|
if (radio !== target) {
|
|
|
|
const id = radio.id;
|
|
|
|
storage.setValue(id.split("-")[0], { value: false });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
storage.setValue(fieldId, { value: target.checked });
|
|
|
|
});
|
2021-05-28 00:44:55 +09:00
|
|
|
} else if (element.attributes.type === "checkbox") {
|
|
|
|
if (storedData.value) {
|
|
|
|
html.setAttribute("checked", true);
|
|
|
|
}
|
|
|
|
if (intent === "print") {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
html.addEventListener("input", event => {
|
|
|
|
storage.setValue(fieldId, { value: event.target.checked });
|
|
|
|
});
|
2021-05-24 20:42:42 +09:00
|
|
|
} else {
|
2021-05-28 00:44:55 +09:00
|
|
|
if (storedData.value !== null) {
|
|
|
|
html.setAttribute("value", storedData.value);
|
|
|
|
}
|
|
|
|
if (intent === "print") {
|
|
|
|
break;
|
|
|
|
}
|
2021-05-24 20:42:42 +09:00
|
|
|
html.addEventListener("input", event => {
|
|
|
|
storage.setValue(fieldId, { 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
|
|
|
|
? null
|
|
|
|
: options[options.selectedIndex].value;
|
|
|
|
storage.setValue(fieldId, { value });
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-28 00:44:55 +09:00
|
|
|
static setAttributes(html, element, storage, intent) {
|
2021-05-24 20:42:42 +09:00
|
|
|
const { attributes } = element;
|
2021-05-28 00:44:55 +09:00
|
|
|
if (attributes.type === "radio") {
|
|
|
|
// Avoid to have a radio group when printing with the same as one
|
|
|
|
// already displayed.
|
|
|
|
attributes.name = `${attributes.name}-${intent}`;
|
|
|
|
}
|
2021-05-24 20:42:42 +09:00
|
|
|
for (const [key, value] of Object.entries(attributes)) {
|
|
|
|
if (value === null || value === undefined || key === "fieldId") {
|
2021-03-19 18:11:40 +09:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key !== "style") {
|
2021-05-19 18:09:21 +09:00
|
|
|
if (key === "textContent") {
|
|
|
|
html.textContent = value;
|
2021-06-03 02:14:41 +09:00
|
|
|
} else if (key === "class") {
|
|
|
|
html.setAttribute(key, value.join(" "));
|
2021-05-19 18:09:21 +09:00
|
|
|
} else {
|
|
|
|
html.setAttribute(key, value);
|
|
|
|
}
|
2021-03-19 18:11:40 +09:00
|
|
|
} else {
|
|
|
|
Object.assign(html.style, value);
|
|
|
|
}
|
|
|
|
}
|
2021-05-24 20:42:42 +09:00
|
|
|
|
|
|
|
// Set the value after the others to be sure overwrite
|
|
|
|
// any other values.
|
|
|
|
if (storage && attributes.fieldId !== undefined) {
|
|
|
|
this.setupStorage(html, attributes.fieldId, element, storage);
|
|
|
|
}
|
2021-03-19 18:11:40 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
static render(parameters) {
|
2021-05-24 20:42:42 +09:00
|
|
|
const storage = parameters.annotationStorage;
|
2021-03-19 18:11:40 +09:00
|
|
|
const root = parameters.xfa;
|
2021-05-28 00:44:55 +09:00
|
|
|
const intent = parameters.intent;
|
2021-03-19 18:11:40 +09:00
|
|
|
const rootHtml = document.createElement(root.name);
|
|
|
|
if (root.attributes) {
|
2021-05-24 20:42:42 +09:00
|
|
|
this.setAttributes(rootHtml, root);
|
2021-03-19 18:11:40 +09:00
|
|
|
}
|
|
|
|
const stack = [[root, -1, rootHtml]];
|
|
|
|
|
2021-03-25 21:02:39 +09:00
|
|
|
const rootDiv = parameters.div;
|
|
|
|
rootDiv.appendChild(rootHtml);
|
2021-05-27 23:56:31 +09:00
|
|
|
|
|
|
|
let { viewport } = parameters;
|
|
|
|
if (!(viewport instanceof PageViewport)) {
|
|
|
|
viewport = new PageViewport(viewport);
|
|
|
|
}
|
|
|
|
const coeffs = viewport.transform.join(",");
|
2021-03-25 21:02:39 +09:00
|
|
|
rootDiv.style.transform = `matrix(${coeffs})`;
|
|
|
|
|
|
|
|
// Set defaults.
|
|
|
|
rootDiv.setAttribute("class", "xfaLayer xfaFont");
|
2021-03-19 18:11:40 +09:00
|
|
|
|
|
|
|
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") {
|
|
|
|
html.appendChild(document.createTextNode(child.value));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-06-05 03:10:35 +09:00
|
|
|
let childHtml;
|
|
|
|
if (child?.attributes?.xmlns) {
|
|
|
|
childHtml = document.createElementNS(child.attributes.xmlns, name);
|
|
|
|
} else {
|
|
|
|
childHtml = document.createElement(name);
|
|
|
|
}
|
|
|
|
|
2021-03-19 18:11:40 +09:00
|
|
|
html.appendChild(childHtml);
|
|
|
|
if (child.attributes) {
|
2021-05-28 00:44:55 +09:00
|
|
|
this.setAttributes(childHtml, child, storage, intent);
|
2021-03-19 18:11:40 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
if (child.children && child.children.length > 0) {
|
|
|
|
stack.push([child, -1, childHtml]);
|
|
|
|
} else if (child.value) {
|
|
|
|
childHtml.appendChild(document.createTextNode(child.value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the xfa layer.
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @param {XfaLayerParameters} parameters
|
|
|
|
* @memberof XfaLayer
|
|
|
|
*/
|
|
|
|
static update(parameters) {
|
|
|
|
const transform = `matrix(${parameters.viewport.transform.join(",")})`;
|
|
|
|
parameters.div.style.transform = transform;
|
|
|
|
parameters.div.hidden = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export { XfaLayer };
|