@pdfme/common 2.1.0 → 2.2.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.
- package/dist/cjs/__tests__/barcode.test.js +107 -0
- package/dist/cjs/__tests__/barcode.test.js.map +1 -0
- package/dist/cjs/__tests__/font.test.js +77 -32
- package/dist/cjs/__tests__/font.test.js.map +1 -1
- package/dist/cjs/__tests__/helper.test.js +12 -0
- package/dist/cjs/__tests__/helper.test.js.map +1 -1
- package/dist/cjs/src/barcode.js +53 -0
- package/dist/cjs/src/barcode.js.map +1 -0
- package/dist/cjs/src/constants.js +8 -2
- package/dist/cjs/src/constants.js.map +1 -1
- package/dist/cjs/src/font.js +48 -19
- package/dist/cjs/src/font.js.map +1 -1
- package/dist/cjs/src/helper.js +6 -1
- package/dist/cjs/src/helper.js.map +1 -1
- package/dist/cjs/src/index.js +12 -2
- package/dist/cjs/src/index.js.map +1 -1
- package/dist/cjs/src/schema.js +16 -3
- package/dist/cjs/src/schema.js.map +1 -1
- package/dist/cjs/src/type.js.map +1 -1
- package/dist/esm/__tests__/barcode.test.js +102 -0
- package/dist/esm/__tests__/barcode.test.js.map +1 -0
- package/dist/esm/__tests__/font.test.js +78 -33
- package/dist/esm/__tests__/font.test.js.map +1 -1
- package/dist/esm/__tests__/helper.test.js +13 -1
- package/dist/esm/__tests__/helper.test.js.map +1 -1
- package/dist/esm/src/barcode.js +44 -0
- package/dist/esm/src/barcode.js.map +1 -0
- package/dist/esm/src/constants.js +7 -1
- package/dist/esm/src/constants.js.map +1 -1
- package/dist/esm/src/font.js +47 -19
- package/dist/esm/src/font.js.map +1 -1
- package/dist/esm/src/helper.js +5 -1
- package/dist/esm/src/helper.js.map +1 -1
- package/dist/esm/src/index.js +5 -4
- package/dist/esm/src/index.js.map +1 -1
- package/dist/esm/src/schema.js +15 -2
- package/dist/esm/src/schema.js.map +1 -1
- package/dist/esm/src/type.js.map +1 -1
- package/dist/types/__tests__/barcode.test.d.ts +1 -0
- package/dist/types/src/barcode.d.ts +19 -0
- package/dist/types/src/constants.d.ts +7 -1
- package/dist/types/src/font.d.ts +8 -10
- package/dist/types/src/helper.d.ts +1 -0
- package/dist/types/src/index.d.ts +6 -5
- package/dist/types/src/schema.d.ts +310 -29
- package/dist/types/src/type.d.ts +35 -24
- package/package.json +9 -4
- package/src/barcode.ts +51 -0
- package/src/constants.ts +7 -1
- package/src/font.ts +56 -30
- package/src/helper.ts +6 -1
- package/src/index.ts +21 -3
- package/src/schema.ts +17 -2
- package/src/type.ts +9 -0
package/dist/types/src/type.d.ts
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
import { z } from 'zod';
|
2
|
+
import type { Font as FontKitFont } from 'fontkit';
|
2
3
|
import { Lang, Size, Alignment, BarcodeSchemaType, SchemaType, CommonSchema as _CommonSchema, TextSchema, ImageSchema, BarcodeSchema, Schema, SchemaInputs, SchemaForUI, Font, BasePdf, Template, CommonProps, GeneratorOptions, GenerateProps, UIOptions, UIProps, PreviewProps, PreviewReactProps, DesignerProps, DesignerReactProps } from './schema.js';
|
3
|
-
|
4
|
+
export type FontWidthCalcValues = {
|
5
|
+
font: FontKitFont;
|
6
|
+
fontSize: number;
|
7
|
+
characterSpacing: number;
|
8
|
+
boxWidthInPt: number;
|
9
|
+
};
|
10
|
+
type CommonSchema = z.infer<typeof _CommonSchema>;
|
4
11
|
export declare const schemaTypes: readonly ["text", "image", "qrcode", "japanpost", "ean13", "ean8", "code39", "code128", "nw7", "itf14", "upca", "upce", "gs1datamatrix"];
|
5
12
|
export declare const isTextSchema: (arg: CommonSchema) => arg is {
|
6
13
|
type: "text";
|
@@ -12,6 +19,7 @@ export declare const isTextSchema: (arg: CommonSchema) => arg is {
|
|
12
19
|
};
|
13
20
|
rotate?: number | undefined;
|
14
21
|
alignment?: "center" | "left" | "right" | undefined;
|
22
|
+
verticalAlignment?: "top" | "bottom" | "middle" | undefined;
|
15
23
|
fontSize?: number | undefined;
|
16
24
|
fontName?: string | undefined;
|
17
25
|
fontColor?: string | undefined;
|
@@ -43,28 +51,31 @@ export declare const isBarcodeSchema: (arg: CommonSchema) => arg is {
|
|
43
51
|
y: number;
|
44
52
|
};
|
45
53
|
rotate?: number | undefined;
|
54
|
+
backgroundcolor?: string | undefined;
|
55
|
+
barcolor?: string | undefined;
|
56
|
+
textcolor?: string | undefined;
|
46
57
|
};
|
47
|
-
export
|
48
|
-
export
|
49
|
-
export
|
50
|
-
export
|
51
|
-
export
|
52
|
-
export
|
53
|
-
export
|
54
|
-
export
|
55
|
-
export
|
56
|
-
export
|
57
|
-
export
|
58
|
-
export
|
59
|
-
export
|
60
|
-
export
|
61
|
-
export
|
62
|
-
export
|
63
|
-
export
|
64
|
-
export
|
65
|
-
export
|
66
|
-
export
|
67
|
-
export
|
68
|
-
export
|
69
|
-
export
|
58
|
+
export type Lang = z.infer<typeof Lang>;
|
59
|
+
export type Size = z.infer<typeof Size>;
|
60
|
+
export type Alignment = z.infer<typeof Alignment>;
|
61
|
+
export type SchemaType = z.infer<typeof SchemaType>;
|
62
|
+
export type BarCodeType = z.infer<typeof BarcodeSchemaType>;
|
63
|
+
export type TextSchema = z.infer<typeof TextSchema>;
|
64
|
+
export type ImageSchema = z.infer<typeof ImageSchema>;
|
65
|
+
export type BarcodeSchema = z.infer<typeof BarcodeSchema>;
|
66
|
+
export type Schema = z.infer<typeof Schema>;
|
67
|
+
export type SchemaInputs = z.infer<typeof SchemaInputs>;
|
68
|
+
export type SchemaForUI = z.infer<typeof SchemaForUI>;
|
69
|
+
export type Font = z.infer<typeof Font>;
|
70
|
+
export type BasePdf = z.infer<typeof BasePdf>;
|
71
|
+
export type Template = z.infer<typeof Template>;
|
72
|
+
export type CommonProps = z.infer<typeof CommonProps>;
|
73
|
+
export type GeneratorOptions = z.infer<typeof GeneratorOptions>;
|
74
|
+
export type GenerateProps = z.infer<typeof GenerateProps>;
|
75
|
+
export type UIOptions = z.infer<typeof UIOptions>;
|
76
|
+
export type UIProps = z.infer<typeof UIProps>;
|
77
|
+
export type PreviewProps = z.infer<typeof PreviewProps>;
|
78
|
+
export type PreviewReactProps = z.infer<typeof PreviewReactProps>;
|
79
|
+
export type DesignerProps = z.infer<typeof DesignerProps>;
|
80
|
+
export type DesignerReactProps = z.infer<typeof DesignerReactProps>;
|
70
81
|
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pdfme/common",
|
3
|
-
"version": "2.1
|
3
|
+
"version": "2.2.1",
|
4
4
|
"sideEffects": false,
|
5
5
|
"author": "hand-dot",
|
6
6
|
"license": "MIT",
|
@@ -47,9 +47,17 @@
|
|
47
47
|
},
|
48
48
|
"dependencies": {
|
49
49
|
"buffer": "^6.0.3",
|
50
|
+
"bwip-js": "^3.4.5",
|
50
51
|
"fontkit": "^2.0.2",
|
51
52
|
"zod": "^3.20.2"
|
52
53
|
},
|
54
|
+
"devDependencies": {
|
55
|
+
"@types/bwip-js": "^3.2.0",
|
56
|
+
"@types/fontkit": "^2.0.3",
|
57
|
+
"@types/pngjs": "^6.0.1",
|
58
|
+
"jsqr": "^1.4.0",
|
59
|
+
"pngjs": "^7.0.0"
|
60
|
+
},
|
53
61
|
"jest": {
|
54
62
|
"resolver": "ts-jest-resolver",
|
55
63
|
"moduleFileExtensions": [
|
@@ -70,8 +78,5 @@
|
|
70
78
|
},
|
71
79
|
"publishConfig": {
|
72
80
|
"access": "public"
|
73
|
-
},
|
74
|
-
"devDependencies": {
|
75
|
-
"@types/fontkit": "^2.0.3"
|
76
81
|
}
|
77
82
|
}
|
package/src/barcode.ts
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
import { b64toUint8Array, } from './helper';
|
2
|
+
import { BarCodeType, } from './type';
|
3
|
+
import bwipjs, { ToBufferOptions } from 'bwip-js';
|
4
|
+
import { Buffer } from 'buffer';
|
5
|
+
|
6
|
+
/**
|
7
|
+
* The bwip.js lib has a different name for nw7 type barcodes
|
8
|
+
*/
|
9
|
+
export const barCodeType2Bcid = (type: BarCodeType) =>
|
10
|
+
type === 'nw7' ? 'rationalizedCodabar' : type;
|
11
|
+
|
12
|
+
/**
|
13
|
+
* Strip hash from the beginning of HTML hex color codes for the bwip.js lib
|
14
|
+
*/
|
15
|
+
export const mapHexColorForBwipJsLib = (color: string | undefined, fallback?: string) =>
|
16
|
+
color ? color.replace('#', '') : fallback ? fallback.replace('#', '') : '000000';
|
17
|
+
|
18
|
+
export const createBarCode = async (arg: {
|
19
|
+
type: BarCodeType;
|
20
|
+
input: string;
|
21
|
+
width: number;
|
22
|
+
height: number;
|
23
|
+
backgroundcolor?: string;
|
24
|
+
barcolor?: string;
|
25
|
+
textcolor?: string;
|
26
|
+
}): Promise<Buffer> => {
|
27
|
+
const { type, input, width, height, backgroundcolor, barcolor, textcolor } = arg;
|
28
|
+
const bcid = barCodeType2Bcid(type);
|
29
|
+
const includetext = true;
|
30
|
+
const scale = 5;
|
31
|
+
const bwipjsArg: ToBufferOptions = { bcid, text: input, width, height, scale, includetext };
|
32
|
+
|
33
|
+
if (backgroundcolor) bwipjsArg.backgroundcolor = mapHexColorForBwipJsLib(backgroundcolor);
|
34
|
+
if (barcolor) bwipjsArg.barcolor = mapHexColorForBwipJsLib(barcolor);
|
35
|
+
if (textcolor) bwipjsArg.textcolor = mapHexColorForBwipJsLib(textcolor);
|
36
|
+
|
37
|
+
let res: Buffer;
|
38
|
+
|
39
|
+
if (typeof window !== 'undefined') {
|
40
|
+
const canvas = document.createElement('canvas');
|
41
|
+
bwipjs.toCanvas(canvas, bwipjsArg);
|
42
|
+
const dataUrl = canvas.toDataURL('image/png');
|
43
|
+
res = b64toUint8Array(dataUrl).buffer as Buffer;
|
44
|
+
} else {
|
45
|
+
res = await bwipjs.toBuffer(bwipjsArg);
|
46
|
+
}
|
47
|
+
|
48
|
+
return res;
|
49
|
+
};
|
50
|
+
|
51
|
+
|
package/src/constants.ts
CHANGED
@@ -1,9 +1,15 @@
|
|
1
1
|
export const DEFAULT_FONT_NAME = 'Roboto';
|
2
2
|
export const DEFAULT_FONT_SIZE = 13;
|
3
3
|
export const DEFAULT_ALIGNMENT = 'left';
|
4
|
+
export const VERTICAL_ALIGN_TOP = 'top';
|
5
|
+
export const VERTICAL_ALIGN_MIDDLE = 'middle';
|
6
|
+
export const VERTICAL_ALIGN_BOTTOM = 'bottom';
|
7
|
+
export const DEFAULT_VERTICAL_ALIGNMENT = VERTICAL_ALIGN_TOP;
|
4
8
|
export const DEFAULT_LINE_HEIGHT = 1;
|
5
9
|
export const DEFAULT_CHARACTER_SPACING = 0;
|
6
|
-
export const DEFAULT_FONT_COLOR = '#
|
10
|
+
export const DEFAULT_FONT_COLOR = '#000000';
|
11
|
+
export const DEFAULT_BARCODE_BG_COLOR = '#ffffff';
|
12
|
+
export const DEFAULT_BARCODE_COLOR = '#000000';
|
7
13
|
export const DYNAMIC_FIT_VERTICAL = 'vertical';
|
8
14
|
export const DYNAMIC_FIT_HORIZONTAL = 'horizontal';
|
9
15
|
export const DEFAULT_DYNAMIC_FIT = DYNAMIC_FIT_VERTICAL;
|
package/src/font.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as fontkit from 'fontkit';
|
2
2
|
import type { Font as FontKitFont } from 'fontkit';
|
3
|
-
import { Template, Schema, Font, isTextSchema, TextSchema } from './type';
|
3
|
+
import { FontWidthCalcValues, Template, Schema, Font, isTextSchema, TextSchema } from './type';
|
4
4
|
import { Buffer } from 'buffer';
|
5
5
|
import {
|
6
6
|
DEFAULT_FONT_VALUE,
|
@@ -9,12 +9,12 @@ import {
|
|
9
9
|
DEFAULT_CHARACTER_SPACING,
|
10
10
|
DEFAULT_LINE_HEIGHT,
|
11
11
|
FONT_SIZE_ADJUSTMENT,
|
12
|
-
PT_TO_PX_RATIO,
|
13
12
|
DEFAULT_DYNAMIC_FIT,
|
14
13
|
DYNAMIC_FIT_HORIZONTAL,
|
15
14
|
DYNAMIC_FIT_VERTICAL,
|
15
|
+
VERTICAL_ALIGN_TOP,
|
16
16
|
} from './constants';
|
17
|
-
import { mm2pt, pt2mm } from './helper';
|
17
|
+
import { mm2pt, pt2mm, pt2px } from './helper';
|
18
18
|
import { b64toUint8Array } from "."
|
19
19
|
|
20
20
|
export const getFallbackFontName = (font: Font) => {
|
@@ -51,10 +51,7 @@ const getFontNamesInSchemas = (schemas: { [key: string]: Schema }[]) =>
|
|
51
51
|
);
|
52
52
|
|
53
53
|
export const checkFont = (arg: { font: Font; template: Template }) => {
|
54
|
-
const {
|
55
|
-
font,
|
56
|
-
template: { schemas },
|
57
|
-
} = arg;
|
54
|
+
const { font, template: { schemas } } = arg;
|
58
55
|
const fontValues = Object.values(font);
|
59
56
|
const fallbackFontNum = fontValues.reduce((acc, cur) => (cur.fallback ? acc + 1 : acc), 0);
|
60
57
|
if (fallbackFontNum === 0) {
|
@@ -77,20 +74,50 @@ export const checkFont = (arg: { font: Font; template: Template }) => {
|
|
77
74
|
}
|
78
75
|
};
|
79
76
|
|
80
|
-
export const
|
77
|
+
export const getBrowserVerticalFontAdjustments = (
|
78
|
+
fontKitFont: FontKitFont,
|
79
|
+
fontSize: number,
|
80
|
+
lineHeight: number,
|
81
|
+
verticalAlignment: string
|
82
|
+
) => {
|
81
83
|
const { ascent, descent, unitsPerEm } = fontKitFont;
|
82
84
|
|
83
|
-
|
85
|
+
// Fonts have a designed line height that the browser renders when using `line-height: normal`
|
86
|
+
const fontBaseLineHeight = (ascent - descent) / unitsPerEm;
|
84
87
|
|
85
|
-
//
|
86
|
-
|
87
|
-
|
88
|
+
// For vertical alignment top
|
89
|
+
// To achieve consistent positioning between browser and PDF, we apply the difference between
|
90
|
+
// the font's actual height and the font size in pixels.
|
91
|
+
// Browsers middle the font within this height, so we only need half of it to apply to the top.
|
92
|
+
// This means the font renders a bit lower in the browser, but achieves PDF alignment
|
93
|
+
const topAdjustment = (fontBaseLineHeight * fontSize - fontSize) / 2;
|
88
94
|
|
89
|
-
|
90
|
-
|
95
|
+
if (verticalAlignment === VERTICAL_ALIGN_TOP) {
|
96
|
+
return { topAdj: pt2px(topAdjustment), bottomAdj: 0 };
|
97
|
+
}
|
91
98
|
|
92
|
-
//
|
93
|
-
|
99
|
+
// For vertical alignment bottom and middle
|
100
|
+
// When browsers render text in a non-form element (such as a <div>), some of the text may be
|
101
|
+
// lowered below and outside the containing element if the line height used is less than
|
102
|
+
// the base line-height of the font.
|
103
|
+
// This behaviour does not happen in a <textarea> though, so we need to adjust the positioning
|
104
|
+
// for consistency between editing and viewing to stop text jumping up and down.
|
105
|
+
// This portion of text is half of the difference between the base line height and the used
|
106
|
+
// line height. If using the same or higher line-height than the base font, then line-height
|
107
|
+
// takes over in the browser and this adjustment is not needed.
|
108
|
+
// Unlike the top adjustment - this is only driven by browser behaviour, not PDF alignment.
|
109
|
+
let bottomAdjustment = 0;
|
110
|
+
if (lineHeight < fontBaseLineHeight) {
|
111
|
+
bottomAdjustment = ((fontBaseLineHeight - lineHeight) * fontSize) / 2;
|
112
|
+
}
|
113
|
+
|
114
|
+
return { topAdj: 0, bottomAdj: pt2px(bottomAdjustment) };
|
115
|
+
};
|
116
|
+
|
117
|
+
export const getFontDescentInPt = (fontKitFont: FontKitFont, fontSize: number) => {
|
118
|
+
const { descent, unitsPerEm } = fontKitFont;
|
119
|
+
|
120
|
+
return (descent / unitsPerEm) * fontSize;
|
94
121
|
};
|
95
122
|
|
96
123
|
export const heightOfFontAtSize = (fontKitFont: FontKitFont, fontSize: number) => {
|
@@ -138,12 +165,6 @@ export const getFontKitFont = async (textSchema: TextSchema, font: Font) => {
|
|
138
165
|
return fontKitFont;
|
139
166
|
};
|
140
167
|
|
141
|
-
export type FontWidthCalcValues = {
|
142
|
-
font: FontKitFont;
|
143
|
-
fontSize: number;
|
144
|
-
characterSpacing: number;
|
145
|
-
boxWidthInPt: number;
|
146
|
-
};
|
147
168
|
|
148
169
|
const isTextExceedingBoxWidth = (text: string, calcValues: FontWidthCalcValues) => {
|
149
170
|
const { font, fontSize, characterSpacing, boxWidthInPt } = calcValues;
|
@@ -215,12 +236,12 @@ export const getSplittedLines = (textLine: string, calcValues: FontWidthCalcValu
|
|
215
236
|
export const calculateDynamicFontSize = async ({
|
216
237
|
textSchema,
|
217
238
|
font,
|
218
|
-
|
239
|
+
value,
|
219
240
|
startingFontSize,
|
220
241
|
}: {
|
221
242
|
textSchema: TextSchema;
|
222
243
|
font: Font;
|
223
|
-
|
244
|
+
value: string;
|
224
245
|
startingFontSize?: number | undefined;
|
225
246
|
}) => {
|
226
247
|
const {
|
@@ -237,7 +258,7 @@ export const calculateDynamicFontSize = async ({
|
|
237
258
|
|
238
259
|
const characterSpacing = schemaCharacterSpacing ?? DEFAULT_CHARACTER_SPACING;
|
239
260
|
const fontKitFont = await getFontKitFont(textSchema, font);
|
240
|
-
const
|
261
|
+
const paragraphs = value.split('\n');
|
241
262
|
|
242
263
|
let dynamicFontSize = fontSize;
|
243
264
|
if (dynamicFontSize < dynamicFontSizeSetting.min) {
|
@@ -252,17 +273,18 @@ export const calculateDynamicFontSize = async ({
|
|
252
273
|
let totalHeightInMm = 0;
|
253
274
|
|
254
275
|
const boxWidthInPt = mm2pt(boxWidth);
|
255
|
-
const
|
256
|
-
const
|
276
|
+
const firstLineTextHeight = heightOfFontAtSize(fontKitFont, size);
|
277
|
+
const firstLineHeightInMm = pt2mm(firstLineTextHeight * lineHeight);
|
278
|
+
const otherRowHeightInMm = pt2mm(size * lineHeight);
|
257
279
|
|
258
|
-
|
280
|
+
paragraphs.forEach((paragraph, paraIndex) => {
|
259
281
|
const lines = getSplittedLines(paragraph, {
|
260
282
|
font: fontKitFont,
|
261
283
|
fontSize: size,
|
262
284
|
characterSpacing,
|
263
285
|
boxWidthInPt,
|
264
286
|
});
|
265
|
-
lines.forEach((line) => {
|
287
|
+
lines.forEach((line, lineIndex) => {
|
266
288
|
if (dynamicFontFit === DYNAMIC_FIT_VERTICAL) {
|
267
289
|
// For vertical fit we want to consider the width of text lines where we detect a split
|
268
290
|
const textWidth = widthOfTextAtSize(line, fontKitFont, size, characterSpacing);
|
@@ -270,7 +292,11 @@ export const calculateDynamicFontSize = async ({
|
|
270
292
|
totalWidthInMm = Math.max(totalWidthInMm, textWidthInMm);
|
271
293
|
}
|
272
294
|
|
273
|
-
|
295
|
+
if (paraIndex + lineIndex === 0) {
|
296
|
+
totalHeightInMm += firstLineHeightInMm;
|
297
|
+
} else {
|
298
|
+
totalHeightInMm += otherRowHeightInMm;
|
299
|
+
}
|
274
300
|
});
|
275
301
|
if (dynamicFontFit === DYNAMIC_FIT_HORIZONTAL) {
|
276
302
|
// For horizontal fit we want to consider the line's width 'unsplit'
|
package/src/helper.ts
CHANGED
@@ -10,7 +10,7 @@ import {
|
|
10
10
|
GenerateProps as GeneratePropsSchema,
|
11
11
|
UIProps as UIPropsSchema,
|
12
12
|
} from './schema';
|
13
|
-
import { MM_TO_PT_RATIO, PT_TO_MM_RATIO } from './constants';
|
13
|
+
import { MM_TO_PT_RATIO, PT_TO_MM_RATIO, PT_TO_PX_RATIO } from './constants';
|
14
14
|
import { checkFont } from './font';
|
15
15
|
|
16
16
|
export const mm2pt = (mm: number): number => {
|
@@ -21,6 +21,10 @@ export const pt2mm = (pt: number): number => {
|
|
21
21
|
return pt * PT_TO_MM_RATIO;
|
22
22
|
};
|
23
23
|
|
24
|
+
export const pt2px = (pt: number): number => {
|
25
|
+
return pt * PT_TO_PX_RATIO;
|
26
|
+
};
|
27
|
+
|
24
28
|
const blob2Base64Pdf = (blob: Blob) => {
|
25
29
|
return new Promise<string>((resolve, reject) => {
|
26
30
|
const reader = new FileReader();
|
@@ -189,6 +193,7 @@ export const validateBarcodeInput = (type: BarCodeType, input: string) => {
|
|
189
193
|
let res = input.match(regexp);
|
190
194
|
if (
|
191
195
|
res != null &&
|
196
|
+
input.length <= 52 && // 52 is the max length of a GS1 DataMatrix barcode before bwip-js throws an error
|
192
197
|
res[1] === '01' &&
|
193
198
|
(res[2].length === 14 || res[2].length === 8 || res[2].length === 12 || res[2].length === 13)
|
194
199
|
) {
|
package/src/index.ts
CHANGED
@@ -2,9 +2,15 @@ import {
|
|
2
2
|
DEFAULT_FONT_NAME,
|
3
3
|
DEFAULT_FONT_SIZE,
|
4
4
|
DEFAULT_ALIGNMENT,
|
5
|
+
VERTICAL_ALIGN_TOP,
|
6
|
+
VERTICAL_ALIGN_MIDDLE,
|
7
|
+
VERTICAL_ALIGN_BOTTOM,
|
8
|
+
DEFAULT_VERTICAL_ALIGNMENT,
|
5
9
|
DEFAULT_LINE_HEIGHT,
|
6
10
|
DEFAULT_CHARACTER_SPACING,
|
7
11
|
DEFAULT_FONT_COLOR,
|
12
|
+
DEFAULT_BARCODE_BG_COLOR,
|
13
|
+
DEFAULT_BARCODE_COLOR,
|
8
14
|
DYNAMIC_FIT_VERTICAL,
|
9
15
|
DYNAMIC_FIT_HORIZONTAL,
|
10
16
|
DEFAULT_DYNAMIC_FIT,
|
@@ -15,8 +21,10 @@ import {
|
|
15
21
|
BLANK_PDF,
|
16
22
|
DEFAULT_FONT_VALUE,
|
17
23
|
} from './constants.js';
|
24
|
+
import { createBarCode } from './barcode';
|
18
25
|
import { schemaTypes, isImageSchema, isBarcodeSchema, isTextSchema } from './type.js';
|
19
26
|
import type {
|
27
|
+
FontWidthCalcValues,
|
20
28
|
Lang,
|
21
29
|
Size,
|
22
30
|
Alignment,
|
@@ -52,6 +60,7 @@ import {
|
|
52
60
|
checkDesignerProps,
|
53
61
|
checkGenerateProps,
|
54
62
|
mm2pt,
|
63
|
+
pt2px,
|
55
64
|
validateBarcodeInput,
|
56
65
|
} from './helper.js';
|
57
66
|
import {
|
@@ -62,18 +71,24 @@ import {
|
|
62
71
|
widthOfTextAtSize,
|
63
72
|
checkFont,
|
64
73
|
getFontKitFont,
|
65
|
-
|
74
|
+
getBrowserVerticalFontAdjustments,
|
75
|
+
getFontDescentInPt,
|
66
76
|
getSplittedLines,
|
67
|
-
FontWidthCalcValues,
|
68
77
|
} from './font.js';
|
69
78
|
|
70
79
|
export {
|
71
80
|
DEFAULT_FONT_NAME,
|
72
81
|
DEFAULT_FONT_SIZE,
|
73
82
|
DEFAULT_ALIGNMENT,
|
83
|
+
VERTICAL_ALIGN_TOP,
|
84
|
+
VERTICAL_ALIGN_MIDDLE,
|
85
|
+
VERTICAL_ALIGN_BOTTOM,
|
86
|
+
DEFAULT_VERTICAL_ALIGNMENT,
|
74
87
|
DEFAULT_LINE_HEIGHT,
|
75
88
|
DEFAULT_CHARACTER_SPACING,
|
76
89
|
DEFAULT_FONT_COLOR,
|
90
|
+
DEFAULT_BARCODE_BG_COLOR,
|
91
|
+
DEFAULT_BARCODE_COLOR,
|
77
92
|
DYNAMIC_FIT_VERTICAL,
|
78
93
|
DYNAMIC_FIT_HORIZONTAL,
|
79
94
|
DEFAULT_DYNAMIC_FIT,
|
@@ -95,9 +110,11 @@ export {
|
|
95
110
|
heightOfFontAtSize,
|
96
111
|
widthOfTextAtSize,
|
97
112
|
mm2pt,
|
113
|
+
pt2px,
|
98
114
|
checkFont,
|
115
|
+
getBrowserVerticalFontAdjustments,
|
116
|
+
getFontDescentInPt,
|
99
117
|
getFontKitFont,
|
100
|
-
getFontAlignmentValue,
|
101
118
|
checkInputs,
|
102
119
|
checkUIOptions,
|
103
120
|
checkTemplate,
|
@@ -107,6 +124,7 @@ export {
|
|
107
124
|
checkGenerateProps,
|
108
125
|
validateBarcodeInput,
|
109
126
|
calculateDynamicFontSize,
|
127
|
+
createBarCode
|
110
128
|
};
|
111
129
|
|
112
130
|
export type {
|
package/src/schema.ts
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
/* eslint dot-notation: "off"*/
|
2
2
|
import { z } from 'zod';
|
3
|
+
import { VERTICAL_ALIGN_TOP, VERTICAL_ALIGN_MIDDLE, VERTICAL_ALIGN_BOTTOM } from "./constants";
|
4
|
+
|
5
|
+
const langs = ['en', 'ja', 'ar', 'th', 'pl', 'it'] as const;
|
3
6
|
|
4
|
-
const langs = ['en', 'ja', 'ar', 'th', 'pl'] as const;
|
5
7
|
export const Lang = z.enum(langs);
|
6
8
|
|
7
9
|
export const Size = z.object({ height: z.number(), width: z.number() });
|
@@ -9,6 +11,13 @@ export const Size = z.object({ height: z.number(), width: z.number() });
|
|
9
11
|
const alignments = ['left', 'center', 'right'] as const;
|
10
12
|
export const Alignment = z.enum(alignments);
|
11
13
|
|
14
|
+
const verticalAlignments = [
|
15
|
+
VERTICAL_ALIGN_TOP,
|
16
|
+
VERTICAL_ALIGN_MIDDLE,
|
17
|
+
VERTICAL_ALIGN_BOTTOM,
|
18
|
+
] as const;
|
19
|
+
export const VerticalAlignment = z.enum(verticalAlignments);
|
20
|
+
|
12
21
|
// prettier-ignore
|
13
22
|
export const barcodeSchemaTypes = ['qrcode', 'japanpost', 'ean13', 'ean8', 'code39', 'code128', 'nw7', 'itf14', 'upca', 'upce', 'gs1datamatrix'] as const;
|
14
23
|
const notBarcodeSchemaTypes = ['text', 'image'] as const;
|
@@ -28,6 +37,7 @@ export const CommonSchema = z.object({
|
|
28
37
|
export const TextSchema = CommonSchema.extend({
|
29
38
|
type: z.literal(SchemaType.Enum.text),
|
30
39
|
alignment: Alignment.optional(),
|
40
|
+
verticalAlignment: VerticalAlignment.optional(),
|
31
41
|
fontSize: z.number().optional(),
|
32
42
|
fontName: z.string().optional(),
|
33
43
|
fontColor: z.string().optional(),
|
@@ -43,7 +53,12 @@ export const TextSchema = CommonSchema.extend({
|
|
43
53
|
|
44
54
|
export const ImageSchema = CommonSchema.extend({ type: z.literal(SchemaType.Enum.image) });
|
45
55
|
|
46
|
-
export const BarcodeSchema = CommonSchema.extend({
|
56
|
+
export const BarcodeSchema = CommonSchema.extend({
|
57
|
+
type: BarcodeSchemaType,
|
58
|
+
backgroundcolor: z.string().optional(),
|
59
|
+
barcolor: z.string().optional(),
|
60
|
+
textcolor: z.string().optional(),
|
61
|
+
});
|
47
62
|
|
48
63
|
export const Schema = z.union([TextSchema, ImageSchema, BarcodeSchema]);
|
49
64
|
|
package/src/type.ts
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
import { z } from 'zod';
|
2
|
+
import type { Font as FontKitFont } from 'fontkit';
|
3
|
+
|
2
4
|
import {
|
3
5
|
Lang,
|
4
6
|
Size,
|
@@ -28,6 +30,13 @@ import {
|
|
28
30
|
DesignerReactProps,
|
29
31
|
} from './schema.js';
|
30
32
|
|
33
|
+
export type FontWidthCalcValues = {
|
34
|
+
font: FontKitFont;
|
35
|
+
fontSize: number;
|
36
|
+
characterSpacing: number;
|
37
|
+
boxWidthInPt: number;
|
38
|
+
};
|
39
|
+
|
31
40
|
type CommonSchema = z.infer<typeof _CommonSchema>;
|
32
41
|
export const schemaTypes = _schemaTypes;
|
33
42
|
export const isTextSchema = (arg: CommonSchema): arg is TextSchema => arg.type === 'text';
|