- I thought it was possible to rely on browser layout engine to handle layout stuff but it isn't possible - mainly because when a contentArea overflows, we must continue to layout in the next contentArea - when no more contentArea is available then we must go to the next page... - we must handle breakBefore and breakAfter which allows to "break" the layout to go to the next container - Sometimes some containers don't provide their dimensions so we must compute them in order to know where to put them in their parents but to compute those dimensions we need to layout the container itself... - See top of file layout.js for more explanations about layout. - fix few bugs in other places I met during my work on layout.
586 lines
14 KiB
JavaScript
586 lines
14 KiB
JavaScript
/* 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.
|
|
*/
|
|
|
|
import {
|
|
$extra,
|
|
$getParent,
|
|
$nodeName,
|
|
$toStyle,
|
|
XFAObject,
|
|
} from "./xfa_object.js";
|
|
import { getMeasurement } from "./utils.js";
|
|
import { warn } from "../../shared/util.js";
|
|
|
|
const wordNonWordRegex = new RegExp(
|
|
"([\\p{N}\\p{L}\\p{M}]+)|([^\\p{N}\\p{L}\\p{M}]+)",
|
|
"gu"
|
|
);
|
|
const wordFirstRegex = new RegExp("^[\\p{N}\\p{L}\\p{M}]", "u");
|
|
|
|
function measureToString(m) {
|
|
if (typeof m === "string") {
|
|
return "0px";
|
|
}
|
|
|
|
return Number.isInteger(m) ? `${m}px` : `${m.toFixed(2)}px`;
|
|
}
|
|
|
|
const converters = {
|
|
anchorType(node, style) {
|
|
const parent = node[$getParent]();
|
|
if (!parent || (parent.layout && parent.layout !== "position")) {
|
|
// anchorType is only used in a positioned layout.
|
|
return;
|
|
}
|
|
|
|
if (!("transform" in style)) {
|
|
style.transform = "";
|
|
}
|
|
switch (node.anchorType) {
|
|
case "bottomCenter":
|
|
style.transform += "translate(-50%, -100%)";
|
|
break;
|
|
case "bottomLeft":
|
|
style.transform += "translate(0,-100%)";
|
|
break;
|
|
case "bottomRight":
|
|
style.transform += "translate(-100%,-100%)";
|
|
break;
|
|
case "middleCenter":
|
|
style.transform += "translate(-50%,-50%)";
|
|
break;
|
|
case "middleLeft":
|
|
style.transform += "translate(0,-50%)";
|
|
break;
|
|
case "middleRight":
|
|
style.transform += "translate(-100%,-50%)";
|
|
break;
|
|
case "topCenter":
|
|
style.transform += "translate(-50%,0)";
|
|
break;
|
|
case "topRight":
|
|
style.transform += "translate(-100%,0)";
|
|
break;
|
|
}
|
|
},
|
|
dimensions(node, style) {
|
|
const parent = node[$getParent]();
|
|
let width = node.w;
|
|
const height = node.h;
|
|
if (parent.layout && parent.layout.includes("row")) {
|
|
const extra = parent[$extra];
|
|
const colSpan = node.colSpan;
|
|
let w;
|
|
if (colSpan === -1) {
|
|
w = extra.columnWidths
|
|
.slice(extra.currentColumn)
|
|
.reduce((a, x) => a + x, 0);
|
|
extra.currentColumn = 0;
|
|
} else {
|
|
w = extra.columnWidths
|
|
.slice(extra.currentColumn, extra.currentColumn + colSpan)
|
|
.reduce((a, x) => a + x, 0);
|
|
extra.currentColumn =
|
|
(extra.currentColumn + node.colSpan) % extra.columnWidths.length;
|
|
}
|
|
|
|
if (!isNaN(w)) {
|
|
width = node.w = w;
|
|
}
|
|
}
|
|
|
|
if (width !== "") {
|
|
style.width = measureToString(width);
|
|
} else {
|
|
style.width = "auto";
|
|
if (node.maxW > 0) {
|
|
style.maxWidth = measureToString(node.maxW);
|
|
}
|
|
if (parent.layout === "position") {
|
|
style.minWidth = measureToString(node.minW);
|
|
}
|
|
}
|
|
|
|
if (height !== "") {
|
|
style.height = measureToString(height);
|
|
} else {
|
|
style.height = "auto";
|
|
if (node.maxH > 0) {
|
|
style.maxHeight = measureToString(node.maxH);
|
|
}
|
|
if (parent.layout === "position") {
|
|
style.minHeight = measureToString(node.minH);
|
|
}
|
|
}
|
|
},
|
|
position(node, style) {
|
|
const parent = node[$getParent]();
|
|
if (parent && parent.layout && parent.layout !== "position") {
|
|
// IRL, we've some x/y in tb layout.
|
|
// Specs say x/y is only used in positioned layout.
|
|
return;
|
|
}
|
|
|
|
style.position = "absolute";
|
|
style.left = measureToString(node.x);
|
|
style.top = measureToString(node.y);
|
|
},
|
|
rotate(node, style) {
|
|
if (node.rotate) {
|
|
if (!("transform" in style)) {
|
|
style.transform = "";
|
|
}
|
|
style.transform += `rotate(-${node.rotate}deg)`;
|
|
style.transformOrigin = "top left";
|
|
}
|
|
},
|
|
presence(node, style) {
|
|
switch (node.presence) {
|
|
case "invisible":
|
|
style.visibility = "hidden";
|
|
break;
|
|
case "hidden":
|
|
case "inactive":
|
|
style.display = "none";
|
|
break;
|
|
}
|
|
},
|
|
hAlign(node, style) {
|
|
if (node[$nodeName] === "para") {
|
|
switch (node.hAlign) {
|
|
case "justifyAll":
|
|
style.textAlign = "justify-all";
|
|
break;
|
|
case "radix":
|
|
// TODO: implement this correctly !
|
|
style.textAlign = "left";
|
|
break;
|
|
default:
|
|
style.textAlign = node.hAlign;
|
|
}
|
|
} else {
|
|
switch (node.hAlign) {
|
|
case "right":
|
|
case "center":
|
|
style.justifyContent = node.hAlign;
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
borderMarginPadding(node, style) {
|
|
// Get border width in order to compute margin and padding.
|
|
const borderWidths = [0, 0, 0, 0];
|
|
const borderInsets = [0, 0, 0, 0];
|
|
const marginNode = node.margin
|
|
? [
|
|
node.margin.topInset,
|
|
node.margin.rightInset,
|
|
node.margin.bottomInset,
|
|
node.margin.leftInset,
|
|
]
|
|
: [0, 0, 0, 0];
|
|
|
|
let borderMargin;
|
|
if (node.border) {
|
|
Object.assign(style, node.border[$toStyle](borderWidths, borderInsets));
|
|
borderMargin = style.margin;
|
|
delete style.margin;
|
|
}
|
|
|
|
if (borderWidths.every(x => x === 0)) {
|
|
if (marginNode.every(x => x === 0)) {
|
|
return;
|
|
}
|
|
|
|
// No border: margin & padding are padding
|
|
Object.assign(style, node.margin[$toStyle]());
|
|
style.padding = style.margin;
|
|
delete style.margin;
|
|
delete style.outline;
|
|
delete style.outlineOffset;
|
|
return;
|
|
}
|
|
|
|
if (node.margin) {
|
|
Object.assign(style, node.margin[$toStyle]());
|
|
style.padding = style.margin;
|
|
delete style.margin;
|
|
}
|
|
|
|
if (!style.borderWidth) {
|
|
// We've an outline so no need to fake one.
|
|
return;
|
|
}
|
|
|
|
style.borderData = {
|
|
borderWidth: style.borderWidth,
|
|
borderColor: style.borderColor,
|
|
borderStyle: style.borderStyle,
|
|
margin: borderMargin,
|
|
};
|
|
|
|
delete style.borderWidth;
|
|
delete style.borderColor;
|
|
delete style.borderStyle;
|
|
},
|
|
};
|
|
|
|
function layoutText(text, fontSize, space) {
|
|
// Try to guess width and height for the given text in taking into
|
|
// account the space where the text should fit.
|
|
// The computed dimensions are just an overestimation.
|
|
// TODO: base this estimation on real metrics.
|
|
let width = 0;
|
|
let height = 0;
|
|
let totalWidth = 0;
|
|
const lineHeight = fontSize * 1.5;
|
|
const averageCharSize = fontSize * 0.4;
|
|
const maxCharOnLine = Math.floor(space.width / averageCharSize);
|
|
const chunks = text.match(wordNonWordRegex);
|
|
let treatedChars = 0;
|
|
|
|
let i = 0;
|
|
let chunk = chunks[0];
|
|
while (chunk) {
|
|
const w = chunk.length * averageCharSize;
|
|
if (width + w <= space.width) {
|
|
width += w;
|
|
treatedChars += chunk.length;
|
|
chunk = chunks[i++];
|
|
continue;
|
|
}
|
|
|
|
if (!wordFirstRegex.test(chunk) || chunk.length > maxCharOnLine) {
|
|
const numOfCharOnLine = Math.floor(
|
|
(space.width - width) / averageCharSize
|
|
);
|
|
chunk = chunk.slice(numOfCharOnLine);
|
|
treatedChars += numOfCharOnLine;
|
|
if (height + lineHeight > space.height) {
|
|
return { width: 0, height: 0, splitPos: treatedChars };
|
|
}
|
|
totalWidth = Math.max(width, totalWidth);
|
|
width = 0;
|
|
height += lineHeight;
|
|
continue;
|
|
}
|
|
|
|
if (height + lineHeight > space.height) {
|
|
return { width: 0, height: 0, splitPos: treatedChars };
|
|
}
|
|
|
|
totalWidth = Math.max(width, totalWidth);
|
|
width = w;
|
|
height += lineHeight;
|
|
chunk = chunks[i++];
|
|
}
|
|
|
|
if (totalWidth === 0) {
|
|
totalWidth = width;
|
|
}
|
|
|
|
if (totalWidth !== 0) {
|
|
height += lineHeight;
|
|
}
|
|
|
|
return { width: totalWidth, height, splitPos: -1 };
|
|
}
|
|
|
|
function computeBbox(node, html, availableSpace) {
|
|
let bbox;
|
|
if (node.w !== "" && node.h !== "") {
|
|
bbox = [node.x, node.y, node.w, node.h];
|
|
} else {
|
|
if (!availableSpace) {
|
|
return null;
|
|
}
|
|
let width = node.w;
|
|
if (width === "") {
|
|
if (node.maxW === 0) {
|
|
const parent = node[$getParent]();
|
|
if (parent.layout === "position" && parent.w !== "") {
|
|
width = 0;
|
|
} else {
|
|
width = node.minW;
|
|
}
|
|
} else {
|
|
width = Math.min(node.maxW, availableSpace.width);
|
|
}
|
|
html.attributes.style.width = measureToString(width);
|
|
}
|
|
|
|
let height = node.h;
|
|
if (height === "") {
|
|
if (node.maxH === 0) {
|
|
const parent = node[$getParent]();
|
|
if (parent.layout === "position" && parent.h !== "") {
|
|
height = 0;
|
|
} else {
|
|
height = node.minH;
|
|
}
|
|
} else {
|
|
height = Math.min(node.maxH, availableSpace.height);
|
|
}
|
|
html.attributes.style.height = measureToString(height);
|
|
}
|
|
|
|
bbox = [node.x, node.y, width, height];
|
|
}
|
|
return bbox;
|
|
}
|
|
|
|
function fixDimensions(node) {
|
|
const parent = node[$getParent]();
|
|
if (parent.layout && parent.layout.includes("row")) {
|
|
const extra = parent[$extra];
|
|
const colSpan = node.colSpan;
|
|
let width;
|
|
if (colSpan === -1) {
|
|
width = extra.columnWidths
|
|
.slice(extra.currentColumn)
|
|
.reduce((a, w) => a + w, 0);
|
|
} else {
|
|
width = extra.columnWidths
|
|
.slice(extra.currentColumn, extra.currentColumn + colSpan)
|
|
.reduce((a, w) => a + w, 0);
|
|
}
|
|
if (!isNaN(width)) {
|
|
node.w = width;
|
|
}
|
|
}
|
|
|
|
if (parent.w && node.w) {
|
|
node.w = Math.min(parent.w, node.w);
|
|
}
|
|
|
|
if (parent.h && node.h) {
|
|
node.h = Math.min(parent.h, node.h);
|
|
}
|
|
|
|
if (parent.layout && parent.layout !== "position") {
|
|
// Useless in this context.
|
|
node.x = node.y = 0;
|
|
if (parent.layout === "tb") {
|
|
if (
|
|
parent.w !== "" &&
|
|
(node.w === "" || node.w === 0 || node.w > parent.w)
|
|
) {
|
|
node.w = parent.w;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (node.layout === "position") {
|
|
// Acrobat doesn't take into account min, max values
|
|
// for containers with positioned layout (which makes sense).
|
|
node.minW = node.minH = 0;
|
|
node.maxW = node.maxH = Infinity;
|
|
} else {
|
|
if (node.layout === "table") {
|
|
if (node.w === "" && Array.isArray(node.columnWidths)) {
|
|
node.w = node.columnWidths.reduce((a, x) => a + x, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function layoutClass(node) {
|
|
switch (node.layout) {
|
|
case "position":
|
|
return "xfaPosition";
|
|
case "lr-tb":
|
|
return "xfaLrTb";
|
|
case "rl-row":
|
|
return "xfaRlRow";
|
|
case "rl-tb":
|
|
return "xfaRlTb";
|
|
case "row":
|
|
return "xfaRow";
|
|
case "table":
|
|
return "xfaTable";
|
|
case "tb":
|
|
return "xfaTb";
|
|
default:
|
|
return "xfaPosition";
|
|
}
|
|
}
|
|
|
|
function toStyle(node, ...names) {
|
|
const style = Object.create(null);
|
|
for (const name of names) {
|
|
const value = node[name];
|
|
if (value === null) {
|
|
continue;
|
|
}
|
|
if (value instanceof XFAObject) {
|
|
const newStyle = value[$toStyle]();
|
|
if (newStyle) {
|
|
Object.assign(style, newStyle);
|
|
} else {
|
|
warn(`(DEBUG) - XFA - style for ${name} not implemented yet`);
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (converters.hasOwnProperty(name)) {
|
|
converters[name](node, style);
|
|
}
|
|
}
|
|
return style;
|
|
}
|
|
|
|
function addExtraDivForBorder(html) {
|
|
const style = html.attributes.style;
|
|
const data = style.borderData;
|
|
const children = [];
|
|
|
|
const attributes = {
|
|
class: "xfaWrapper",
|
|
style: Object.create(null),
|
|
};
|
|
|
|
for (const key of ["top", "left"]) {
|
|
if (style[key] !== undefined) {
|
|
attributes.style[key] = style[key];
|
|
}
|
|
}
|
|
|
|
delete style.top;
|
|
delete style.left;
|
|
|
|
if (style.position === "absolute") {
|
|
attributes.style.position = "absolute";
|
|
} else {
|
|
attributes.style.position = "relative";
|
|
}
|
|
delete style.position;
|
|
|
|
if (style.justifyContent) {
|
|
attributes.style.justifyContent = style.justifyContent;
|
|
delete style.justifyContent;
|
|
}
|
|
|
|
if (data) {
|
|
delete style.borderData;
|
|
|
|
let insets;
|
|
if (data.margin) {
|
|
insets = data.margin.split(" ");
|
|
delete data.margin;
|
|
} else {
|
|
insets = ["0px", "0px", "0px", "0px"];
|
|
}
|
|
|
|
let width = "100%";
|
|
let height = width;
|
|
|
|
if (insets[1] !== "0px" || insets[3] !== "0px") {
|
|
width = `calc(100% - ${parseInt(insets[1]) + parseInt(insets[3])}px`;
|
|
}
|
|
|
|
if (insets[0] !== "0px" || insets[2] !== "0px") {
|
|
height = `calc(100% - ${parseInt(insets[0]) + parseInt(insets[2])}px`;
|
|
}
|
|
|
|
const borderStyle = {
|
|
top: insets[0],
|
|
left: insets[3],
|
|
width,
|
|
height,
|
|
};
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
borderStyle[k] = v;
|
|
}
|
|
|
|
if (style.transform) {
|
|
borderStyle.transform = style.transform;
|
|
}
|
|
|
|
const borderDiv = {
|
|
name: "div",
|
|
attributes: {
|
|
class: "xfaBorderDiv",
|
|
style: borderStyle,
|
|
},
|
|
};
|
|
|
|
children.push(borderDiv);
|
|
}
|
|
|
|
children.push(html);
|
|
|
|
return {
|
|
name: "div",
|
|
attributes,
|
|
children,
|
|
};
|
|
}
|
|
|
|
function fixTextIndent(styles) {
|
|
const indent = getMeasurement(styles.textIndent, "0px");
|
|
if (indent >= 0) {
|
|
return;
|
|
}
|
|
|
|
const align = styles.textAlign || "left";
|
|
if (align === "left" || align === "right") {
|
|
const name = "margin" + (align === "left" ? "Left" : "Right");
|
|
const margin = getMeasurement(styles[name], "0px");
|
|
styles[name] = `${margin - indent}pt`;
|
|
}
|
|
}
|
|
|
|
function getFonts(family) {
|
|
if (family.startsWith("'")) {
|
|
family = `"${family.slice(1, family.length - 1)}"`;
|
|
} else if (family.includes(" ") && !family.startsWith('"')) {
|
|
family = `"${family}"`;
|
|
}
|
|
|
|
// TODO in case Myriad is not available we should generate a new
|
|
// font based on helvetica but where glyphs have been rescaled in order
|
|
// to have the exact same metrics.
|
|
const fonts = [family];
|
|
switch (family) {
|
|
case `"Myriad Pro"`:
|
|
fonts.push(
|
|
`"Roboto Condensed"`,
|
|
`"Ubuntu Condensed"`,
|
|
`"Microsoft Sans Serif"`,
|
|
`"Apple Symbols"`,
|
|
"Helvetica",
|
|
`"sans serif"`
|
|
);
|
|
break;
|
|
case "Arial":
|
|
fonts.push("Helvetica", `"Liberation Sans"`, "Arimo", `"sans serif"`);
|
|
break;
|
|
}
|
|
return fonts.join(",");
|
|
}
|
|
|
|
export {
|
|
addExtraDivForBorder,
|
|
computeBbox,
|
|
fixDimensions,
|
|
fixTextIndent,
|
|
getFonts,
|
|
layoutClass,
|
|
layoutText,
|
|
measureToString,
|
|
toStyle,
|
|
};
|