3d4c10ac
杨鑫
对接,标签产品
|
1
|
import React, { useEffect, useState } from 'react';
|
884054fb
“wangming”
项目初始化
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { ScrollArea } from '../../ui/scroll-area';
import { Input } from '../../ui/input';
import { Button } from '../../ui/button';
import { Label } from '../../ui/label';
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from '../../ui/select';
import { Switch } from '../../ui/switch';
import type {
LabelTemplate,
LabelElement,
|
884054fb
“wangming”
项目初始化
|
17
18
19
|
Unit,
Rotation,
Border,
|
58d2e61c
杨鑫
最新代码
|
20
|
NutritionExtraItem,
|
884054fb
“wangming”
项目初始化
|
21
|
} from '../../../types/labelTemplate';
|
58d2e61c
杨鑫
最新代码
|
22
|
import { canonicalElementType, isBlankSpaceElement, NUTRITION_FIXED_ITEMS } from '../../../types/labelTemplate';
|
3d4c10ac
杨鑫
对接,标签产品
|
23
24
|
import type { LabelMultipleOptionDto } from '../../../types/labelMultipleOption';
import { getLabelMultipleOptions } from '../../../services/labelMultipleOptionService';
|
0e27ddc8
杨鑫
标签
|
25
|
import { Checkbox } from '../../ui/checkbox';
|
3af4878d
杨鑫
产品 标签 关联
|
26
|
import { Trash2 } from 'lucide-react';
|
884054fb
“wangming”
项目初始化
|
27
|
|
58d2e61c
杨鑫
最新代码
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
const DATE_FORMAT_OPTIONS = [
'DD/MM/YYYY',
'MM/DD/YYYY',
'DD/MM/YY',
'MM/DD/YY',
'MM/YY',
'MM/DD',
'MM',
'DD',
'YY',
'FULLY DAY(WEDNESDAY)',
'DAY (WED)',
'MONTH (DECEMBER)',
'YEAR (2025)',
'DD MONTH YEAR (25 DECEMBER 2025)',
] as const;
const DATETIME_DEFAULT_FORMAT = 'YYYY-MM-DD HH:mm';
const DURATION_FORMAT_OPTIONS = [
'Minutes',
'Hours',
'Days',
'Weeks',
'Months (30 Day)',
'Years',
] as const;
|
884054fb
“wangming”
项目初始化
|
55
56
57
58
59
60
|
interface PropertiesPanelProps {
template: LabelTemplate;
selectedElement: LabelElement | null;
onTemplateChange: (patch: Partial<LabelTemplate>) => void;
onElementChange: (id: string, patch: Partial<LabelElement>) => void;
onDeleteElement?: (id: string) => void;
|
0e27ddc8
杨鑫
标签
|
61
62
|
/** 编辑已有模板时禁止修改 Template Code */
readOnlyTemplateCode?: boolean;
|
884054fb
“wangming”
项目初始化
|
63
64
65
66
67
68
69
70
|
}
export function PropertiesPanel({
template,
selectedElement,
onTemplateChange,
onElementChange,
onDeleteElement,
|
0e27ddc8
杨鑫
标签
|
71
|
readOnlyTemplateCode = false,
|
884054fb
“wangming”
项目初始化
|
72
|
}: PropertiesPanelProps) {
|
699ea6e8
杨鑫
完善打印逻辑
|
73
74
75
|
void template;
void onTemplateChange;
void readOnlyTemplateCode;
|
884054fb
“wangming”
项目初始化
|
76
|
if (selectedElement) {
|
58d2e61c
杨鑫
最新代码
|
77
|
const isBlankElement = isBlankSpaceElement(selectedElement);
|
884054fb
“wangming”
项目初始化
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
return (
<div className="w-72 shrink-0 border-l border-gray-200 bg-white flex flex-col h-full">
<div className="px-3 py-2 border-b border-gray-200 font-semibold text-gray-800">
Properties (Element)
</div>
<ScrollArea className="flex-1">
<div className="p-3 space-y-3">
<div className="grid grid-cols-2 gap-2">
<div>
<Label className="text-xs">X</Label>
<Input
type="number"
value={selectedElement.x}
onChange={(e) =>
onElementChange(selectedElement.id, {
x: Number(e.target.value) || 0,
})
}
className="h-8 text-sm"
/>
</div>
<div>
<Label className="text-xs">Y</Label>
<Input
type="number"
value={selectedElement.y}
onChange={(e) =>
onElementChange(selectedElement.id, {
y: Number(e.target.value) || 0,
})
}
className="h-8 text-sm"
/>
</div>
</div>
<div className="grid grid-cols-2 gap-2">
<div>
<Label className="text-xs">Width</Label>
<Input
type="number"
value={selectedElement.width}
onChange={(e) =>
onElementChange(selectedElement.id, {
width: Math.max(1, Number(e.target.value) || 0),
})
}
className="h-8 text-sm"
/>
</div>
<div>
<Label className="text-xs">Height</Label>
<Input
type="number"
value={selectedElement.height}
onChange={(e) =>
onElementChange(selectedElement.id, {
height: Math.max(1, Number(e.target.value) || 0),
})
}
className="h-8 text-sm"
/>
</div>
</div>
|
58d2e61c
杨鑫
最新代码
|
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
{!isBlankElement ? (
<div>
<Label className="text-xs">Rotation</Label>
<Select
value={selectedElement.rotation}
onValueChange={(v: Rotation) =>
onElementChange(selectedElement.id, { rotation: v })
}
>
<SelectTrigger className="h-8 text-sm">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="horizontal">horizontal</SelectItem>
<SelectItem value="vertical">vertical</SelectItem>
</SelectContent>
</Select>
</div>
) : null}
{!isBlankElement ? (
<div>
<Label className="text-xs">Border</Label>
<Select
value={selectedElement.border}
onValueChange={(v: Border) =>
onElementChange(selectedElement.id, { border: v })
}
>
<SelectTrigger className="h-8 text-sm">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="none">none</SelectItem>
<SelectItem value="line">line</SelectItem>
<SelectItem value="dotted">dotted</SelectItem>
</SelectContent>
</Select>
</div>
) : null}
|
143afd59
杨鑫
打印,标签
|
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
<div>
<Label className="text-xs">Element name</Label>
<Input
value={(selectedElement.elementName ?? "").trim()}
onChange={(e) =>
onElementChange(selectedElement.id, {
elementName: e.target.value,
})
}
className="h-8 text-sm mt-1"
placeholder="e.g. text1"
/>
<p className="text-[10px] text-gray-400 mt-1">
Required for save; used as data-entry column header (elementName).
</p>
</div>
|
884054fb
“wangming”
项目初始化
|
196
197
198
199
200
201
202
203
204
205
|
<ElementConfigFields
element={selectedElement}
onChange={(config) =>
onElementChange(selectedElement.id, { config: { ...selectedElement.config, ...config } })
}
/>
{onDeleteElement && (
<div className="pt-4 border-t border-gray-100">
<Button
variant="destructive"
|
3af4878d
杨鑫
产品 标签 关联
|
206
|
className="w-full gap-2"
|
884054fb
“wangming”
项目初始化
|
207
208
|
onClick={() => onDeleteElement(selectedElement.id)}
>
|
3af4878d
杨鑫
产品 标签 关联
|
209
|
<Trash2 className="h-4 w-4 shrink-0" />
|
884054fb
“wangming”
项目初始化
|
210
211
212
213
214
215
216
217
218
219
220
221
222
|
Delete Element
</Button>
</div>
)}
</div>
</ScrollArea>
</div>
);
}
return (
<div className="w-72 shrink-0 border-l border-gray-200 bg-white flex flex-col h-full">
<div className="px-3 py-2 border-b border-gray-200 font-semibold text-gray-800">
|
699ea6e8
杨鑫
完善打印逻辑
|
223
|
Properties (Element)
|
884054fb
“wangming”
项目初始化
|
224
225
|
</div>
<ScrollArea className="flex-1">
|
699ea6e8
杨鑫
完善打印逻辑
|
226
227
228
|
<div className="p-3">
<div className="rounded-md border border-blue-100 bg-blue-50/50 p-3 text-xs text-blue-900">
Select an element on the canvas to edit its properties.
|
0e27ddc8
杨鑫
标签
|
229
|
</div>
|
884054fb
“wangming”
项目初始化
|
230
231
232
233
234
235
|
</div>
</ScrollArea>
</div>
);
}
|
3d4c10ac
杨鑫
对接,标签产品
|
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
const MULTIPLE_OPTION_NONE = '__none__';
/** 绑定「Multiple Options」页维护的字典:先选字典,再在该字典的值列表中多选 */
function MultipleOptionsDictionaryFields({
cfg,
onPatch,
}: {
cfg: Record<string, unknown>;
onPatch: (patch: Record<string, unknown>) => void;
}) {
const [rows, setRows] = useState<LabelMultipleOptionDto[]>([]);
const [loading, setLoading] = useState(false);
useEffect(() => {
let cancelled = false;
setLoading(true);
|
143afd59
杨鑫
打印,标签
|
252
|
getLabelMultipleOptions({ skipCount: 1, maxResultCount: 500 })
|
3d4c10ac
杨鑫
对接,标签产品
|
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
|
.then((res) => {
if (!cancelled) setRows(res.items ?? []);
})
.catch(() => {
if (!cancelled) setRows([]);
})
.finally(() => {
if (!cancelled) setLoading(false);
});
return () => {
cancelled = true;
};
}, []);
const selectedId = ((cfg.multipleOptionId as string) ?? '').trim();
const selectedVals = Array.isArray(cfg.selectedOptionValues)
? (cfg.selectedOptionValues as string[])
: [];
const active = rows.find((r) => r.id === selectedId);
const valueList = active?.optionValuesJson ?? [];
|
143afd59
杨鑫
打印,标签
|
274
275
276
277
278
279
280
281
282
283
284
285
|
/** 从服务端拉到的字典列表就绪后,为已绑定 id 的旧模板补上 multipleOptionName,画布才能显示「名称:」前缀 */
useEffect(() => {
if (!selectedId || rows.length === 0) return;
const row = rows.find((r) => r.id === selectedId);
const name = String(row?.optionName ?? '').trim();
if (!row || !name) return;
const current = String(cfg.multipleOptionName ?? '').trim();
if (name !== current) {
onPatch({ multipleOptionName: name });
}
}, [selectedId, rows, cfg.multipleOptionName, onPatch]);
|
3d4c10ac
杨鑫
对接,标签产品
|
286
287
288
289
290
291
292
293
294
295
|
const selectValue = selectedId ? selectedId : MULTIPLE_OPTION_NONE;
return (
<>
<div>
<Label className="text-xs">Option dictionary</Label>
<Select
value={selectValue}
onValueChange={(id) => {
if (id === MULTIPLE_OPTION_NONE) {
|
143afd59
杨鑫
打印,标签
|
296
|
onPatch({ multipleOptionId: '', multipleOptionName: '', selectedOptionValues: [] });
|
3d4c10ac
杨鑫
对接,标签产品
|
297
298
299
300
301
|
return;
}
const next = rows.find((r) => r.id === id);
const allowed = new Set(next?.optionValuesJson ?? []);
const filtered = selectedVals.filter((v) => allowed.has(v));
|
143afd59
杨鑫
打印,标签
|
302
303
304
305
306
307
|
const optName = String(next?.optionName ?? next?.optionCode ?? '').trim();
onPatch({
multipleOptionId: id,
multipleOptionName: optName,
selectedOptionValues: filtered,
});
|
3d4c10ac
杨鑫
对接,标签产品
|
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
|
}}
disabled={loading}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue placeholder={loading ? 'Loading…' : 'Select from Multiple Options'} />
</SelectTrigger>
<SelectContent>
<SelectItem value={MULTIPLE_OPTION_NONE}>— None —</SelectItem>
{rows.map((o) => (
<SelectItem key={o.id} value={o.id}>
{(o.optionName ?? o.optionCode ?? o.id) as string}
</SelectItem>
))}
</SelectContent>
</Select>
<p className="text-[10px] text-gray-400 mt-1">
Data comes from the Multiple Options tab (label-multiple-option list).
</p>
</div>
{active && valueList.length > 0 ? (
<div>
<Label className="text-xs">Values (multi-select)</Label>
<div className="mt-1 max-h-44 overflow-y-auto border border-gray-200 rounded-md p-2 space-y-2 bg-gray-50/50">
{valueList.map((val) => (
<div key={val} className="flex items-center gap-2 min-w-0">
<Checkbox
className="shrink-0"
checked={selectedVals.includes(val)}
onCheckedChange={(checked) => {
const set = new Set(selectedVals);
if (checked) set.add(val);
else set.delete(val);
onPatch({ selectedOptionValues: Array.from(set) });
}}
/>
<span className="text-xs truncate" title={val}>
{val}
</span>
</div>
))}
</div>
</div>
) : selectedId ? (
<p className="text-[10px] text-amber-600">No values in this dictionary or still loading.</p>
) : null}
</>
);
}
function TextStaticStyleFields({
cfg,
update,
textAlignDefault,
}: {
cfg: Record<string, unknown>;
update: (key: string, value: unknown) => void;
textAlignDefault: string;
}) {
return (
<>
<div>
<Label className="text-xs">Text</Label>
<Input
value={(cfg.text as string) ?? '0.00'}
onChange={(e) => update('text', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
<div>
|
3d4c10ac
杨鑫
对接,标签产品
|
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
<Label className="text-xs">Font Size</Label>
<Input
type="number"
value={(cfg.fontSize as number) ?? 14}
onChange={(e) => update('fontSize', Number(e.target.value) || 14)}
className="h-8 text-sm mt-1"
/>
</div>
<div>
<Label className="text-xs">Text Align</Label>
<Select
value={(cfg.textAlign as string) ?? textAlignDefault}
onValueChange={(v) => update('textAlign', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="left">Left</SelectItem>
<SelectItem value="center">Center</SelectItem>
<SelectItem value="right">Right</SelectItem>
</SelectContent>
</Select>
</div>
</>
);
}
|
143afd59
杨鑫
打印,标签
|
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
/** 读 config(兼容后端 PascalCase、数字以字符串下发) */
function cfgPickStr(cfg: Record<string, unknown>, keys: string[], fallback: string): string {
for (const k of keys) {
const v = cfg[k];
if (v != null && String(v).trim() !== '') return String(v).trim();
}
return fallback;
}
function cfgPickNum(cfg: Record<string, unknown>, keys: string[], fallback: number): number {
for (const k of keys) {
const v = cfg[k];
if (v == null || v === '') continue;
const n = typeof v === 'number' ? v : Number(v);
if (Number.isFinite(n)) return n;
}
return fallback;
}
|
58d2e61c
杨鑫
最新代码
|
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
|
const WEIGHT_UNIT_OPTIONS: Array<{ value: string; label: string }> = [
{ value: 'lb', label: 'Lb' },
{ value: 'kg', label: 'Kg' },
{ value: 'mg', label: 'Milligrams' },
{ value: 'g', label: 'Grams' },
{ value: 'oz', label: 'Ounces' },
];
function normalizeWeightUnit(raw: unknown): string {
const unit = String(raw ?? '').trim().toLowerCase();
if (unit === 'milligrams') return 'mg';
if (unit === 'grams') return 'g';
if (unit === 'ounces') return 'oz';
if (unit === 'pounds') return 'lb';
if (unit === 'kilograms') return 'kg';
if (WEIGHT_UNIT_OPTIONS.some((item) => item.value === unit)) return unit;
return 'g';
}
function nutritionExtraRows(cfg: Record<string, unknown>): NutritionExtraItem[] {
const raw = cfg.extraNutrients;
if (!Array.isArray(raw)) return [];
return raw.map((item, idx) => {
const row = item as Record<string, unknown>;
return {
id: String(row.id ?? `extra-${idx}`),
name: String(row.name ?? ''),
value: String(row.value ?? ''),
unit: String(row.unit ?? ''),
};
});
}
function nutritionFixedField(
cfg: Record<string, unknown>,
key: string,
field: 'value' | 'unit',
): string {
const directKey = field === 'value' ? key : `${key}Unit`;
const direct = cfg[directKey];
if (direct != null && String(direct).trim() !== '') return String(direct).trim();
const fixedRows = Array.isArray(cfg.fixedNutrients)
? (cfg.fixedNutrients as Record<string, unknown>[])
: [];
const row = fixedRows.find((item) => String(item.key ?? '').trim() === key);
return String(row?.[field] ?? '').trim();
}
|
884054fb
“wangming”
项目初始化
|
472
473
474
475
476
477
478
479
|
function ElementConfigFields({
element,
onChange,
}: {
element: LabelElement;
onChange: (config: Record<string, unknown>) => void;
}) {
const cfg = element.config as Record<string, unknown>;
|
58d2e61c
杨鑫
最新代码
|
480
|
const elementType = canonicalElementType(element.type);
|
884054fb
“wangming”
项目初始化
|
481
482
483
|
const update = (key: string, value: unknown) =>
onChange({ [key]: value });
|
58d2e61c
杨鑫
最新代码
|
484
|
switch (elementType) {
|
884054fb
“wangming”
项目初始化
|
485
|
case 'TEXT_STATIC':
|
3d4c10ac
杨鑫
对接,标签产品
|
486
487
488
489
490
491
492
493
494
|
if (cfg.inputType === 'options') {
return (
<>
<MultipleOptionsDictionaryFields cfg={cfg} onPatch={onChange} />
<TextStaticStyleFields cfg={cfg} update={update} textAlignDefault="left" />
</>
);
}
return <TextStaticStyleFields cfg={cfg} update={update} textAlignDefault="right" />;
|
884054fb
“wangming”
项目初始化
|
495
496
|
case 'TEXT_PRODUCT':
case 'TEXT_PRICE':
|
3d4c10ac
杨鑫
对接,标签产品
|
497
|
return <TextStaticStyleFields cfg={cfg} update={update} textAlignDefault="right" />;
|
884054fb
“wangming”
项目初始化
|
498
499
500
501
502
503
|
case 'BARCODE':
return (
<>
<div>
<Label className="text-xs">Data</Label>
<Input
|
abb6bea5
杨鑫
用户管理
|
504
|
value={(cfg.data as string) ?? '123456789'}
|
884054fb
“wangming”
项目初始化
|
505
506
507
508
509
|
onChange={(e) => update('data', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
<div>
|
58d2e61c
杨鑫
最新代码
|
510
|
<Label className="text-xs">Orientation</Label>
|
884054fb
“wangming”
项目初始化
|
511
512
513
514
515
516
517
518
|
<Select
value={(cfg.orientation as string) ?? 'horizontal'}
onValueChange={(v) => update('orientation', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
|
58d2e61c
杨鑫
最新代码
|
519
520
|
<SelectItem value="horizontal">Horizontal</SelectItem>
<SelectItem value="vertical">Vertical</SelectItem>
|
884054fb
“wangming”
项目初始化
|
521
522
523
|
</SelectContent>
</Select>
</div>
|
abb6bea5
杨鑫
用户管理
|
524
525
526
527
528
529
530
|
<div className="flex items-center gap-2">
<Switch
checked={(cfg.showText as boolean) !== false}
onCheckedChange={(v) => update('showText', v)}
/>
<Label className="text-xs">Show Text</Label>
</div>
|
884054fb
“wangming”
项目初始化
|
531
532
533
534
535
536
537
|
</>
);
case 'QRCODE':
return (
<div>
<Label className="text-xs">Data (URL)</Label>
<Input
|
abb6bea5
杨鑫
用户管理
|
538
|
value={(cfg.data as string) ?? 'https://example.com'}
|
884054fb
“wangming”
项目初始化
|
539
540
541
542
543
|
onChange={(e) => update('data', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
);
|
abb6bea5
杨鑫
用户管理
|
544
545
546
547
|
case 'IMAGE':
return (
<>
<div>
|
143afd59
杨鑫
打印,标签
|
548
549
550
551
552
553
554
|
<Label className="text-xs">Image URL / path</Label>
<Input
value={(cfg.src as string) ?? ''}
onChange={(e) => update('src', e.target.value)}
className="h-8 text-sm mt-1"
placeholder="https://... or /picture/..."
/>
|
abb6bea5
杨鑫
用户管理
|
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
|
</div>
<div>
<Label className="text-xs">Scale Mode</Label>
<Select
value={(cfg.scaleMode as string) ?? 'contain'}
onValueChange={(v) => update('scaleMode', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="contain">Contain</SelectItem>
<SelectItem value="cover">Cover</SelectItem>
<SelectItem value="fill">Fill</SelectItem>
</SelectContent>
</Select>
</div>
</>
);
|
143afd59
杨鑫
打印,标签
|
574
575
576
|
case 'DATE': {
const inputTypeNorm = String(cfg.inputType ?? cfg.InputType ?? '').toLowerCase();
const isPrintDate = inputTypeNorm === 'datetime' || inputTypeNorm === 'date';
|
58d2e61c
杨鑫
最新代码
|
577
578
579
580
581
582
583
584
585
|
const dateFormat = cfgPickStr(
cfg,
['format', 'Format'],
inputTypeNorm === 'datetime' ? DATETIME_DEFAULT_FORMAT : 'DD/MM/YYYY',
);
const formatOptions =
inputTypeNorm === 'datetime'
? [DATETIME_DEFAULT_FORMAT, ...DATE_FORMAT_OPTIONS]
: [...DATE_FORMAT_OPTIONS];
|
abb6bea5
杨鑫
用户管理
|
586
587
588
589
|
return (
<>
<div>
<Label className="text-xs">Format</Label>
|
58d2e61c
杨鑫
最新代码
|
590
591
592
593
594
595
596
597
598
599
600
601
|
<Select value={dateFormat} onValueChange={(v) => update('format', v)}>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
{formatOptions.map((fmt) => (
<SelectItem key={fmt} value={fmt}>
{fmt}
</SelectItem>
))}
</SelectContent>
</Select>
|
143afd59
杨鑫
打印,标签
|
602
603
604
605
606
|
{isPrintDate ? (
<p className="text-[10px] text-gray-400 mt-1">
Shown as placeholder on the label until the app fills the date at print time.
</p>
) : null}
|
abb6bea5
杨鑫
用户管理
|
607
608
|
</div>
<div>
|
58d2e61c
杨鑫
最新代码
|
609
|
<Label className="text-xs">Font Size</Label>
|
abb6bea5
杨鑫
用户管理
|
610
611
|
<Input
type="number"
|
58d2e61c
杨鑫
最新代码
|
612
613
|
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 14)}
onChange={(e) => update('fontSize', Number(e.target.value) || 14)}
|
abb6bea5
杨鑫
用户管理
|
614
615
616
|
className="h-8 text-sm mt-1"
/>
</div>
|
58d2e61c
杨鑫
最新代码
|
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
|
<div>
<Label className="text-xs">Text Align</Label>
<Select
value={cfgPickStr(cfg, ['textAlign', 'TextAlign'], 'left')}
onValueChange={(v) => update('textAlign', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="left">Left</SelectItem>
<SelectItem value="center">Center</SelectItem>
<SelectItem value="right">Right</SelectItem>
</SelectContent>
</Select>
</div>
|
abb6bea5
杨鑫
用户管理
|
633
634
|
</>
);
|
143afd59
杨鑫
打印,标签
|
635
|
}
|
abb6bea5
杨鑫
用户管理
|
636
|
case 'TIME':
|
884054fb
“wangming”
项目初始化
|
637
|
return (
|
abb6bea5
杨鑫
用户管理
|
638
639
640
|
<>
<div>
<Label className="text-xs">Format</Label>
|
58d2e61c
杨鑫
最新代码
|
641
|
<Input value="HH:mm" className="h-8 text-sm mt-1" readOnly />
|
abb6bea5
杨鑫
用户管理
|
642
643
|
</div>
<div>
|
58d2e61c
杨鑫
最新代码
|
644
|
<Label className="text-xs">Font Size</Label>
|
abb6bea5
杨鑫
用户管理
|
645
646
|
<Input
type="number"
|
58d2e61c
杨鑫
最新代码
|
647
648
|
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 14)}
onChange={(e) => update('fontSize', Number(e.target.value) || 14)}
|
abb6bea5
杨鑫
用户管理
|
649
650
651
|
className="h-8 text-sm mt-1"
/>
</div>
|
58d2e61c
杨鑫
最新代码
|
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
|
<div>
<Label className="text-xs">Text Align</Label>
<Select
value={cfgPickStr(cfg, ['textAlign', 'TextAlign'], 'left')}
onValueChange={(v) => update('textAlign', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="left">Left</SelectItem>
<SelectItem value="center">Center</SelectItem>
<SelectItem value="right">Right</SelectItem>
</SelectContent>
</Select>
</div>
|
abb6bea5
杨鑫
用户管理
|
668
669
|
</>
);
|
58d2e61c
杨鑫
最新代码
|
670
|
case 'DURATION':
|
abb6bea5
杨鑫
用户管理
|
671
672
673
|
return (
<>
<div>
|
58d2e61c
杨鑫
最新代码
|
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
|
<Label className="text-xs">Format</Label>
<Select
value={cfgPickStr(cfg, ['format', 'Format'], 'Days')}
onValueChange={(v) => update('format', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
{DURATION_FORMAT_OPTIONS.map((fmt) => (
<SelectItem key={fmt} value={fmt}>
{fmt}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
<div>
<Label className="text-xs">Font Size</Label>
|
abb6bea5
杨鑫
用户管理
|
693
694
|
<Input
type="number"
|
58d2e61c
杨鑫
最新代码
|
695
696
|
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 14)}
onChange={(e) => update('fontSize', Number(e.target.value) || 14)}
|
abb6bea5
杨鑫
用户管理
|
697
698
699
700
|
className="h-8 text-sm mt-1"
/>
</div>
<div>
|
58d2e61c
杨鑫
最新代码
|
701
|
<Label className="text-xs">Text Align</Label>
|
abb6bea5
杨鑫
用户管理
|
702
|
<Select
|
58d2e61c
杨鑫
最新代码
|
703
704
|
value={cfgPickStr(cfg, ['textAlign', 'TextAlign'], 'left')}
onValueChange={(v) => update('textAlign', v)}
|
abb6bea5
杨鑫
用户管理
|
705
706
707
708
709
|
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
|
58d2e61c
杨鑫
最新代码
|
710
711
712
|
<SelectItem value="left">Left</SelectItem>
<SelectItem value="center">Center</SelectItem>
<SelectItem value="right">Right</SelectItem>
|
abb6bea5
杨鑫
用户管理
|
713
714
715
716
717
|
</SelectContent>
</Select>
</div>
</>
);
|
58d2e61c
杨鑫
最新代码
|
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
|
case 'WEIGHT':
{
const weightUnit = normalizeWeightUnit(cfgPickStr(cfg, ['unit', 'Unit'], 'g'));
const textAlign = cfgPickStr(cfg, ['textAlign', 'TextAlign'], 'left');
const fontSize = cfgPickNum(cfg, ['fontSize', 'FontSize'], 14);
return (
<>
<div>
<Label className="text-xs">Value</Label>
<Input
type="number"
value={cfgPickNum(cfg, ['value', 'Value'], 500)}
onChange={(e) => update('value', Number(e.target.value) || 0)}
className="h-8 text-sm mt-1"
/>
</div>
<div>
<Label className="text-xs">Unit</Label>
<Select
value={weightUnit}
onValueChange={(v) => update('unit', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
{WEIGHT_UNIT_OPTIONS.map((item) => (
<SelectItem key={item.value} value={item.value}>
{item.label}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
<div>
<Label className="text-xs">Font Size</Label>
<Input
type="number"
value={fontSize}
onChange={(e) => update('fontSize', Math.max(1, Number(e.target.value) || 14))}
className="h-8 text-sm mt-1"
/>
</div>
<div>
<Label className="text-xs">Text Align</Label>
<Select
value={textAlign}
onValueChange={(v) => update('textAlign', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="left">Left</SelectItem>
<SelectItem value="center">Center</SelectItem>
<SelectItem value="right">Right</SelectItem>
</SelectContent>
</Select>
</div>
</>
);
}
|
abb6bea5
杨鑫
用户管理
|
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
|
case 'WEIGHT_PRICE':
return (
<>
<div>
<Label className="text-xs">Unit Price</Label>
<Input
type="number"
value={(cfg.unitPrice as number) ?? 10}
onChange={(e) => update('unitPrice', Number(e.target.value) || 0)}
className="h-8 text-sm mt-1"
/>
</div>
<div>
<Label className="text-xs">Weight</Label>
<Input
type="number"
step="0.1"
value={(cfg.weight as number) ?? 0.5}
onChange={(e) => update('weight', Number(e.target.value) || 0)}
className="h-8 text-sm mt-1"
/>
</div>
<div>
<Label className="text-xs">Currency</Label>
<Input
|
58d2e61c
杨鑫
最新代码
|
805
|
value={(cfg.currency as string) ?? '$'}
|
abb6bea5
杨鑫
用户管理
|
806
807
808
809
810
811
812
|
onChange={(e) => update('currency', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
</>
);
case 'NUTRITION':
|
58d2e61c
杨鑫
最新代码
|
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
|
{
const extraRows = nutritionExtraRows(cfg);
const applyFixedNutrients = (
key: string,
field: 'value' | 'unit',
nextValue: string,
) => {
const fixedRows = NUTRITION_FIXED_ITEMS.map((item) => {
const current = {
key: item.key,
label: item.label,
value: nutritionFixedField(cfg, item.key, 'value'),
unit: nutritionFixedField(cfg, item.key, 'unit'),
};
if (item.key !== key) return current;
return { ...current, [field]: nextValue };
});
const keyPatch: Record<string, unknown> = { fixedNutrients: fixedRows };
const target = fixedRows.find((item) => item.key === key);
if (target) {
keyPatch[key] = target.value;
keyPatch[`${key}Unit`] = target.unit;
}
onChange(keyPatch);
};
const addExtraNutrient = () => {
const next: NutritionExtraItem[] = [
...extraRows,
{
id: `extra-${Date.now()}-${Math.random().toString(36).slice(2, 7)}`,
name: '',
value: '',
unit: '',
},
];
update('extraNutrients', next);
};
const updateExtraNutrient = (
id: string,
field: keyof NutritionExtraItem,
nextValue: string,
) => {
const next = extraRows.map((item) =>
item.id === id ? { ...item, [field]: nextValue } : item,
);
update('extraNutrients', next);
};
const removeExtraNutrient = (id: string) => {
update(
'extraNutrients',
extraRows.filter((item) => item.id !== id),
);
};
return (
<>
<div>
<Label className="text-xs">Nutrition summary</Label>
<div className="space-y-2 mt-1">
<div className="grid grid-cols-[1fr_90px] gap-2 items-center">
<span className="text-xs text-gray-600">Nutrition Facts title (px)</span>
<Input
type="number"
value={cfgPickNum(cfg, ['nutritionTitleFontSize', 'NutritionTitleFontSize'], 16)}
onChange={(e) =>
update('nutritionTitleFontSize', Math.max(10, Number(e.target.value) || 16))
}
className="h-8 text-sm"
/>
</div>
<div className="grid grid-cols-[1fr_90px] gap-2 items-center">
<span className="text-xs text-gray-600">Servings Per Container</span>
<Input
value={cfgPickStr(cfg, ['servingsPerContainer', 'ServingsPerContainer'], '')}
onChange={(e) => update('servingsPerContainer', e.target.value)}
className="h-8 text-sm"
placeholder="e.g. 8"
/>
</div>
<div className="grid grid-cols-[1fr_90px] gap-2 items-center">
<span className="text-xs text-gray-600">Serving Size</span>
<Input
value={cfgPickStr(cfg, ['servingSize', 'ServingSize'], '')}
onChange={(e) => update('servingSize', e.target.value)}
className="h-8 text-sm"
placeholder="e.g. 1 cup"
/>
</div>
<div className="grid grid-cols-[1fr_90px] gap-2 items-center">
<span className="text-xs text-gray-600">Calories</span>
<Input
value={cfgPickStr(cfg, ['calories', 'Calories'], '')}
onChange={(e) => update('calories', e.target.value)}
className="h-8 text-sm"
placeholder="e.g. 120"
/>
</div>
</div>
</div>
<div>
<div className="flex items-center justify-between mb-1">
<Label className="text-xs">Nutrition table</Label>
<Button type="button" variant="outline" className="h-7 px-2 text-xs" onClick={addExtraNutrient}>
Add nutrient
</Button>
</div>
<div className="space-y-1.5 mt-1">
<div className="grid grid-cols-[1fr_78px_58px_26px] gap-1.5 items-center text-[10px] text-gray-500 px-0.5">
<span>Name</span>
<span>Value</span>
<span>Unit</span>
<span />
</div>
{NUTRITION_FIXED_ITEMS.map((item) => (
<div key={item.key} className="grid grid-cols-[1fr_78px_58px_26px] gap-1.5 items-center">
<span className="text-xs text-gray-600">{item.label}</span>
<Input
value={nutritionFixedField(cfg, item.key, 'value')}
onChange={(e) =>
applyFixedNutrients(item.key, 'value', e.target.value)
}
className="h-8 text-sm"
placeholder="Value"
/>
<Input
value={nutritionFixedField(cfg, item.key, 'unit') || (item.defaultUnit ?? '')}
onChange={(e) =>
applyFixedNutrients(item.key, 'unit', e.target.value)
}
className="h-8 text-sm"
placeholder="Unit"
/>
<span />
</div>
))}
</div>
</div>
<div className="space-y-2">
{extraRows.length === 0 ? (
<p className="text-[10px] text-gray-400">No custom nutrients yet.</p>
) : (
extraRows.map((row) => (
<div key={row.id} className="grid grid-cols-[1fr_78px_58px_26px] gap-1.5 items-center">
<Input
value={row.name}
onChange={(e) => updateExtraNutrient(row.id, 'name', e.target.value)}
className="h-8 text-sm"
placeholder="Name"
/>
<Input
value={row.value}
onChange={(e) => updateExtraNutrient(row.id, 'value', e.target.value)}
className="h-8 text-sm"
placeholder="Value"
/>
<Input
value={row.unit}
onChange={(e) => updateExtraNutrient(row.id, 'unit', e.target.value)}
className="h-8 text-sm"
placeholder="Unit"
/>
<Button
type="button"
variant="ghost"
className="h-8 w-8 p-0 text-gray-500 hover:text-red-600"
onClick={() => removeExtraNutrient(row.id)}
aria-label="Delete nutrient"
>
<Trash2 className="h-3.5 w-3.5" />
</Button>
</div>
))
)}
<div className="text-[10px] text-gray-400">
Unit is appended after value in template preview.
</div>
</div>
</>
);
}
|
abb6bea5
杨鑫
用户管理
|
996
997
998
|
case 'BLANK':
return (
<div className="text-xs text-gray-500">
|
0e27ddc8
杨鑫
标签
|
999
|
Blank spacer; no configuration needed.
|
abb6bea5
杨鑫
用户管理
|
1000
1001
|
</div>
);
|
884054fb
“wangming”
项目初始化
|
1002
1003
1004
|
default:
return (
<div className="text-xs text-gray-500">
|
58d2e61c
杨鑫
最新代码
|
1005
|
Config for {elementType} (edit in code if needed)
|
884054fb
“wangming”
项目初始化
|
1006
1007
1008
1009
|
</div>
);
}
}
|