@pdfme/common 2.2.0 → 3.0.0-beta.1

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.
Files changed (54) hide show
  1. package/dist/cjs/__tests__/helper.test.js +292 -231
  2. package/dist/cjs/__tests__/helper.test.js.map +1 -1
  3. package/dist/cjs/src/constants.js +3 -15
  4. package/dist/cjs/src/constants.js.map +1 -1
  5. package/dist/cjs/src/helper.js +72 -98
  6. package/dist/cjs/src/helper.js.map +1 -1
  7. package/dist/cjs/src/index.js +7 -33
  8. package/dist/cjs/src/index.js.map +1 -1
  9. package/dist/cjs/src/schema.js +18 -67
  10. package/dist/cjs/src/schema.js.map +1 -1
  11. package/dist/cjs/src/types.js +3 -0
  12. package/dist/cjs/src/types.js.map +1 -0
  13. package/dist/esm/__tests__/helper.test.js +270 -232
  14. package/dist/esm/__tests__/helper.test.js.map +1 -1
  15. package/dist/esm/src/constants.js +2 -14
  16. package/dist/esm/src/constants.js.map +1 -1
  17. package/dist/esm/src/helper.js +68 -97
  18. package/dist/esm/src/helper.js.map +1 -1
  19. package/dist/esm/src/index.js +3 -5
  20. package/dist/esm/src/index.js.map +1 -1
  21. package/dist/esm/src/schema.js +15 -64
  22. package/dist/esm/src/schema.js.map +1 -1
  23. package/dist/esm/src/types.js +2 -0
  24. package/dist/esm/src/types.js.map +1 -0
  25. package/dist/types/src/constants.d.ts +2 -14
  26. package/dist/types/src/helper.d.ts +11 -2
  27. package/dist/types/src/index.d.ts +5 -7
  28. package/dist/types/src/schema.d.ts +715 -3383
  29. package/dist/types/src/types.d.ts +127 -0
  30. package/package.json +5 -6
  31. package/src/constants.ts +2 -16
  32. package/src/helper.ts +108 -115
  33. package/src/index.ts +28 -81
  34. package/src/schema.ts +20 -80
  35. package/src/types.ts +124 -0
  36. package/tsconfig.cjs.json +3 -2
  37. package/tsconfig.esm.json +3 -2
  38. package/dist/cjs/__tests__/font.test.js +0 -464
  39. package/dist/cjs/__tests__/font.test.js.map +0 -1
  40. package/dist/cjs/src/font.js +0 -304
  41. package/dist/cjs/src/font.js.map +0 -1
  42. package/dist/cjs/src/type.js +0 -12
  43. package/dist/cjs/src/type.js.map +0 -1
  44. package/dist/esm/__tests__/font.test.js +0 -439
  45. package/dist/esm/__tests__/font.test.js.map +0 -1
  46. package/dist/esm/src/font.js +0 -268
  47. package/dist/esm/src/font.js.map +0 -1
  48. package/dist/esm/src/type.js +0 -6
  49. package/dist/esm/src/type.js.map +0 -1
  50. package/dist/types/__tests__/font.test.d.ts +0 -1
  51. package/dist/types/src/font.d.ts +0 -34
  52. package/dist/types/src/type.d.ts +0 -78
  53. package/src/font.ts +0 -350
  54. package/src/type.ts +0 -69
package/src/font.ts DELETED
@@ -1,350 +0,0 @@
1
- import * as fontkit from 'fontkit';
2
- import type { Font as FontKitFont } from 'fontkit';
3
- import { FontWidthCalcValues, Template, Schema, Font, isTextSchema, TextSchema } from './type';
4
- import { Buffer } from 'buffer';
5
- import {
6
- DEFAULT_FONT_VALUE,
7
- DEFAULT_FONT_NAME,
8
- DEFAULT_FONT_SIZE,
9
- DEFAULT_CHARACTER_SPACING,
10
- DEFAULT_LINE_HEIGHT,
11
- FONT_SIZE_ADJUSTMENT,
12
- DEFAULT_DYNAMIC_FIT,
13
- DYNAMIC_FIT_HORIZONTAL,
14
- DYNAMIC_FIT_VERTICAL,
15
- VERTICAL_ALIGN_TOP,
16
- } from './constants';
17
- import { mm2pt, pt2mm, pt2px } from './helper';
18
- import { b64toUint8Array } from "."
19
-
20
- export const getFallbackFontName = (font: Font) => {
21
- const initial = '';
22
- const fallbackFontName = Object.entries(font).reduce((acc, cur) => {
23
- const [fontName, fontValue] = cur;
24
-
25
- return !acc && fontValue.fallback ? fontName : acc;
26
- }, initial);
27
- if (fallbackFontName === initial) {
28
- throw Error(`fallback flag is not found in font. true fallback flag must be only one.`);
29
- }
30
-
31
- return fallbackFontName;
32
- };
33
-
34
- const getFallbackFont = (font: Font) => {
35
- const fallbackFontName = getFallbackFontName(font);
36
- return font[fallbackFontName];
37
- };
38
-
39
- export const getDefaultFont = (): Font => ({
40
- [DEFAULT_FONT_NAME]: { data: b64toUint8Array(DEFAULT_FONT_VALUE), fallback: true },
41
- });
42
-
43
- const uniq = <T>(array: Array<T>) => Array.from(new Set(array));
44
-
45
- const getFontNamesInSchemas = (schemas: { [key: string]: Schema }[]) =>
46
- uniq(
47
- schemas
48
- .map((s) => Object.values(s).map((v) => (isTextSchema(v) ? v.fontName : '')))
49
- .reduce((acc, cur) => acc.concat(cur), [] as (string | undefined)[])
50
- .filter(Boolean) as string[]
51
- );
52
-
53
- export const checkFont = (arg: { font: Font; template: Template }) => {
54
- const {
55
- font,
56
- template: { schemas },
57
- } = arg;
58
- const fontValues = Object.values(font);
59
- const fallbackFontNum = fontValues.reduce((acc, cur) => (cur.fallback ? acc + 1 : acc), 0);
60
- if (fallbackFontNum === 0) {
61
- throw Error(`fallback flag is not found in font. true fallback flag must be only one.`);
62
- }
63
- if (fallbackFontNum > 1) {
64
- throw Error(
65
- `${fallbackFontNum} fallback flags found in font. true fallback flag must be only one.`
66
- );
67
- }
68
-
69
- const fontNamesInSchemas = getFontNamesInSchemas(schemas);
70
- const fontNames = Object.keys(font);
71
- if (fontNamesInSchemas.some((f) => !fontNames.includes(f))) {
72
- throw Error(
73
- `${fontNamesInSchemas
74
- .filter((f) => !fontNames.includes(f))
75
- .join()} of template.schemas is not found in font.`
76
- );
77
- }
78
- };
79
-
80
- export const getBrowserVerticalFontAdjustments = (
81
- fontKitFont: FontKitFont,
82
- fontSize: number,
83
- lineHeight: number,
84
- verticalAlignment: string
85
- ) => {
86
- const { ascent, descent, unitsPerEm } = fontKitFont;
87
-
88
- // Fonts have a designed line height that the browser renders when using `line-height: normal`
89
- const fontBaseLineHeight = (ascent - descent) / unitsPerEm;
90
-
91
- // For vertical alignment top
92
- // To achieve consistent positioning between browser and PDF, we apply the difference between
93
- // the font's actual height and the font size in pixels.
94
- // Browsers middle the font within this height, so we only need half of it to apply to the top.
95
- // This means the font renders a bit lower in the browser, but achieves PDF alignment
96
- const topAdjustment = (fontBaseLineHeight * fontSize - fontSize) / 2;
97
-
98
- if (verticalAlignment === VERTICAL_ALIGN_TOP) {
99
- return { topAdj: pt2px(topAdjustment), bottomAdj: 0 };
100
- }
101
-
102
- // For vertical alignment bottom and middle
103
- // When browsers render text in a non-form element (such as a <div>), some of the text may be
104
- // lowered below and outside the containing element if the line height used is less than
105
- // the base line-height of the font.
106
- // This behaviour does not happen in a <textarea> though, so we need to adjust the positioning
107
- // for consistency between editing and viewing to stop text jumping up and down.
108
- // This portion of text is half of the difference between the base line height and the used
109
- // line height. If using the same or higher line-height than the base font, then line-height
110
- // takes over in the browser and this adjustment is not needed.
111
- // Unlike the top adjustment - this is only driven by browser behaviour, not PDF alignment.
112
- let bottomAdjustment = 0;
113
- if (lineHeight < fontBaseLineHeight) {
114
- bottomAdjustment = ((fontBaseLineHeight - lineHeight) * fontSize) / 2;
115
- }
116
-
117
- return { topAdj: 0, bottomAdj: pt2px(bottomAdjustment) };
118
- };
119
-
120
- export const getFontDescentInPt = (fontKitFont: FontKitFont, fontSize: number) => {
121
- const { descent, unitsPerEm } = fontKitFont;
122
-
123
- return (descent / unitsPerEm) * fontSize;
124
- };
125
-
126
- export const heightOfFontAtSize = (fontKitFont: FontKitFont, fontSize: number) => {
127
- const { ascent, descent, bbox, unitsPerEm } = fontKitFont;
128
-
129
- const scale = 1000 / unitsPerEm;
130
- const yTop = (ascent || bbox.maxY) * scale;
131
- const yBottom = (descent || bbox.minY) * scale;
132
-
133
- let height = yTop - yBottom;
134
- height -= Math.abs(descent * scale) || 0;
135
-
136
- return (height / 1000) * fontSize;
137
- };
138
-
139
- const calculateCharacterSpacing = (textContent: string, textCharacterSpacing: number) => {
140
- return (textContent.length - 1) * textCharacterSpacing;
141
- };
142
-
143
- export const widthOfTextAtSize = (text: string, fontKitFont: FontKitFont, fontSize: number, characterSpacing: number) => {
144
- const { glyphs } = fontKitFont.layout(text);
145
- const scale = 1000 / fontKitFont.unitsPerEm;
146
- const standardWidth =
147
- glyphs.reduce((totalWidth, glyph) => totalWidth + glyph.advanceWidth * scale, 0) *
148
- (fontSize / 1000);
149
- return standardWidth + calculateCharacterSpacing(text, characterSpacing);
150
- };
151
-
152
- const fontKitFontCache: { [fontName: string]: FontKitFont } = {};
153
- export const getFontKitFont = async (textSchema: TextSchema, font: Font) => {
154
- const fontName = textSchema.fontName || getFallbackFontName(font);
155
- if (fontKitFontCache[fontName]) {
156
- return fontKitFontCache[fontName];
157
- }
158
-
159
- const currentFont = font[fontName] || getFallbackFont(font) || getDefaultFont()[DEFAULT_FONT_NAME];
160
- let fontData = currentFont.data;
161
- if (typeof fontData === 'string') {
162
- fontData = fontData.startsWith('http') ? await fetch(fontData).then((res) => res.arrayBuffer()) : b64toUint8Array(fontData);
163
- }
164
-
165
- const fontKitFont = fontkit.create(fontData instanceof Buffer ? fontData : Buffer.from(fontData as ArrayBuffer));
166
- fontKitFontCache[fontName] = fontKitFont;
167
-
168
- return fontKitFont;
169
- };
170
-
171
-
172
- const isTextExceedingBoxWidth = (text: string, calcValues: FontWidthCalcValues) => {
173
- const { font, fontSize, characterSpacing, boxWidthInPt } = calcValues;
174
- const textWidth = widthOfTextAtSize(text, font, fontSize, characterSpacing);
175
- return textWidth > boxWidthInPt;
176
- };
177
-
178
- /**
179
- * Incrementally checks the current line for its real length
180
- * and returns the position where it exceeds the box width.
181
- * Returns `null` to indicate if textLine is shorter than the available box.
182
- */
183
- const getOverPosition = (textLine: string, calcValues: FontWidthCalcValues) => {
184
- for (let i = 0; i <= textLine.length; i++) {
185
- if (isTextExceedingBoxWidth(textLine.slice(0, i + 1), calcValues)) {
186
- return i;
187
- }
188
- }
189
-
190
- return null;
191
- };
192
-
193
- /**
194
- * Gets the position of the split. Splits the exceeding line at
195
- * the last whitespace prior to it exceeding the bounding box width.
196
- */
197
- const getSplitPosition = (textLine: string, calcValues: FontWidthCalcValues) => {
198
- const overPos = getOverPosition(textLine, calcValues);
199
- if (overPos === null) return textLine.length; // input line is shorter than the available space
200
-
201
- let overPosTmp = overPos;
202
- while (textLine[overPosTmp] !== ' ' && overPosTmp >= 0) {
203
- overPosTmp--;
204
- }
205
-
206
- // For very long lines with no whitespace use the original overPos
207
- return overPosTmp > 0 ? overPosTmp : overPos;
208
- };
209
-
210
- /**
211
- * Recursively splits the line at getSplitPosition.
212
- * If there is some leftover, split the rest again in the same manner.
213
- */
214
- export const getSplittedLines = (textLine: string, calcValues: FontWidthCalcValues): string[] => {
215
- const splitPos = getSplitPosition(textLine, calcValues);
216
- const splittedLine = textLine.substring(0, splitPos);
217
- const rest = textLine.substring(splitPos).trimStart();
218
-
219
- if (rest === textLine) {
220
- // if we went so small that we want to split on the first char
221
- // then end recursion to avoid infinite loop
222
- return [textLine];
223
- }
224
-
225
- if (rest.length === 0) {
226
- // end recursion if there is no leftover
227
- return [splittedLine];
228
- }
229
-
230
- return [splittedLine, ...getSplittedLines(rest, calcValues)];
231
- };
232
-
233
- /**
234
- * If using dynamic font size, iteratively increment or decrement the
235
- * font size to fit the containing box.
236
- * Calculating space usage involves splitting lines where they exceed
237
- * the box width based on the proposed size.
238
- */
239
- export const calculateDynamicFontSize = async ({
240
- textSchema,
241
- font,
242
- input,
243
- startingFontSize,
244
- }: {
245
- textSchema: TextSchema;
246
- font: Font;
247
- input: string;
248
- startingFontSize?: number | undefined;
249
- }) => {
250
- const {
251
- fontSize: schemaFontSize,
252
- dynamicFontSize: dynamicFontSizeSetting,
253
- characterSpacing: schemaCharacterSpacing,
254
- width: boxWidth,
255
- height: boxHeight,
256
- lineHeight = DEFAULT_LINE_HEIGHT,
257
- } = textSchema;
258
- const fontSize = startingFontSize || schemaFontSize || DEFAULT_FONT_SIZE;
259
- if (!dynamicFontSizeSetting) return fontSize;
260
- if (dynamicFontSizeSetting.max < dynamicFontSizeSetting.min) return fontSize;
261
-
262
- const characterSpacing = schemaCharacterSpacing ?? DEFAULT_CHARACTER_SPACING;
263
- const fontKitFont = await getFontKitFont(textSchema, font);
264
- const textContentRows = input.split('\n');
265
-
266
- let dynamicFontSize = fontSize;
267
- if (dynamicFontSize < dynamicFontSizeSetting.min) {
268
- dynamicFontSize = dynamicFontSizeSetting.min;
269
- } else if (dynamicFontSize > dynamicFontSizeSetting.max) {
270
- dynamicFontSize = dynamicFontSizeSetting.max;
271
- }
272
- const dynamicFontFit = dynamicFontSizeSetting.fit ?? DEFAULT_DYNAMIC_FIT;
273
-
274
- const calculateConstraints = (size: number) => {
275
- let totalWidthInMm = 0;
276
- let totalHeightInMm = 0;
277
-
278
- const boxWidthInPt = mm2pt(boxWidth);
279
- const textHeight = heightOfFontAtSize(fontKitFont, size);
280
- const textHeightInMm = pt2mm(textHeight * lineHeight);
281
-
282
- textContentRows.forEach((paragraph) => {
283
- const lines = getSplittedLines(paragraph, {
284
- font: fontKitFont,
285
- fontSize: size,
286
- characterSpacing,
287
- boxWidthInPt,
288
- });
289
- lines.forEach((line) => {
290
- if (dynamicFontFit === DYNAMIC_FIT_VERTICAL) {
291
- // For vertical fit we want to consider the width of text lines where we detect a split
292
- const textWidth = widthOfTextAtSize(line, fontKitFont, size, characterSpacing);
293
- const textWidthInMm = pt2mm(textWidth);
294
- totalWidthInMm = Math.max(totalWidthInMm, textWidthInMm);
295
- }
296
-
297
- totalHeightInMm += textHeightInMm;
298
- });
299
- if (dynamicFontFit === DYNAMIC_FIT_HORIZONTAL) {
300
- // For horizontal fit we want to consider the line's width 'unsplit'
301
- const textWidth = widthOfTextAtSize(paragraph, fontKitFont, size, characterSpacing);
302
- const textWidthInMm = pt2mm(textWidth);
303
- totalWidthInMm = Math.max(totalWidthInMm, textWidthInMm);
304
- }
305
- });
306
-
307
- return { totalWidthInMm, totalHeightInMm };
308
- };
309
-
310
- const shouldFontGrowToFit = (totalWidthInMm: number, totalHeightInMm: number) => {
311
- if (dynamicFontSize >= dynamicFontSizeSetting.max) {
312
- return false;
313
- }
314
- if (dynamicFontFit === DYNAMIC_FIT_HORIZONTAL) {
315
- return totalWidthInMm < boxWidth;
316
- }
317
- return totalHeightInMm < boxHeight;
318
- };
319
-
320
- const shouldFontShrinkToFit = (totalWidthInMm: number, totalHeightInMm: number) => {
321
- if (dynamicFontSize <= dynamicFontSizeSetting.min || dynamicFontSize <= 0) {
322
- return false;
323
- }
324
- return totalWidthInMm > boxWidth || totalHeightInMm > boxHeight;
325
- };
326
-
327
- let { totalWidthInMm, totalHeightInMm } = calculateConstraints(dynamicFontSize);
328
-
329
- // Attempt to increase the font size up to desired fit
330
- while (shouldFontGrowToFit(totalWidthInMm, totalHeightInMm)) {
331
- dynamicFontSize += FONT_SIZE_ADJUSTMENT;
332
- const { totalWidthInMm: newWidth, totalHeightInMm: newHeight } = calculateConstraints(dynamicFontSize);
333
-
334
- if (newHeight < boxHeight) {
335
- totalWidthInMm = newWidth;
336
- totalHeightInMm = newHeight;
337
- } else {
338
- dynamicFontSize -= FONT_SIZE_ADJUSTMENT;
339
- break;
340
- }
341
- }
342
-
343
- // Attempt to decrease the font size down to desired fit
344
- while (shouldFontShrinkToFit(totalWidthInMm, totalHeightInMm)) {
345
- dynamicFontSize -= FONT_SIZE_ADJUSTMENT;
346
- ({ totalWidthInMm, totalHeightInMm } = calculateConstraints(dynamicFontSize));
347
- }
348
-
349
- return dynamicFontSize;
350
- };
package/src/type.ts DELETED
@@ -1,69 +0,0 @@
1
- import { z } from 'zod';
2
- import type { Font as FontKitFont } from 'fontkit';
3
-
4
- import {
5
- Lang,
6
- Size,
7
- Alignment,
8
- barcodeSchemaTypes,
9
- schemaTypes as _schemaTypes,
10
- BarcodeSchemaType,
11
- SchemaType,
12
- CommonSchema as _CommonSchema,
13
- TextSchema,
14
- ImageSchema,
15
- BarcodeSchema,
16
- Schema,
17
- SchemaInputs,
18
- SchemaForUI,
19
- Font,
20
- BasePdf,
21
- Template,
22
- CommonProps,
23
- GeneratorOptions,
24
- GenerateProps,
25
- UIOptions,
26
- UIProps,
27
- PreviewProps,
28
- PreviewReactProps,
29
- DesignerProps,
30
- DesignerReactProps,
31
- } from './schema.js';
32
-
33
- export type FontWidthCalcValues = {
34
- font: FontKitFont;
35
- fontSize: number;
36
- characterSpacing: number;
37
- boxWidthInPt: number;
38
- };
39
-
40
- type CommonSchema = z.infer<typeof _CommonSchema>;
41
- export const schemaTypes = _schemaTypes;
42
- export const isTextSchema = (arg: CommonSchema): arg is TextSchema => arg.type === 'text';
43
- export const isImageSchema = (arg: CommonSchema): arg is ImageSchema => arg.type === 'image';
44
- export const isBarcodeSchema = (arg: CommonSchema): arg is BarcodeSchema =>
45
- barcodeSchemaTypes.map((t) => t as string).includes(arg.type);
46
-
47
- export type Lang = z.infer<typeof Lang>;
48
- export type Size = z.infer<typeof Size>;
49
- export type Alignment = z.infer<typeof Alignment>;
50
- export type SchemaType = z.infer<typeof SchemaType>;
51
- export type BarCodeType = z.infer<typeof BarcodeSchemaType>;
52
- export type TextSchema = z.infer<typeof TextSchema>;
53
- export type ImageSchema = z.infer<typeof ImageSchema>;
54
- export type BarcodeSchema = z.infer<typeof BarcodeSchema>;
55
- export type Schema = z.infer<typeof Schema>;
56
- export type SchemaInputs = z.infer<typeof SchemaInputs>;
57
- export type SchemaForUI = z.infer<typeof SchemaForUI>;
58
- export type Font = z.infer<typeof Font>;
59
- export type BasePdf = z.infer<typeof BasePdf>;
60
- export type Template = z.infer<typeof Template>;
61
- export type CommonProps = z.infer<typeof CommonProps>;
62
- export type GeneratorOptions = z.infer<typeof GeneratorOptions>;
63
- export type GenerateProps = z.infer<typeof GenerateProps>;
64
- export type UIOptions = z.infer<typeof UIOptions>;
65
- export type UIProps = z.infer<typeof UIProps>;
66
- export type PreviewProps = z.infer<typeof PreviewProps>;
67
- export type PreviewReactProps = z.infer<typeof PreviewReactProps>;
68
- export type DesignerProps = z.infer<typeof DesignerProps>;
69
- export type DesignerReactProps = z.infer<typeof DesignerReactProps>;