@pdfme/schemas 3.4.3 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/__tests__/text.test.js +5 -4
- package/dist/cjs/__tests__/text.test.js.map +1 -1
- package/dist/cjs/__tests__/utils.test.js +3 -0
- package/dist/cjs/__tests__/utils.test.js.map +1 -1
- package/dist/cjs/src/barcodes/propPanel.js +23 -11
- package/dist/cjs/src/barcodes/propPanel.js.map +1 -1
- package/dist/cjs/src/barcodes/uiRender.js +1 -1
- package/dist/cjs/src/barcodes/uiRender.js.map +1 -1
- package/dist/cjs/src/graphics/image.js +8 -11
- package/dist/cjs/src/graphics/image.js.map +1 -1
- package/dist/cjs/src/graphics/svg.js +4 -3
- package/dist/cjs/src/graphics/svg.js.map +1 -1
- package/dist/cjs/src/index.js +7 -1
- package/dist/cjs/src/index.js.map +1 -1
- package/dist/cjs/src/shapes/line.js +5 -8
- package/dist/cjs/src/shapes/line.js.map +1 -1
- package/dist/cjs/src/shapes/rectAndEllipse.js +12 -5
- package/dist/cjs/src/shapes/rectAndEllipse.js.map +1 -1
- package/dist/cjs/src/tables/cell.js +125 -0
- package/dist/cjs/src/tables/cell.js.map +1 -0
- package/dist/cjs/src/tables/classes.js +467 -0
- package/dist/cjs/src/tables/classes.js.map +1 -0
- package/dist/cjs/src/tables/dynamicTemplate.js +71 -0
- package/dist/cjs/src/tables/dynamicTemplate.js.map +1 -0
- package/dist/cjs/src/tables/helper.js +171 -0
- package/dist/cjs/src/tables/helper.js.map +1 -0
- package/dist/cjs/src/tables/index.js +12 -0
- package/dist/cjs/src/tables/index.js.map +1 -0
- package/dist/cjs/src/tables/pdfRender.js +93 -0
- package/dist/cjs/src/tables/pdfRender.js.map +1 -0
- package/dist/cjs/src/tables/propPanel.js +88 -0
- package/dist/cjs/src/tables/propPanel.js.map +1 -0
- package/dist/cjs/src/tables/tableHelper.js +231 -0
- package/dist/cjs/src/tables/tableHelper.js.map +1 -0
- package/dist/cjs/src/tables/types.js +3 -0
- package/dist/cjs/src/tables/types.js.map +1 -0
- package/dist/cjs/src/tables/uiRender.js +342 -0
- package/dist/cjs/src/tables/uiRender.js.map +1 -0
- package/dist/cjs/src/text/helper.js +21 -6
- package/dist/cjs/src/text/helper.js.map +1 -1
- package/dist/cjs/src/text/index.js +1 -1
- package/dist/cjs/src/text/index.js.map +1 -1
- package/dist/cjs/src/text/pdfRender.js +6 -9
- package/dist/cjs/src/text/pdfRender.js.map +1 -1
- package/dist/cjs/src/text/propPanel.js +7 -4
- package/dist/cjs/src/text/propPanel.js.map +1 -1
- package/dist/cjs/src/text/uiRender.js +18 -17
- package/dist/cjs/src/text/uiRender.js.map +1 -1
- package/dist/cjs/src/utils.js +3 -1
- package/dist/cjs/src/utils.js.map +1 -1
- package/dist/esm/__tests__/text.test.js +5 -4
- package/dist/esm/__tests__/text.test.js.map +1 -1
- package/dist/esm/__tests__/utils.test.js +3 -0
- package/dist/esm/__tests__/utils.test.js.map +1 -1
- package/dist/esm/src/barcodes/propPanel.js +23 -11
- package/dist/esm/src/barcodes/propPanel.js.map +1 -1
- package/dist/esm/src/barcodes/uiRender.js +1 -1
- package/dist/esm/src/barcodes/uiRender.js.map +1 -1
- package/dist/esm/src/graphics/image.js +6 -9
- package/dist/esm/src/graphics/image.js.map +1 -1
- package/dist/esm/src/graphics/svg.js +4 -3
- package/dist/esm/src/graphics/svg.js.map +1 -1
- package/dist/esm/src/index.js +4 -1
- package/dist/esm/src/index.js.map +1 -1
- package/dist/esm/src/shapes/line.js +5 -8
- package/dist/esm/src/shapes/line.js.map +1 -1
- package/dist/esm/src/shapes/rectAndEllipse.js +12 -5
- package/dist/esm/src/shapes/rectAndEllipse.js.map +1 -1
- package/dist/esm/src/tables/cell.js +120 -0
- package/dist/esm/src/tables/cell.js.map +1 -0
- package/dist/esm/src/tables/classes.js +460 -0
- package/dist/esm/src/tables/classes.js.map +1 -0
- package/dist/esm/src/tables/dynamicTemplate.js +66 -0
- package/dist/esm/src/tables/dynamicTemplate.js.map +1 -0
- package/dist/esm/src/tables/helper.js +163 -0
- package/dist/esm/src/tables/helper.js.map +1 -0
- package/dist/esm/src/tables/index.js +10 -0
- package/dist/esm/src/tables/index.js.map +1 -0
- package/dist/esm/src/tables/pdfRender.js +86 -0
- package/dist/esm/src/tables/pdfRender.js.map +1 -0
- package/dist/esm/src/tables/propPanel.js +85 -0
- package/dist/esm/src/tables/propPanel.js.map +1 -0
- package/dist/esm/src/tables/tableHelper.js +226 -0
- package/dist/esm/src/tables/tableHelper.js.map +1 -0
- package/dist/esm/src/tables/types.js +2 -0
- package/dist/esm/src/tables/types.js.map +1 -0
- package/dist/esm/src/tables/uiRender.js +335 -0
- package/dist/esm/src/tables/uiRender.js.map +1 -0
- package/dist/esm/src/text/helper.js +19 -5
- package/dist/esm/src/text/helper.js.map +1 -1
- package/dist/esm/src/text/index.js +1 -1
- package/dist/esm/src/text/index.js.map +1 -1
- package/dist/esm/src/text/pdfRender.js +7 -10
- package/dist/esm/src/text/pdfRender.js.map +1 -1
- package/dist/esm/src/text/propPanel.js +7 -4
- package/dist/esm/src/text/propPanel.js.map +1 -1
- package/dist/esm/src/text/uiRender.js +19 -18
- package/dist/esm/src/text/uiRender.js.map +1 -1
- package/dist/esm/src/utils.js +1 -0
- package/dist/esm/src/utils.js.map +1 -1
- package/dist/types/src/index.d.ts +3 -1
- package/dist/types/src/shapes/rectAndEllipse.d.ts +19 -27
- package/dist/types/src/tables/cell.d.ts +4 -0
- package/dist/types/src/tables/classes.d.ts +68 -0
- package/dist/types/src/tables/dynamicTemplate.d.ts +13 -0
- package/dist/types/src/tables/helper.d.ts +252 -0
- package/dist/types/src/tables/index.d.ts +4 -0
- package/dist/types/src/tables/pdfRender.d.ts +3 -0
- package/dist/types/src/tables/propPanel.d.ts +3 -0
- package/dist/types/src/tables/tableHelper.d.ts +11 -0
- package/dist/types/src/tables/types.d.ts +91 -0
- package/dist/types/src/tables/uiRender.d.ts +3 -0
- package/dist/types/src/text/helper.d.ts +8 -1
- package/dist/types/src/utils.d.ts +1 -0
- package/package.json +1 -1
- package/src/barcodes/propPanel.ts +26 -12
- package/src/barcodes/uiRender.ts +1 -1
- package/src/graphics/image.ts +8 -11
- package/src/graphics/svg.ts +4 -3
- package/src/index.ts +7 -0
- package/src/shapes/line.ts +4 -8
- package/src/shapes/rectAndEllipse.ts +16 -7
- package/src/tables/cell.ts +157 -0
- package/src/tables/classes.ts +398 -0
- package/src/tables/dynamicTemplate.ts +81 -0
- package/src/tables/helper.ts +198 -0
- package/src/tables/index.ts +12 -0
- package/src/tables/pdfRender.ts +113 -0
- package/src/tables/propPanel.ts +91 -0
- package/src/tables/tableHelper.ts +322 -0
- package/src/tables/types.ts +88 -0
- package/src/tables/uiRender.ts +393 -0
- package/src/text/helper.ts +29 -6
- package/src/text/index.ts +1 -1
- package/src/text/pdfRender.ts +9 -13
- package/src/text/propPanel.ts +7 -4
- package/src/text/uiRender.ts +18 -18
- package/src/utils.ts +1 -0
@@ -22,6 +22,8 @@ const shape = {
|
|
22
22
|
},
|
23
23
|
pdf: (arg) => {
|
24
24
|
const { schema, page, options } = arg;
|
25
|
+
if (!schema.color && !schema.borderColor)
|
26
|
+
return;
|
25
27
|
const { colorType } = options;
|
26
28
|
const pageHeight = page.getHeight();
|
27
29
|
const cArg = { schema, pageHeight };
|
@@ -61,7 +63,7 @@ const shape = {
|
|
61
63
|
title: i18n('schemas.borderWidth'),
|
62
64
|
type: 'number',
|
63
65
|
widget: 'inputNumber',
|
64
|
-
min: 0,
|
66
|
+
props: { min: 0 },
|
65
67
|
step: 1,
|
66
68
|
},
|
67
69
|
borderColor: {
|
@@ -77,7 +79,6 @@ const shape = {
|
|
77
79
|
rules: [{ pattern: constants_js_1.HEX_COLOR_PATTERN, message: i18n('hexColorPrompt') }],
|
78
80
|
},
|
79
81
|
}),
|
80
|
-
defaultValue: '',
|
81
82
|
defaultSchema: {
|
82
83
|
type: 'rectangle',
|
83
84
|
position: { x: 0, y: 0 },
|
@@ -85,16 +86,22 @@ const shape = {
|
|
85
86
|
height: 37.5,
|
86
87
|
rotate: 0,
|
87
88
|
opacity: 1,
|
88
|
-
borderWidth:
|
89
|
+
borderWidth: 1,
|
89
90
|
borderColor: '#000000',
|
90
|
-
color: '
|
91
|
+
color: '',
|
91
92
|
readOnly: true,
|
92
93
|
},
|
93
94
|
},
|
94
95
|
};
|
96
|
+
const rectangleIcon = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-square"><rect width="18" height="18" x="3" y="3" rx="2"/></svg>';
|
97
|
+
const ellipseIcon = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle"><circle cx="12" cy="12" r="10"/></svg>';
|
95
98
|
const getPropPanelSchema = (type) => ({
|
96
99
|
...shape.propPanel,
|
97
|
-
defaultSchema: {
|
100
|
+
defaultSchema: {
|
101
|
+
...shape.propPanel.defaultSchema,
|
102
|
+
type,
|
103
|
+
icon: type === 'rectangle' ? rectangleIcon : ellipseIcon,
|
104
|
+
},
|
98
105
|
});
|
99
106
|
exports.rectangle = { ...shape, propPanel: getPropPanelSchema('rectangle') };
|
100
107
|
exports.ellipse = { ...shape, propPanel: getPropPanelSchema('ellipse') };
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"rectAndEllipse.js","sourceRoot":"","sources":["../../../../src/shapes/rectAndEllipse.ts"],"names":[],"mappings":";;;AAAA,0CAAsD;AACtD,kDAAoD;AACpD,0CAA0E;AAS1E,MAAM,KAAK,
|
1
|
+
{"version":3,"file":"rectAndEllipse.js","sourceRoot":"","sources":["../../../../src/shapes/rectAndEllipse.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,125 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
const common_1 = require("@pdfme/common");
|
7
|
+
const uiRender_js_1 = require("../text/uiRender.js");
|
8
|
+
const pdfRender_js_1 = require("../text/pdfRender.js");
|
9
|
+
const line_js_1 = __importDefault(require("../shapes/line.js"));
|
10
|
+
const rectAndEllipse_js_1 = require("../shapes/rectAndEllipse.js");
|
11
|
+
const helper_js_1 = require("./helper.js");
|
12
|
+
const linePdfRender = line_js_1.default.pdf;
|
13
|
+
const rectanglePdfRender = rectAndEllipse_js_1.rectangle.pdf;
|
14
|
+
const renderLine = async (arg, schema, position, width, height) => linePdfRender({
|
15
|
+
...arg,
|
16
|
+
schema: { ...schema, type: 'line', position, width, height, color: schema.borderColor },
|
17
|
+
});
|
18
|
+
const createTextDiv = (schema) => {
|
19
|
+
const { borderWidth: bw, width, height, padding: pd } = schema;
|
20
|
+
const textDiv = document.createElement('div');
|
21
|
+
textDiv.style.position = 'absolute';
|
22
|
+
textDiv.style.zIndex = '1';
|
23
|
+
textDiv.style.width = `${width - bw.left - bw.right - pd.left - pd.right}mm`;
|
24
|
+
textDiv.style.height = `${height - bw.top - bw.bottom - pd.top - pd.bottom}mm`;
|
25
|
+
textDiv.style.top = `${bw.top + pd.top}mm`;
|
26
|
+
textDiv.style.left = `${bw.left + pd.left}mm`;
|
27
|
+
return textDiv;
|
28
|
+
};
|
29
|
+
const createLineDiv = (width, height, top, right, bottom, left, borderColor) => {
|
30
|
+
const div = document.createElement('div');
|
31
|
+
div.style.width = width;
|
32
|
+
div.style.height = height;
|
33
|
+
div.style.position = 'absolute';
|
34
|
+
if (top !== null)
|
35
|
+
div.style.top = top;
|
36
|
+
if (right !== null)
|
37
|
+
div.style.right = right;
|
38
|
+
if (bottom !== null)
|
39
|
+
div.style.bottom = bottom;
|
40
|
+
if (left !== null)
|
41
|
+
div.style.left = left;
|
42
|
+
div.style.backgroundColor = borderColor;
|
43
|
+
return div;
|
44
|
+
};
|
45
|
+
const cellSchema = {
|
46
|
+
pdf: async (arg) => {
|
47
|
+
const { schema } = arg;
|
48
|
+
const { position, width, height, borderWidth, padding } = schema;
|
49
|
+
await Promise.all([
|
50
|
+
// BACKGROUND
|
51
|
+
rectanglePdfRender({
|
52
|
+
...arg,
|
53
|
+
schema: {
|
54
|
+
...schema,
|
55
|
+
type: 'rectangle',
|
56
|
+
width: schema.width,
|
57
|
+
height: schema.height,
|
58
|
+
borderWidth: 0,
|
59
|
+
borderColor: '',
|
60
|
+
color: schema.backgroundColor,
|
61
|
+
},
|
62
|
+
}),
|
63
|
+
// TOP
|
64
|
+
renderLine(arg, schema, { x: position.x, y: position.y }, width, borderWidth.top),
|
65
|
+
// RIGHT
|
66
|
+
renderLine(arg, schema, { x: position.x + width - borderWidth.right, y: position.y }, borderWidth.right, height),
|
67
|
+
// BOTTOM
|
68
|
+
renderLine(arg, schema, { x: position.x, y: position.y + height - borderWidth.bottom }, width, borderWidth.bottom),
|
69
|
+
// LEFT
|
70
|
+
renderLine(arg, schema, { x: position.x, y: position.y }, borderWidth.left, height),
|
71
|
+
]);
|
72
|
+
// TEXT
|
73
|
+
await (0, pdfRender_js_1.pdfRender)({
|
74
|
+
...arg,
|
75
|
+
schema: {
|
76
|
+
...schema,
|
77
|
+
type: 'text',
|
78
|
+
backgroundColor: '',
|
79
|
+
position: {
|
80
|
+
x: position.x + borderWidth.left + padding.left,
|
81
|
+
y: position.y + borderWidth.top + padding.top,
|
82
|
+
},
|
83
|
+
width: width - borderWidth.left - borderWidth.right - padding.left - padding.right,
|
84
|
+
height: height - borderWidth.top - borderWidth.bottom - padding.top - padding.bottom,
|
85
|
+
},
|
86
|
+
});
|
87
|
+
},
|
88
|
+
ui: async (arg) => {
|
89
|
+
const { schema, rootElement } = arg;
|
90
|
+
const { borderWidth, width, height, borderColor, backgroundColor } = schema;
|
91
|
+
rootElement.style.backgroundColor = backgroundColor;
|
92
|
+
const textDiv = createTextDiv(schema);
|
93
|
+
await (0, uiRender_js_1.uiRender)({
|
94
|
+
...arg,
|
95
|
+
schema: { ...schema, backgroundColor: '' },
|
96
|
+
rootElement: textDiv,
|
97
|
+
});
|
98
|
+
rootElement.appendChild(textDiv);
|
99
|
+
const lines = [
|
100
|
+
createLineDiv(`${width}mm`, `${borderWidth.top}mm`, '0mm', null, null, '0mm', borderColor),
|
101
|
+
createLineDiv(`${width}mm`, `${borderWidth.bottom}mm`, null, null, '0mm', '0mm', borderColor),
|
102
|
+
createLineDiv(`${borderWidth.left}mm`, `${height}mm`, '0mm', null, null, '0mm', borderColor),
|
103
|
+
createLineDiv(`${borderWidth.right}mm`, `${height}mm`, '0mm', '0mm', null, null, borderColor),
|
104
|
+
];
|
105
|
+
lines.forEach((line) => rootElement.appendChild(line));
|
106
|
+
},
|
107
|
+
propPanel: {
|
108
|
+
schema: ({ options, i18n }) => {
|
109
|
+
const font = options.font || { [common_1.DEFAULT_FONT_NAME]: { data: '', fallback: true } };
|
110
|
+
const fontNames = Object.keys(font);
|
111
|
+
const fallbackFontName = (0, common_1.getFallbackFontName)(font);
|
112
|
+
return (0, helper_js_1.getCellPropPanelSchema)({ i18n, fontNames, fallbackFontName });
|
113
|
+
},
|
114
|
+
defaultSchema: {
|
115
|
+
type: 'cell',
|
116
|
+
content: 'Type Something...',
|
117
|
+
position: { x: 0, y: 0 },
|
118
|
+
width: 50,
|
119
|
+
height: 15,
|
120
|
+
...(0, helper_js_1.getDefaultCellStyles)(),
|
121
|
+
},
|
122
|
+
},
|
123
|
+
};
|
124
|
+
exports.default = cellSchema;
|
125
|
+
//# sourceMappingURL=cell.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"cell.js","sourceRoot":"","sources":["../../../../src/tables/cell.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,467 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.Table = exports.Row = exports.Column = exports.Cell = void 0;
|
4
|
+
const common_1 = require("@pdfme/common");
|
5
|
+
const helper_1 = require("../text/helper");
|
6
|
+
class Cell {
|
7
|
+
constructor(raw, styles, section) {
|
8
|
+
Object.defineProperty(this, "raw", {
|
9
|
+
enumerable: true,
|
10
|
+
configurable: true,
|
11
|
+
writable: true,
|
12
|
+
value: void 0
|
13
|
+
});
|
14
|
+
Object.defineProperty(this, "text", {
|
15
|
+
enumerable: true,
|
16
|
+
configurable: true,
|
17
|
+
writable: true,
|
18
|
+
value: void 0
|
19
|
+
});
|
20
|
+
Object.defineProperty(this, "styles", {
|
21
|
+
enumerable: true,
|
22
|
+
configurable: true,
|
23
|
+
writable: true,
|
24
|
+
value: void 0
|
25
|
+
});
|
26
|
+
Object.defineProperty(this, "section", {
|
27
|
+
enumerable: true,
|
28
|
+
configurable: true,
|
29
|
+
writable: true,
|
30
|
+
value: void 0
|
31
|
+
});
|
32
|
+
Object.defineProperty(this, "contentHeight", {
|
33
|
+
enumerable: true,
|
34
|
+
configurable: true,
|
35
|
+
writable: true,
|
36
|
+
value: 0
|
37
|
+
});
|
38
|
+
Object.defineProperty(this, "contentWidth", {
|
39
|
+
enumerable: true,
|
40
|
+
configurable: true,
|
41
|
+
writable: true,
|
42
|
+
value: 0
|
43
|
+
});
|
44
|
+
Object.defineProperty(this, "wrappedWidth", {
|
45
|
+
enumerable: true,
|
46
|
+
configurable: true,
|
47
|
+
writable: true,
|
48
|
+
value: 0
|
49
|
+
});
|
50
|
+
Object.defineProperty(this, "minReadableWidth", {
|
51
|
+
enumerable: true,
|
52
|
+
configurable: true,
|
53
|
+
writable: true,
|
54
|
+
value: 0
|
55
|
+
});
|
56
|
+
Object.defineProperty(this, "minWidth", {
|
57
|
+
enumerable: true,
|
58
|
+
configurable: true,
|
59
|
+
writable: true,
|
60
|
+
value: 0
|
61
|
+
});
|
62
|
+
Object.defineProperty(this, "width", {
|
63
|
+
enumerable: true,
|
64
|
+
configurable: true,
|
65
|
+
writable: true,
|
66
|
+
value: 0
|
67
|
+
});
|
68
|
+
Object.defineProperty(this, "height", {
|
69
|
+
enumerable: true,
|
70
|
+
configurable: true,
|
71
|
+
writable: true,
|
72
|
+
value: 0
|
73
|
+
});
|
74
|
+
Object.defineProperty(this, "x", {
|
75
|
+
enumerable: true,
|
76
|
+
configurable: true,
|
77
|
+
writable: true,
|
78
|
+
value: 0
|
79
|
+
});
|
80
|
+
Object.defineProperty(this, "y", {
|
81
|
+
enumerable: true,
|
82
|
+
configurable: true,
|
83
|
+
writable: true,
|
84
|
+
value: 0
|
85
|
+
});
|
86
|
+
this.styles = styles;
|
87
|
+
this.section = section;
|
88
|
+
this.raw = raw;
|
89
|
+
const splitRegex = /\r\n|\r|\n/g;
|
90
|
+
this.text = raw.split(splitRegex);
|
91
|
+
}
|
92
|
+
getContentHeight() {
|
93
|
+
const lineCount = Array.isArray(this.text) ? this.text.length : 1;
|
94
|
+
const lineHeight = (0, common_1.pt2mm)(this.styles.fontSize) * this.styles.lineHeight;
|
95
|
+
const vPadding = this.padding('top') + this.padding('bottom');
|
96
|
+
const height = lineCount * lineHeight + vPadding;
|
97
|
+
return Math.max(height, this.styles.minCellHeight);
|
98
|
+
}
|
99
|
+
padding(name) {
|
100
|
+
return this.styles.cellPadding[name];
|
101
|
+
}
|
102
|
+
}
|
103
|
+
exports.Cell = Cell;
|
104
|
+
class Column {
|
105
|
+
constructor(index) {
|
106
|
+
Object.defineProperty(this, "index", {
|
107
|
+
enumerable: true,
|
108
|
+
configurable: true,
|
109
|
+
writable: true,
|
110
|
+
value: void 0
|
111
|
+
});
|
112
|
+
Object.defineProperty(this, "wrappedWidth", {
|
113
|
+
enumerable: true,
|
114
|
+
configurable: true,
|
115
|
+
writable: true,
|
116
|
+
value: 0
|
117
|
+
});
|
118
|
+
Object.defineProperty(this, "minReadableWidth", {
|
119
|
+
enumerable: true,
|
120
|
+
configurable: true,
|
121
|
+
writable: true,
|
122
|
+
value: 0
|
123
|
+
});
|
124
|
+
Object.defineProperty(this, "minWidth", {
|
125
|
+
enumerable: true,
|
126
|
+
configurable: true,
|
127
|
+
writable: true,
|
128
|
+
value: 0
|
129
|
+
});
|
130
|
+
Object.defineProperty(this, "width", {
|
131
|
+
enumerable: true,
|
132
|
+
configurable: true,
|
133
|
+
writable: true,
|
134
|
+
value: 0
|
135
|
+
});
|
136
|
+
this.index = index;
|
137
|
+
}
|
138
|
+
getMaxCustomCellWidth(table) {
|
139
|
+
let max = 0;
|
140
|
+
for (const row of table.allRows()) {
|
141
|
+
const cell = row.cells[this.index];
|
142
|
+
max = Math.max(max, cell.styles.cellWidth);
|
143
|
+
}
|
144
|
+
return max;
|
145
|
+
}
|
146
|
+
}
|
147
|
+
exports.Column = Column;
|
148
|
+
class Row {
|
149
|
+
constructor(raw, index, section, cells) {
|
150
|
+
Object.defineProperty(this, "raw", {
|
151
|
+
enumerable: true,
|
152
|
+
configurable: true,
|
153
|
+
writable: true,
|
154
|
+
value: void 0
|
155
|
+
});
|
156
|
+
Object.defineProperty(this, "index", {
|
157
|
+
enumerable: true,
|
158
|
+
configurable: true,
|
159
|
+
writable: true,
|
160
|
+
value: void 0
|
161
|
+
});
|
162
|
+
Object.defineProperty(this, "section", {
|
163
|
+
enumerable: true,
|
164
|
+
configurable: true,
|
165
|
+
writable: true,
|
166
|
+
value: void 0
|
167
|
+
});
|
168
|
+
Object.defineProperty(this, "cells", {
|
169
|
+
enumerable: true,
|
170
|
+
configurable: true,
|
171
|
+
writable: true,
|
172
|
+
value: void 0
|
173
|
+
});
|
174
|
+
Object.defineProperty(this, "height", {
|
175
|
+
enumerable: true,
|
176
|
+
configurable: true,
|
177
|
+
writable: true,
|
178
|
+
value: 0
|
179
|
+
});
|
180
|
+
this.raw = raw;
|
181
|
+
this.index = index;
|
182
|
+
this.section = section;
|
183
|
+
this.cells = cells;
|
184
|
+
}
|
185
|
+
getMaxCellHeight(columns) {
|
186
|
+
return columns.reduce((acc, column) => Math.max(acc, this.cells[column.index]?.height || 0), 0);
|
187
|
+
}
|
188
|
+
getMinimumRowHeight(columns) {
|
189
|
+
return columns.reduce((acc, column) => {
|
190
|
+
const cell = this.cells[column.index];
|
191
|
+
if (!cell)
|
192
|
+
return 0;
|
193
|
+
const vPadding = cell.padding('top') + cell.padding('bottom');
|
194
|
+
const oneRowHeight = vPadding + cell.styles.lineHeight;
|
195
|
+
return oneRowHeight > acc ? oneRowHeight : acc;
|
196
|
+
}, 0);
|
197
|
+
}
|
198
|
+
}
|
199
|
+
exports.Row = Row;
|
200
|
+
class Table {
|
201
|
+
constructor(input, content) {
|
202
|
+
Object.defineProperty(this, "settings", {
|
203
|
+
enumerable: true,
|
204
|
+
configurable: true,
|
205
|
+
writable: true,
|
206
|
+
value: void 0
|
207
|
+
});
|
208
|
+
Object.defineProperty(this, "styles", {
|
209
|
+
enumerable: true,
|
210
|
+
configurable: true,
|
211
|
+
writable: true,
|
212
|
+
value: void 0
|
213
|
+
});
|
214
|
+
Object.defineProperty(this, "columns", {
|
215
|
+
enumerable: true,
|
216
|
+
configurable: true,
|
217
|
+
writable: true,
|
218
|
+
value: void 0
|
219
|
+
});
|
220
|
+
Object.defineProperty(this, "head", {
|
221
|
+
enumerable: true,
|
222
|
+
configurable: true,
|
223
|
+
writable: true,
|
224
|
+
value: void 0
|
225
|
+
});
|
226
|
+
Object.defineProperty(this, "body", {
|
227
|
+
enumerable: true,
|
228
|
+
configurable: true,
|
229
|
+
writable: true,
|
230
|
+
value: void 0
|
231
|
+
});
|
232
|
+
this.settings = input.settings;
|
233
|
+
this.styles = input.styles;
|
234
|
+
this.columns = content.columns;
|
235
|
+
this.head = content.head;
|
236
|
+
this.body = content.body;
|
237
|
+
}
|
238
|
+
static async create(arg) {
|
239
|
+
const { input, content, font, _cache } = arg;
|
240
|
+
const table = new Table(input, content);
|
241
|
+
await calculateWidths({ table, font, _cache });
|
242
|
+
return table;
|
243
|
+
}
|
244
|
+
getHeadHeight() {
|
245
|
+
return this.head.reduce((acc, row) => acc + row.getMaxCellHeight(this.columns), 0);
|
246
|
+
}
|
247
|
+
getBodyHeight() {
|
248
|
+
return this.body.reduce((acc, row) => acc + row.getMaxCellHeight(this.columns), 0);
|
249
|
+
}
|
250
|
+
allRows() {
|
251
|
+
return this.head.concat(this.body);
|
252
|
+
}
|
253
|
+
getWidth() {
|
254
|
+
return this.settings.tableWidth;
|
255
|
+
}
|
256
|
+
getHeight() {
|
257
|
+
return (this.settings.showHead ? this.getHeadHeight() : 0) + this.getBodyHeight();
|
258
|
+
}
|
259
|
+
}
|
260
|
+
exports.Table = Table;
|
261
|
+
async function calculateWidths(arg) {
|
262
|
+
const { table, font, _cache } = arg;
|
263
|
+
const getFontKitFontByFontName = (fontName) => (0, helper_1.getFontKitFont)(fontName, font, _cache);
|
264
|
+
await calculate(table, getFontKitFontByFontName);
|
265
|
+
const resizableColumns = [];
|
266
|
+
let initialTableWidth = 0;
|
267
|
+
table.columns.forEach((column) => {
|
268
|
+
const customWidth = column.getMaxCustomCellWidth(table);
|
269
|
+
if (customWidth) {
|
270
|
+
// final column width
|
271
|
+
column.width = customWidth;
|
272
|
+
}
|
273
|
+
else {
|
274
|
+
// initial column width (will be resized)
|
275
|
+
column.width = column.wrappedWidth;
|
276
|
+
resizableColumns.push(column);
|
277
|
+
}
|
278
|
+
initialTableWidth += column.width;
|
279
|
+
});
|
280
|
+
// width difference that needs to be distributed
|
281
|
+
let resizeWidth = table.getWidth() - initialTableWidth;
|
282
|
+
// first resize attempt: with respect to minReadableWidth and minWidth
|
283
|
+
if (resizeWidth) {
|
284
|
+
resizeWidth = resizeColumns(resizableColumns, resizeWidth, (column) => Math.max(column.minReadableWidth, column.minWidth));
|
285
|
+
}
|
286
|
+
// second resize attempt: ignore minReadableWidth but respect minWidth
|
287
|
+
if (resizeWidth) {
|
288
|
+
resizeWidth = resizeColumns(resizableColumns, resizeWidth, (column) => column.minWidth);
|
289
|
+
}
|
290
|
+
resizeWidth = Math.abs(resizeWidth);
|
291
|
+
applyColSpans(table);
|
292
|
+
await fitContent(table, getFontKitFontByFontName);
|
293
|
+
applyRowSpans(table);
|
294
|
+
}
|
295
|
+
function applyRowSpans(table) {
|
296
|
+
const rowSpanCells = {};
|
297
|
+
let colRowSpansLeft = 1;
|
298
|
+
const all = table.allRows();
|
299
|
+
for (let rowIndex = 0; rowIndex < all.length; rowIndex++) {
|
300
|
+
const row = all[rowIndex];
|
301
|
+
for (const column of table.columns) {
|
302
|
+
const data = rowSpanCells[column.index];
|
303
|
+
if (colRowSpansLeft > 1) {
|
304
|
+
colRowSpansLeft--;
|
305
|
+
delete row.cells[column.index];
|
306
|
+
}
|
307
|
+
else if (data) {
|
308
|
+
data.cell.height += row.height;
|
309
|
+
colRowSpansLeft = 1;
|
310
|
+
delete row.cells[column.index];
|
311
|
+
data.left--;
|
312
|
+
if (data.left <= 1) {
|
313
|
+
delete rowSpanCells[column.index];
|
314
|
+
}
|
315
|
+
}
|
316
|
+
else {
|
317
|
+
const cell = row.cells[column.index];
|
318
|
+
if (!cell) {
|
319
|
+
continue;
|
320
|
+
}
|
321
|
+
cell.height = row.height;
|
322
|
+
}
|
323
|
+
}
|
324
|
+
}
|
325
|
+
}
|
326
|
+
function applyColSpans(table) {
|
327
|
+
const all = table.allRows();
|
328
|
+
for (let rowIndex = 0; rowIndex < all.length; rowIndex++) {
|
329
|
+
const row = all[rowIndex];
|
330
|
+
let colSpanCell = null;
|
331
|
+
let combinedColSpanWidth = 0;
|
332
|
+
let colSpansLeft = 0;
|
333
|
+
for (let columnIndex = 0; columnIndex < table.columns.length; columnIndex++) {
|
334
|
+
const column = table.columns[columnIndex];
|
335
|
+
// Width and colspan
|
336
|
+
colSpansLeft -= 1;
|
337
|
+
if (colSpansLeft > 1 && table.columns[columnIndex + 1]) {
|
338
|
+
combinedColSpanWidth += column.width;
|
339
|
+
delete row.cells[column.index];
|
340
|
+
}
|
341
|
+
else if (colSpanCell) {
|
342
|
+
const cell = colSpanCell;
|
343
|
+
delete row.cells[column.index];
|
344
|
+
colSpanCell = null;
|
345
|
+
cell.width = column.width + combinedColSpanWidth;
|
346
|
+
}
|
347
|
+
else {
|
348
|
+
const cell = row.cells[column.index];
|
349
|
+
if (!cell)
|
350
|
+
continue;
|
351
|
+
colSpansLeft = 1;
|
352
|
+
combinedColSpanWidth = 0;
|
353
|
+
cell.width = column.width + combinedColSpanWidth;
|
354
|
+
}
|
355
|
+
}
|
356
|
+
}
|
357
|
+
}
|
358
|
+
async function fitContent(table, getFontKitFontByFontName) {
|
359
|
+
const rowSpanHeight = { count: 0, height: 0 };
|
360
|
+
for (const row of table.allRows()) {
|
361
|
+
for (const column of table.columns) {
|
362
|
+
const cell = row.cells[column.index];
|
363
|
+
if (!cell)
|
364
|
+
continue;
|
365
|
+
const fontKitFont = await getFontKitFontByFontName(cell.styles.fontName);
|
366
|
+
cell.text = (0, helper_1.splitTextToSize)({
|
367
|
+
value: cell.raw,
|
368
|
+
characterSpacing: cell.styles.characterSpacing,
|
369
|
+
boxWidthInPt: (0, common_1.mm2pt)(cell.width),
|
370
|
+
fontSize: cell.styles.fontSize,
|
371
|
+
fontKitFont,
|
372
|
+
});
|
373
|
+
cell.contentHeight = cell.getContentHeight();
|
374
|
+
let realContentHeight = cell.contentHeight;
|
375
|
+
if (rowSpanHeight && rowSpanHeight.count > 0) {
|
376
|
+
if (rowSpanHeight.height > realContentHeight) {
|
377
|
+
realContentHeight = rowSpanHeight.height;
|
378
|
+
}
|
379
|
+
}
|
380
|
+
if (realContentHeight > row.height) {
|
381
|
+
row.height = realContentHeight;
|
382
|
+
}
|
383
|
+
}
|
384
|
+
rowSpanHeight.count--;
|
385
|
+
}
|
386
|
+
}
|
387
|
+
function resizeColumns(columns, resizeWidth, getMinWidth) {
|
388
|
+
const initialResizeWidth = resizeWidth;
|
389
|
+
const sumWrappedWidth = columns.reduce((acc, column) => acc + column.wrappedWidth, 0);
|
390
|
+
for (let i = 0; i < columns.length; i++) {
|
391
|
+
const column = columns[i];
|
392
|
+
const ratio = column.wrappedWidth / sumWrappedWidth;
|
393
|
+
const suggestedChange = initialResizeWidth * ratio;
|
394
|
+
const suggestedWidth = column.width + suggestedChange;
|
395
|
+
const minWidth = getMinWidth(column);
|
396
|
+
const newWidth = suggestedWidth < minWidth ? minWidth : suggestedWidth;
|
397
|
+
resizeWidth -= newWidth - column.width;
|
398
|
+
column.width = newWidth;
|
399
|
+
}
|
400
|
+
resizeWidth = Math.round(resizeWidth * 1e10) / 1e10;
|
401
|
+
// Run the resizer again if there's remaining width needs
|
402
|
+
// to be distributed and there're columns that can be resized
|
403
|
+
if (resizeWidth) {
|
404
|
+
const resizableColumns = columns.filter((column) => {
|
405
|
+
return resizeWidth < 0
|
406
|
+
? column.width > getMinWidth(column) // check if column can shrink
|
407
|
+
: true; // check if column can grow
|
408
|
+
});
|
409
|
+
if (resizableColumns.length) {
|
410
|
+
resizeWidth = resizeColumns(resizableColumns, resizeWidth, getMinWidth);
|
411
|
+
}
|
412
|
+
}
|
413
|
+
return resizeWidth;
|
414
|
+
}
|
415
|
+
async function calculate(table, getFontKitFontByFontName) {
|
416
|
+
for (const row of table.allRows()) {
|
417
|
+
for (const column of table.columns) {
|
418
|
+
const cell = row.cells[column.index];
|
419
|
+
if (!cell)
|
420
|
+
continue;
|
421
|
+
const hPadding = cell.padding('right') + cell.padding('left');
|
422
|
+
const fontKitFont = await getFontKitFontByFontName(cell.styles.fontName);
|
423
|
+
cell.contentWidth = getStringWidth(cell, fontKitFont) + hPadding;
|
424
|
+
const longestWordWidth = getStringWidth(Object.assign(cell, { text: cell.text.join(' ').split(/\s+/) }), fontKitFont);
|
425
|
+
cell.minReadableWidth = longestWordWidth + hPadding;
|
426
|
+
cell.minWidth = cell.styles.cellWidth;
|
427
|
+
cell.wrappedWidth = cell.styles.cellWidth;
|
428
|
+
}
|
429
|
+
}
|
430
|
+
for (const row of table.allRows()) {
|
431
|
+
for (const column of table.columns) {
|
432
|
+
const cell = row.cells[column.index];
|
433
|
+
// For now we ignore the minWidth and wrappedWidth of colspan cells when calculating colspan widths.
|
434
|
+
// Could probably be improved upon however.
|
435
|
+
if (cell) {
|
436
|
+
column.wrappedWidth = Math.max(column.wrappedWidth, cell.wrappedWidth);
|
437
|
+
column.minWidth = Math.max(column.minWidth, cell.minWidth);
|
438
|
+
column.minReadableWidth = Math.max(column.minReadableWidth, cell.minReadableWidth);
|
439
|
+
}
|
440
|
+
else {
|
441
|
+
// Respect cellWidth set in columnStyles even if there is no cells for this column
|
442
|
+
// or if the column only have colspan cells. Since the width of colspan cells
|
443
|
+
// does not affect the width of columns, setting columnStyles cellWidth enables the
|
444
|
+
// user to at least do it manually.
|
445
|
+
// Note that this is not perfect for now since for example row and table styles are
|
446
|
+
// not accounted for
|
447
|
+
const columnStyles = table.styles.columnStyles[column.index] || {};
|
448
|
+
const cellWidth = columnStyles.cellWidth || columnStyles.minCellWidth;
|
449
|
+
if (cellWidth) {
|
450
|
+
column.minWidth = cellWidth;
|
451
|
+
column.wrappedWidth = cellWidth;
|
452
|
+
}
|
453
|
+
}
|
454
|
+
}
|
455
|
+
}
|
456
|
+
}
|
457
|
+
function getStringWidth(cell, fontKitFont) {
|
458
|
+
const text = cell.text;
|
459
|
+
const textArr = Array.isArray(text) ? text : [text];
|
460
|
+
const fontSize = cell.styles.fontSize;
|
461
|
+
const characterSpacing = cell.styles.characterSpacing;
|
462
|
+
const widestLineWidth = textArr
|
463
|
+
.map((text) => (0, helper_1.widthOfTextAtSize)(text, fontKitFont, fontSize, characterSpacing))
|
464
|
+
.reduce((a, b) => Math.max(a, b), 0);
|
465
|
+
return widestLineWidth;
|
466
|
+
}
|
467
|
+
//# sourceMappingURL=classes.js.map
|