@pdfme/common 2.2.1 → 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.
- package/dist/cjs/__tests__/helper.test.js +292 -233
- package/dist/cjs/__tests__/helper.test.js.map +1 -1
- package/dist/cjs/src/constants.js +3 -17
- package/dist/cjs/src/constants.js.map +1 -1
- package/dist/cjs/src/helper.js +72 -99
- package/dist/cjs/src/helper.js.map +1 -1
- package/dist/cjs/src/index.js +7 -37
- package/dist/cjs/src/index.js.map +1 -1
- package/dist/cjs/src/schema.js +17 -71
- package/dist/cjs/src/schema.js.map +1 -1
- package/dist/cjs/src/types.js +3 -0
- package/dist/cjs/src/types.js.map +1 -0
- package/dist/esm/__tests__/helper.test.js +270 -234
- package/dist/esm/__tests__/helper.test.js.map +1 -1
- package/dist/esm/src/constants.js +2 -16
- package/dist/esm/src/constants.js.map +1 -1
- package/dist/esm/src/helper.js +68 -98
- package/dist/esm/src/helper.js.map +1 -1
- package/dist/esm/src/index.js +3 -6
- package/dist/esm/src/index.js.map +1 -1
- package/dist/esm/src/schema.js +14 -68
- package/dist/esm/src/schema.js.map +1 -1
- package/dist/esm/src/types.js +2 -0
- package/dist/esm/src/types.js.map +1 -0
- package/dist/types/src/constants.d.ts +2 -16
- package/dist/types/src/helper.d.ts +11 -2
- package/dist/types/src/index.d.ts +5 -8
- package/dist/types/src/schema.d.ts +696 -3574
- package/dist/types/src/types.d.ts +127 -0
- package/package.json +5 -11
- package/src/constants.ts +2 -18
- package/src/helper.ts +108 -116
- package/src/index.ts +28 -87
- package/src/schema.ts +18 -84
- package/src/types.ts +124 -0
- package/tsconfig.cjs.json +3 -2
- package/tsconfig.esm.json +3 -2
- package/dist/cjs/__tests__/barcode.test.js +0 -107
- package/dist/cjs/__tests__/barcode.test.js.map +0 -1
- package/dist/cjs/__tests__/font.test.js +0 -465
- package/dist/cjs/__tests__/font.test.js.map +0 -1
- package/dist/cjs/src/barcode.js +0 -53
- package/dist/cjs/src/barcode.js.map +0 -1
- package/dist/cjs/src/font.js +0 -310
- package/dist/cjs/src/font.js.map +0 -1
- package/dist/cjs/src/type.js +0 -12
- package/dist/cjs/src/type.js.map +0 -1
- package/dist/esm/__tests__/barcode.test.js +0 -102
- package/dist/esm/__tests__/barcode.test.js.map +0 -1
- package/dist/esm/__tests__/font.test.js +0 -440
- package/dist/esm/__tests__/font.test.js.map +0 -1
- package/dist/esm/src/barcode.js +0 -44
- package/dist/esm/src/barcode.js.map +0 -1
- package/dist/esm/src/font.js +0 -274
- package/dist/esm/src/font.js.map +0 -1
- package/dist/esm/src/type.js +0 -6
- package/dist/esm/src/type.js.map +0 -1
- package/dist/types/__tests__/barcode.test.d.ts +0 -1
- package/dist/types/__tests__/font.test.d.ts +0 -1
- package/dist/types/src/barcode.d.ts +0 -19
- package/dist/types/src/font.d.ts +0 -34
- package/dist/types/src/type.d.ts +0 -81
- package/src/barcode.ts +0 -51
- package/src/font.ts +0 -352
- package/src/type.ts +0 -69
package/src/helper.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
import { Buffer } from 'buffer';
|
3
|
-
import {
|
3
|
+
import { Schema, Template, Font, BasePdf, Plugins } from './types';
|
4
4
|
import {
|
5
5
|
Inputs as InputsSchema,
|
6
6
|
UIOptions as UIOptionsSchema,
|
@@ -10,8 +10,35 @@ import {
|
|
10
10
|
GenerateProps as GeneratePropsSchema,
|
11
11
|
UIProps as UIPropsSchema,
|
12
12
|
} from './schema';
|
13
|
-
import {
|
14
|
-
|
13
|
+
import {
|
14
|
+
MM_TO_PT_RATIO,
|
15
|
+
PT_TO_MM_RATIO,
|
16
|
+
PT_TO_PX_RATIO,
|
17
|
+
DEFAULT_FONT_NAME,
|
18
|
+
DEFAULT_FONT_VALUE,
|
19
|
+
} from './constants';
|
20
|
+
|
21
|
+
const uniq = <T>(array: Array<T>) => Array.from(new Set(array));
|
22
|
+
|
23
|
+
export const getFallbackFontName = (font: Font) => {
|
24
|
+
const initial = '';
|
25
|
+
const fallbackFontName = Object.entries(font).reduce((acc, cur) => {
|
26
|
+
const [fontName, fontValue] = cur;
|
27
|
+
|
28
|
+
return !acc && fontValue.fallback ? fontName : acc;
|
29
|
+
}, initial);
|
30
|
+
if (fallbackFontName === initial) {
|
31
|
+
throw Error(
|
32
|
+
`[@pdfme/common] fallback flag is not found in font. true fallback flag must be only one.`
|
33
|
+
);
|
34
|
+
}
|
35
|
+
|
36
|
+
return fallbackFontName;
|
37
|
+
};
|
38
|
+
|
39
|
+
export const getDefaultFont = (): Font => ({
|
40
|
+
[DEFAULT_FONT_NAME]: { data: b64toUint8Array(DEFAULT_FONT_VALUE), fallback: true },
|
41
|
+
});
|
15
42
|
|
16
43
|
export const mm2pt = (mm: number): number => {
|
17
44
|
return parseFloat(String(mm)) * MM_TO_PT_RATIO;
|
@@ -32,7 +59,7 @@ const blob2Base64Pdf = (blob: Blob) => {
|
|
32
59
|
if ((reader.result as string).startsWith('data:application/pdf;')) {
|
33
60
|
resolve(reader.result as string);
|
34
61
|
} else {
|
35
|
-
reject(Error('template.basePdf must be pdf data.'));
|
62
|
+
reject(Error('[@pdfme/common] template.basePdf must be pdf data.'));
|
36
63
|
}
|
37
64
|
};
|
38
65
|
reader.readAsDataURL(blob);
|
@@ -68,6 +95,67 @@ export const b64toUint8Array = (base64: string) => {
|
|
68
95
|
return unit8arr;
|
69
96
|
};
|
70
97
|
|
98
|
+
const getFontNamesInSchemas = (schemas: { [key: string]: Schema }[]) =>
|
99
|
+
uniq(
|
100
|
+
schemas
|
101
|
+
.map((s) => Object.values(s).map((v) => (v as any).fontName ?? ''))
|
102
|
+
.reduce((acc, cur) => acc.concat(cur), [] as (string | undefined)[])
|
103
|
+
.filter(Boolean) as string[]
|
104
|
+
);
|
105
|
+
|
106
|
+
export const checkFont = (arg: { font: Font; template: Template }) => {
|
107
|
+
const {
|
108
|
+
font,
|
109
|
+
template: { schemas },
|
110
|
+
} = arg;
|
111
|
+
const fontValues = Object.values(font);
|
112
|
+
const fallbackFontNum = fontValues.reduce((acc, cur) => (cur.fallback ? acc + 1 : acc), 0);
|
113
|
+
if (fallbackFontNum === 0) {
|
114
|
+
throw Error(
|
115
|
+
`[@pdfme/common] fallback flag is not found in font. true fallback flag must be only one.
|
116
|
+
Check this document: https://pdfme.com/docs/custom-fonts#about-font-type`
|
117
|
+
);
|
118
|
+
}
|
119
|
+
if (fallbackFontNum > 1) {
|
120
|
+
throw Error(
|
121
|
+
`[@pdfme/common] ${fallbackFontNum} fallback flags found in font. true fallback flag must be only one.
|
122
|
+
Check this document: https://pdfme.com/docs/custom-fonts#about-font-type`
|
123
|
+
);
|
124
|
+
}
|
125
|
+
|
126
|
+
const fontNamesInSchemas = getFontNamesInSchemas(schemas);
|
127
|
+
const fontNames = Object.keys(font);
|
128
|
+
if (fontNamesInSchemas.some((f) => !fontNames.includes(f))) {
|
129
|
+
throw Error(
|
130
|
+
`[@pdfme/common] ${fontNamesInSchemas
|
131
|
+
.filter((f) => !fontNames.includes(f))
|
132
|
+
.join()} of template.schemas is not found in font.
|
133
|
+
Check this document: https://pdfme.com/docs/custom-fonts`
|
134
|
+
);
|
135
|
+
}
|
136
|
+
};
|
137
|
+
|
138
|
+
export const checkPlugins = (arg: { plugins: Plugins; template: Template }) => {
|
139
|
+
const {
|
140
|
+
plugins,
|
141
|
+
template: { schemas },
|
142
|
+
} = arg;
|
143
|
+
const allSchemaTypes = uniq(schemas.map((s) => Object.values(s).map((v) => v.type)).flat());
|
144
|
+
|
145
|
+
// text and image are builtin schema types so they are not included in plugins.
|
146
|
+
const exceptBuiltinSchemaTypes = allSchemaTypes.filter((t) => t !== 'text' && t !== 'image');
|
147
|
+
|
148
|
+
const pluginsSchemaTypes = Object.keys(plugins);
|
149
|
+
|
150
|
+
if (exceptBuiltinSchemaTypes.some((s) => !pluginsSchemaTypes.includes(s))) {
|
151
|
+
throw Error(
|
152
|
+
`[@pdfme/common] ${exceptBuiltinSchemaTypes
|
153
|
+
.filter((s) => !pluginsSchemaTypes.includes(s))
|
154
|
+
.join()} of template.schemas is not found in plugins.`
|
155
|
+
);
|
156
|
+
}
|
157
|
+
};
|
158
|
+
|
71
159
|
const checkProps = <T>(data: unknown, zodSchema: z.ZodType<T>) => {
|
72
160
|
try {
|
73
161
|
zodSchema.parse(data);
|
@@ -80,16 +168,26 @@ ERROR MESSAGE: ${issue.message}
|
|
80
168
|
);
|
81
169
|
|
82
170
|
const message = messages.join('\n');
|
83
|
-
throw Error(`Invalid argument:
|
171
|
+
throw Error(`[@pdfme/common] Invalid argument:
|
84
172
|
--------------------------
|
85
173
|
${message}`);
|
86
174
|
}
|
87
175
|
}
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
176
|
+
|
177
|
+
// Check fon if template and options exist
|
178
|
+
if (data && typeof data === 'object' && 'template' in data && 'options' in data) {
|
179
|
+
const { template, options } = data as { template: Template; options: { font?: Font } };
|
180
|
+
if (options && options.font) {
|
181
|
+
checkFont({ font: options.font, template });
|
182
|
+
}
|
183
|
+
}
|
184
|
+
|
185
|
+
// Check plugins if template and plugins exist
|
186
|
+
if (data && typeof data === 'object' && 'template' in data && 'plugins' in data) {
|
187
|
+
const { template, plugins } = data as { template: Template; plugins: Plugins };
|
188
|
+
if (plugins) {
|
189
|
+
checkPlugins({ plugins, template });
|
190
|
+
}
|
93
191
|
}
|
94
192
|
};
|
95
193
|
|
@@ -100,109 +198,3 @@ export const checkUIProps = (data: unknown) => checkProps(data, UIPropsSchema);
|
|
100
198
|
export const checkPreviewProps = (data: unknown) => checkProps(data, PreviewPropsSchema);
|
101
199
|
export const checkDesignerProps = (data: unknown) => checkProps(data, DesignerPropsSchema);
|
102
200
|
export const checkGenerateProps = (data: unknown) => checkProps(data, GeneratePropsSchema);
|
103
|
-
|
104
|
-
// GTIN-13, GTIN-8, GTIN-12, GTIN-14
|
105
|
-
const validateCheckDigit = (input: string, checkDigitPos: number) => {
|
106
|
-
let passCheckDigit = true;
|
107
|
-
|
108
|
-
if (input.length === checkDigitPos) {
|
109
|
-
const ds = input.slice(0, -1).replace(/[^0-9]/g, '');
|
110
|
-
let sum = 0;
|
111
|
-
let odd = 1;
|
112
|
-
for (let i = ds.length - 1; i > -1; i -= 1) {
|
113
|
-
sum += Number(ds[i]) * (odd ? 3 : 1);
|
114
|
-
odd ^= 1;
|
115
|
-
if (sum > 0xffffffffffff) {
|
116
|
-
// ~2^48 at max
|
117
|
-
sum %= 10;
|
118
|
-
}
|
119
|
-
}
|
120
|
-
passCheckDigit = String(10 - (sum % 10)).slice(-1) === input.slice(-1);
|
121
|
-
}
|
122
|
-
|
123
|
-
return passCheckDigit;
|
124
|
-
};
|
125
|
-
|
126
|
-
export const validateBarcodeInput = (type: BarCodeType, input: string) => {
|
127
|
-
if (!input) return false;
|
128
|
-
if (type === 'qrcode') {
|
129
|
-
// 500文字以下
|
130
|
-
return input.length < 500;
|
131
|
-
}
|
132
|
-
if (type === 'japanpost') {
|
133
|
-
// 郵便番号は数字(0-9)のみ。住所表示番号は英数字(0-9,A-Z)とハイフン(-)が使用可能です。
|
134
|
-
const regexp = /^(\d{7})(\d|[A-Z]|-)+$/;
|
135
|
-
|
136
|
-
return regexp.test(input);
|
137
|
-
}
|
138
|
-
if (type === 'ean13') {
|
139
|
-
// 有効文字は数値(0-9)のみ。チェックデジットを含まない12桁orチェックデジットを含む13桁。
|
140
|
-
const regexp = /^\d{12}$|^\d{13}$/;
|
141
|
-
|
142
|
-
return regexp.test(input) && validateCheckDigit(input, 13);
|
143
|
-
}
|
144
|
-
if (type === 'ean8') {
|
145
|
-
// 有効文字は数値(0-9)のみ。チェックデジットを含まない7桁orチェックデジットを含む8桁。
|
146
|
-
const regexp = /^\d{7}$|^\d{8}$/;
|
147
|
-
|
148
|
-
return regexp.test(input) && validateCheckDigit(input, 8);
|
149
|
-
}
|
150
|
-
if (type === 'code39') {
|
151
|
-
// 有効文字は数字(0-9)。アルファベット大文字(A-Z)、記号(-.$/+%)、半角スペース。
|
152
|
-
const regexp = /^(\d|[A-Z]|\-|\.|\$|\/|\+|\%|\s)+$/;
|
153
|
-
|
154
|
-
return regexp.test(input);
|
155
|
-
}
|
156
|
-
if (type === 'code128') {
|
157
|
-
// 有効文字は漢字、ひらがな、カタカナ以外。
|
158
|
-
// https://qiita.com/graminume/items/2ac8dd9c32277fa9da64
|
159
|
-
return !input.match(
|
160
|
-
/([\u30a0-\u30ff\u3040-\u309f\u3005-\u3006\u30e0-\u9fcf]|[A-Za-z0-9!"#$%&'()*+,-./:;<=>?@[\]^_`{|}〜 ])+/
|
161
|
-
);
|
162
|
-
}
|
163
|
-
if (type === 'nw7') {
|
164
|
-
// 有効文字はNW-7は数字(0-9)と記号(-.$:/+)。
|
165
|
-
// スタートコード/ストップコードとして、コードの始まりと終わりはアルファベット(A-D)のいずれかを使用してください。
|
166
|
-
const regexp = /^[A-Da-d]([0-9\-\.\$\:\/\+])+[A-Da-d]$/;
|
167
|
-
|
168
|
-
return regexp.test(input);
|
169
|
-
}
|
170
|
-
if (type === 'itf14') {
|
171
|
-
// 有効文字は数値(0-9)のみ。 チェックデジットを含まない13桁orチェックデジットを含む14桁。
|
172
|
-
const regexp = /^\d{13}$|^\d{14}$/;
|
173
|
-
|
174
|
-
return regexp.test(input) && validateCheckDigit(input, 14);
|
175
|
-
}
|
176
|
-
if (type === 'upca') {
|
177
|
-
// 有効文字は数値(0-9)のみ。 チェックデジットを含まない11桁orチェックデジットを含む12桁。
|
178
|
-
const regexp = /^\d{11}$|^\d{12}$/;
|
179
|
-
|
180
|
-
return regexp.test(input) && validateCheckDigit(input, 12);
|
181
|
-
}
|
182
|
-
if (type === 'upce') {
|
183
|
-
// 有効文字は数値(0-9)のみ。 1桁目に指定できる数字(ナンバーシステムキャラクタ)は0のみ。
|
184
|
-
// チェックデジットを含まない7桁orチェックデジットを含む8桁。
|
185
|
-
const regexp = /^0(\d{6}$|\d{7}$)/;
|
186
|
-
|
187
|
-
return regexp.test(input) && validateCheckDigit(input, 8);
|
188
|
-
}
|
189
|
-
if (type === 'gs1datamatrix') {
|
190
|
-
let ret = false;
|
191
|
-
// find the GTIN application identifier, regex for "(01)" and the digits after it until another "("
|
192
|
-
const regexp = /\((01)\)(\d*)(\(|$)/;
|
193
|
-
let res = input.match(regexp);
|
194
|
-
if (
|
195
|
-
res != null &&
|
196
|
-
input.length <= 52 && // 52 is the max length of a GS1 DataMatrix barcode before bwip-js throws an error
|
197
|
-
res[1] === '01' &&
|
198
|
-
(res[2].length === 14 || res[2].length === 8 || res[2].length === 12 || res[2].length === 13)
|
199
|
-
) {
|
200
|
-
let gtin = res[2];
|
201
|
-
ret = validateCheckDigit(gtin, gtin.length);
|
202
|
-
}
|
203
|
-
|
204
|
-
return ret;
|
205
|
-
}
|
206
|
-
|
207
|
-
return false;
|
208
|
-
};
|
package/src/index.ts
CHANGED
@@ -1,57 +1,40 @@
|
|
1
1
|
import {
|
2
|
-
DEFAULT_FONT_NAME,
|
3
|
-
DEFAULT_FONT_SIZE,
|
4
|
-
DEFAULT_ALIGNMENT,
|
5
|
-
VERTICAL_ALIGN_TOP,
|
6
|
-
VERTICAL_ALIGN_MIDDLE,
|
7
|
-
VERTICAL_ALIGN_BOTTOM,
|
8
|
-
DEFAULT_VERTICAL_ALIGNMENT,
|
9
|
-
DEFAULT_LINE_HEIGHT,
|
10
|
-
DEFAULT_CHARACTER_SPACING,
|
11
|
-
DEFAULT_FONT_COLOR,
|
12
|
-
DEFAULT_BARCODE_BG_COLOR,
|
13
|
-
DEFAULT_BARCODE_COLOR,
|
14
|
-
DYNAMIC_FIT_VERTICAL,
|
15
|
-
DYNAMIC_FIT_HORIZONTAL,
|
16
|
-
DEFAULT_DYNAMIC_FIT,
|
17
|
-
FONT_SIZE_ADJUSTMENT,
|
18
2
|
MM_TO_PT_RATIO,
|
19
3
|
PT_TO_MM_RATIO,
|
20
4
|
PT_TO_PX_RATIO,
|
21
5
|
BLANK_PDF,
|
22
|
-
|
6
|
+
ZOOM,
|
7
|
+
DEFAULT_FONT_NAME,
|
23
8
|
} from './constants.js';
|
24
|
-
import { createBarCode } from './barcode';
|
25
|
-
import { schemaTypes, isImageSchema, isBarcodeSchema, isTextSchema } from './type.js';
|
26
9
|
import type {
|
27
|
-
|
10
|
+
ChangeSchemas,
|
11
|
+
PropPanel,
|
12
|
+
PropPanelSchema,
|
13
|
+
PropPanelWidgetProps,
|
14
|
+
PDFRenderProps,
|
15
|
+
UIRenderProps,
|
16
|
+
Plugin,
|
28
17
|
Lang,
|
29
18
|
Size,
|
30
|
-
Alignment,
|
31
|
-
SchemaType,
|
32
|
-
BarCodeType,
|
33
|
-
TextSchema,
|
34
|
-
ImageSchema,
|
35
|
-
BarcodeSchema,
|
36
19
|
Schema,
|
37
|
-
SchemaInputs,
|
38
20
|
SchemaForUI,
|
39
21
|
Font,
|
40
22
|
BasePdf,
|
41
23
|
Template,
|
42
|
-
CommonProps,
|
43
24
|
GeneratorOptions,
|
25
|
+
Plugins,
|
44
26
|
GenerateProps,
|
45
27
|
UIOptions,
|
46
28
|
UIProps,
|
47
29
|
PreviewProps,
|
48
|
-
PreviewReactProps,
|
49
30
|
DesignerProps,
|
50
|
-
|
51
|
-
} from './type.js';
|
31
|
+
} from './types.js';
|
52
32
|
import {
|
33
|
+
getFallbackFontName,
|
34
|
+
getDefaultFont,
|
53
35
|
getB64BasePdf,
|
54
36
|
b64toUint8Array,
|
37
|
+
checkFont,
|
55
38
|
checkInputs,
|
56
39
|
checkUIOptions,
|
57
40
|
checkTemplate,
|
@@ -60,61 +43,25 @@ import {
|
|
60
43
|
checkDesignerProps,
|
61
44
|
checkGenerateProps,
|
62
45
|
mm2pt,
|
46
|
+
pt2mm,
|
63
47
|
pt2px,
|
64
|
-
validateBarcodeInput,
|
65
48
|
} from './helper.js';
|
66
|
-
import {
|
67
|
-
calculateDynamicFontSize,
|
68
|
-
getFallbackFontName,
|
69
|
-
getDefaultFont,
|
70
|
-
heightOfFontAtSize,
|
71
|
-
widthOfTextAtSize,
|
72
|
-
checkFont,
|
73
|
-
getFontKitFont,
|
74
|
-
getBrowserVerticalFontAdjustments,
|
75
|
-
getFontDescentInPt,
|
76
|
-
getSplittedLines,
|
77
|
-
} from './font.js';
|
78
49
|
|
79
50
|
export {
|
80
|
-
DEFAULT_FONT_NAME,
|
81
|
-
DEFAULT_FONT_SIZE,
|
82
|
-
DEFAULT_ALIGNMENT,
|
83
|
-
VERTICAL_ALIGN_TOP,
|
84
|
-
VERTICAL_ALIGN_MIDDLE,
|
85
|
-
VERTICAL_ALIGN_BOTTOM,
|
86
|
-
DEFAULT_VERTICAL_ALIGNMENT,
|
87
|
-
DEFAULT_LINE_HEIGHT,
|
88
|
-
DEFAULT_CHARACTER_SPACING,
|
89
|
-
DEFAULT_FONT_COLOR,
|
90
|
-
DEFAULT_BARCODE_BG_COLOR,
|
91
|
-
DEFAULT_BARCODE_COLOR,
|
92
|
-
DYNAMIC_FIT_VERTICAL,
|
93
|
-
DYNAMIC_FIT_HORIZONTAL,
|
94
|
-
DEFAULT_DYNAMIC_FIT,
|
95
|
-
FONT_SIZE_ADJUSTMENT,
|
96
51
|
MM_TO_PT_RATIO,
|
97
52
|
PT_TO_MM_RATIO,
|
98
53
|
PT_TO_PX_RATIO,
|
99
54
|
BLANK_PDF,
|
100
|
-
|
101
|
-
|
102
|
-
isTextSchema,
|
103
|
-
isImageSchema,
|
104
|
-
isBarcodeSchema,
|
105
|
-
getB64BasePdf,
|
106
|
-
b64toUint8Array,
|
55
|
+
ZOOM,
|
56
|
+
DEFAULT_FONT_NAME,
|
107
57
|
getFallbackFontName,
|
108
58
|
getDefaultFont,
|
109
|
-
|
110
|
-
|
111
|
-
widthOfTextAtSize,
|
59
|
+
getB64BasePdf,
|
60
|
+
b64toUint8Array,
|
112
61
|
mm2pt,
|
62
|
+
pt2mm,
|
113
63
|
pt2px,
|
114
64
|
checkFont,
|
115
|
-
getBrowserVerticalFontAdjustments,
|
116
|
-
getFontDescentInPt,
|
117
|
-
getFontKitFont,
|
118
65
|
checkInputs,
|
119
66
|
checkUIOptions,
|
120
67
|
checkTemplate,
|
@@ -122,34 +69,28 @@ export {
|
|
122
69
|
checkPreviewProps,
|
123
70
|
checkDesignerProps,
|
124
71
|
checkGenerateProps,
|
125
|
-
validateBarcodeInput,
|
126
|
-
calculateDynamicFontSize,
|
127
|
-
createBarCode
|
128
72
|
};
|
129
73
|
|
130
74
|
export type {
|
131
75
|
Lang,
|
132
76
|
Size,
|
133
|
-
Alignment,
|
134
|
-
SchemaType,
|
135
|
-
BarCodeType,
|
136
|
-
TextSchema,
|
137
|
-
ImageSchema,
|
138
|
-
BarcodeSchema,
|
139
77
|
Schema,
|
140
|
-
SchemaInputs,
|
141
78
|
SchemaForUI,
|
142
79
|
Font,
|
143
80
|
BasePdf,
|
144
81
|
Template,
|
145
|
-
CommonProps,
|
146
82
|
GeneratorOptions,
|
83
|
+
Plugins,
|
147
84
|
GenerateProps,
|
148
85
|
UIOptions,
|
149
86
|
UIProps,
|
150
87
|
PreviewProps,
|
151
|
-
PreviewReactProps,
|
152
88
|
DesignerProps,
|
153
|
-
|
154
|
-
|
89
|
+
ChangeSchemas,
|
90
|
+
PropPanel,
|
91
|
+
PropPanelSchema,
|
92
|
+
PropPanelWidgetProps,
|
93
|
+
PDFRenderProps,
|
94
|
+
UIRenderProps,
|
95
|
+
Plugin,
|
155
96
|
};
|
package/src/schema.ts
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
/* eslint dot-notation: "off"*/
|
2
1
|
import { z } from 'zod';
|
3
|
-
import { VERTICAL_ALIGN_TOP, VERTICAL_ALIGN_MIDDLE, VERTICAL_ALIGN_BOTTOM } from "./constants";
|
4
2
|
|
5
3
|
const langs = ['en', 'ja', 'ar', 'th', 'pl', 'it'] as const;
|
6
4
|
|
@@ -8,69 +6,22 @@ export const Lang = z.enum(langs);
|
|
8
6
|
|
9
7
|
export const Size = z.object({ height: z.number(), width: z.number() });
|
10
8
|
|
11
|
-
const
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
// prettier-ignore
|
22
|
-
export const barcodeSchemaTypes = ['qrcode', 'japanpost', 'ean13', 'ean8', 'code39', 'code128', 'nw7', 'itf14', 'upca', 'upce', 'gs1datamatrix'] as const;
|
23
|
-
const notBarcodeSchemaTypes = ['text', 'image'] as const;
|
24
|
-
export const schemaTypes = [...notBarcodeSchemaTypes, ...barcodeSchemaTypes] as const;
|
25
|
-
|
26
|
-
export const BarcodeSchemaType = z.enum(barcodeSchemaTypes);
|
27
|
-
export const SchemaType = z.enum(schemaTypes);
|
28
|
-
|
29
|
-
export const CommonSchema = z.object({
|
30
|
-
type: SchemaType,
|
31
|
-
position: z.object({ x: z.number(), y: z.number() }),
|
32
|
-
width: z.number(),
|
33
|
-
height: z.number(),
|
34
|
-
rotate: z.number().optional(),
|
35
|
-
});
|
36
|
-
|
37
|
-
export const TextSchema = CommonSchema.extend({
|
38
|
-
type: z.literal(SchemaType.Enum.text),
|
39
|
-
alignment: Alignment.optional(),
|
40
|
-
verticalAlignment: VerticalAlignment.optional(),
|
41
|
-
fontSize: z.number().optional(),
|
42
|
-
fontName: z.string().optional(),
|
43
|
-
fontColor: z.string().optional(),
|
44
|
-
backgroundColor: z.string().optional(),
|
45
|
-
characterSpacing: z.number().optional(),
|
46
|
-
lineHeight: z.number().optional(),
|
47
|
-
dynamicFontSize: z.object({
|
48
|
-
max: z.number(),
|
49
|
-
min: z.number(),
|
50
|
-
fit: z.string().optional(),
|
51
|
-
}).optional(),
|
52
|
-
});
|
53
|
-
|
54
|
-
export const ImageSchema = CommonSchema.extend({ type: z.literal(SchemaType.Enum.image) });
|
55
|
-
|
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
|
-
});
|
62
|
-
|
63
|
-
export const Schema = z.union([TextSchema, ImageSchema, BarcodeSchema]);
|
9
|
+
export const Schema = z
|
10
|
+
.object({
|
11
|
+
type: z.string(),
|
12
|
+
position: z.object({ x: z.number(), y: z.number() }),
|
13
|
+
width: z.number(),
|
14
|
+
height: z.number(),
|
15
|
+
rotate: z.number().optional(),
|
16
|
+
})
|
17
|
+
.passthrough();
|
64
18
|
|
65
19
|
const SchemaForUIAdditionalInfo = z.object({
|
66
|
-
id: z.string(),
|
20
|
+
id: z.string(),
|
21
|
+
key: z.string(),
|
22
|
+
data: z.string(),
|
67
23
|
});
|
68
|
-
|
69
|
-
export const SchemaForUI = z.union([
|
70
|
-
TextSchema.merge(SchemaForUIAdditionalInfo),
|
71
|
-
ImageSchema.merge(SchemaForUIAdditionalInfo),
|
72
|
-
BarcodeSchema.merge(SchemaForUIAdditionalInfo),
|
73
|
-
]);
|
24
|
+
export const SchemaForUI = Schema.merge(SchemaForUIAdditionalInfo);
|
74
25
|
|
75
26
|
const ArrayBufferSchema: z.ZodSchema<ArrayBuffer> = z.any().refine((v) => v instanceof ArrayBuffer);
|
76
27
|
const Uint8ArraySchema: z.ZodSchema<Uint8Array> = z.any().refine((v) => v instanceof Uint8Array);
|
@@ -94,25 +45,24 @@ export const Template = z.object({
|
|
94
45
|
|
95
46
|
export const Inputs = z.array(z.record(z.string())).min(1);
|
96
47
|
|
97
|
-
const CommonOptions = z.object({ font: Font.optional() });
|
48
|
+
const CommonOptions = z.object({ font: Font.optional() }).passthrough();
|
98
49
|
|
99
|
-
|
50
|
+
const CommonProps = z.object({
|
100
51
|
template: Template,
|
101
52
|
options: CommonOptions.optional(),
|
53
|
+
plugins: z.record(z.object({ ui: z.any(), pdf: z.any(), propPanel: z.any() })).optional(),
|
102
54
|
});
|
103
55
|
|
104
56
|
// -------------------generate-------------------
|
105
57
|
|
106
|
-
export const GeneratorOptions = CommonOptions;
|
58
|
+
export const GeneratorOptions = CommonOptions.extend({});
|
107
59
|
|
108
60
|
export const GenerateProps = CommonProps.extend({
|
109
61
|
inputs: Inputs,
|
110
62
|
options: GeneratorOptions.optional(),
|
111
63
|
}).strict();
|
112
64
|
|
113
|
-
|
114
|
-
|
115
|
-
// ---------------------------------------------
|
65
|
+
// ---------------------ui------------------------
|
116
66
|
|
117
67
|
export const UIOptions = CommonOptions.extend({ lang: Lang.optional() });
|
118
68
|
|
@@ -123,22 +73,6 @@ export const UIProps = CommonProps.extend({
|
|
123
73
|
options: UIOptions.optional(),
|
124
74
|
});
|
125
75
|
|
126
|
-
// -----------------Form, Viewer-----------------
|
127
|
-
|
128
76
|
export const PreviewProps = UIProps.extend({ inputs: Inputs }).strict();
|
129
|
-
export const PreviewReactProps = PreviewProps.omit({ domContainer: true }).extend({
|
130
|
-
onChangeInput: z
|
131
|
-
.function()
|
132
|
-
.args(z.object({ index: z.number(), value: z.string(), key: z.string() }))
|
133
|
-
.returns(z.void())
|
134
|
-
.optional(),
|
135
|
-
size: Size,
|
136
|
-
});
|
137
|
-
|
138
|
-
// ---------------Designer---------------
|
139
77
|
|
140
78
|
export const DesignerProps = UIProps.extend({}).strict();
|
141
|
-
export const DesignerReactProps = DesignerProps.omit({ domContainer: true }).extend({
|
142
|
-
onSaveTemplate: z.function().args(Template).returns(z.void()),
|
143
|
-
size: Size,
|
144
|
-
});
|