PropertiesPanel.tsx
37.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
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
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
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
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
805
806
807
808
809
810
811
812
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
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
import React, { useEffect, useState } from 'react';
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,
Unit,
Rotation,
Border,
NutritionExtraItem,
} from '../../../types/labelTemplate';
import {
canonicalElementType,
isBlankSpaceElement,
isTemplateSectionPersistedType,
NUTRITION_FIXED_ITEMS,
} from '../../../types/labelTemplate';
import { ImageUrlUpload } from '../../ui/image-url-upload';
import type { LabelMultipleOptionDto } from '../../../types/labelMultipleOption';
import { getLabelMultipleOptions } from '../../../services/labelMultipleOptionService';
import { Checkbox } from '../../ui/checkbox';
import { Trash2 } from 'lucide-react';
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;
interface PropertiesPanelProps {
template: LabelTemplate;
selectedElement: LabelElement | null;
onTemplateChange: (patch: Partial<LabelTemplate>) => void;
onElementChange: (id: string, patch: Partial<LabelElement>) => void;
onDeleteElement?: (id: string) => void;
/** 编辑已有模板时禁止修改 Template Code */
readOnlyTemplateCode?: boolean;
}
export function PropertiesPanel({
template,
selectedElement,
onTemplateChange,
onElementChange,
onDeleteElement,
readOnlyTemplateCode = false,
}: PropertiesPanelProps) {
void template;
void onTemplateChange;
void readOnlyTemplateCode;
if (selectedElement) {
const isBlankElement = isBlankSpaceElement(selectedElement);
return (
<div className="flex h-full min-h-0 w-full min-w-0 flex-col border-l border-gray-200 bg-white">
<div className="shrink-0 border-b border-gray-200 px-3 py-2 font-semibold text-gray-800">
Properties (Element)
</div>
<div className="min-h-0 flex-1 overflow-x-hidden overflow-y-auto overscroll-contain">
<div className="space-y-3 p-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>
{!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}
<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>
<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"
className="w-full gap-2"
onClick={() => onDeleteElement(selectedElement.id)}
>
<Trash2 className="h-4 w-4 shrink-0" />
Delete Element
</Button>
</div>
)}
</div>
</div>
</div>
);
}
return (
<div className="flex h-full min-h-0 w-full min-w-0 flex-col border-l border-gray-200 bg-white">
<div className="shrink-0 border-b border-gray-200 px-3 py-2 font-semibold text-gray-800">
Properties (Element)
</div>
<div className="min-h-0 flex-1 overflow-x-hidden overflow-y-auto overscroll-contain">
<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.
</div>
</div>
</div>
</div>
);
}
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);
getLabelMultipleOptions({ skipCount: 1, maxResultCount: 500 })
.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 ?? [];
/** 从服务端拉到的字典列表就绪后,为已绑定 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]);
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) {
onPatch({ multipleOptionId: '', multipleOptionName: '', selectedOptionValues: [] });
return;
}
const next = rows.find((r) => r.id === id);
const allowed = new Set(next?.optionValuesJson ?? []);
const filtered = selectedVals.filter((v) => allowed.has(v));
const optName = String(next?.optionName ?? next?.optionCode ?? '').trim();
onPatch({
multipleOptionId: id,
multipleOptionName: optName,
selectedOptionValues: filtered,
});
}}
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}
</>
);
}
const TEMPLATE_IMAGE_UPLOAD_BOX =
'box-border h-[150px] w-[150px] min-h-[150px] min-w-[150px] max-h-[150px] max-w-[150px] shrink-0';
function TextStaticStyleFields({
cfg,
update,
textAlignDefault,
primaryTextLabel,
}: {
cfg: Record<string, unknown>;
update: (key: string, value: unknown) => void;
textAlignDefault: string;
/** Template 面板静态文案在属性里称 Value,其它分组仍用 Text */
primaryTextLabel?: 'Text' | 'Value';
}) {
const textLabel = primaryTextLabel ?? 'Text';
return (
<>
<div>
<Label className="text-xs">{textLabel}</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>
<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>
</>
);
}
/** 读 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;
}
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();
}
function ElementConfigFields({
element,
onChange,
}: {
element: LabelElement;
onChange: (config: Record<string, unknown>) => void;
}) {
const cfg = element.config as Record<string, unknown>;
const elementType = canonicalElementType(element.type);
const update = (key: string, value: unknown) =>
onChange({ [key]: value });
const fromTemplatePalette = isTemplateSectionPersistedType(element);
const staticTextLabel = fromTemplatePalette ? ('Value' as const) : ('Text' as const);
switch (elementType) {
case 'TEXT_STATIC':
if (cfg.inputType === 'options') {
return (
<>
<MultipleOptionsDictionaryFields cfg={cfg} onPatch={onChange} />
<TextStaticStyleFields
cfg={cfg}
update={update}
textAlignDefault="left"
primaryTextLabel={staticTextLabel}
/>
</>
);
}
return (
<TextStaticStyleFields
cfg={cfg}
update={update}
textAlignDefault="right"
primaryTextLabel={staticTextLabel}
/>
);
case 'TEXT_PRODUCT':
case 'TEXT_PRICE':
return <TextStaticStyleFields cfg={cfg} update={update} textAlignDefault="right" />;
case 'BARCODE':
return (
<>
<div>
<Label className="text-xs">Data</Label>
<Input
value={(cfg.data as string) ?? '123456789'}
onChange={(e) => update('data', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
<div>
<Label className="text-xs">Orientation</Label>
<Select
value={(cfg.orientation as string) ?? 'horizontal'}
onValueChange={(v) => update('orientation', v)}
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="horizontal">Horizontal</SelectItem>
<SelectItem value="vertical">Vertical</SelectItem>
</SelectContent>
</Select>
</div>
<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>
</>
);
case 'QRCODE':
return (
<div>
<Label className="text-xs">Data (URL)</Label>
<Input
value={(cfg.data as string) ?? 'https://example.com'}
onChange={(e) => update('data', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
);
case 'IMAGE': {
if (fromTemplatePalette) {
const src = String(cfg.src ?? '').trim();
return (
<>
<div>
<Label className="text-xs">Image</Label>
<ImageUrlUpload
value={src}
onChange={(url) => update('src', url)}
uploadSubDir="label-template-editor"
oneImageOnly
boxClassName={TEMPLATE_IMAGE_UPLOAD_BOX}
hint="Stored in template; print uses this URL (empty if cleared)."
/>
</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>
</>
);
}
return (
<>
<div>
<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/..."
/>
</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>
</>
);
}
case 'DATE': {
const inputTypeNorm = String(cfg.inputType ?? cfg.InputType ?? '').toLowerCase();
const isPrintDate = inputTypeNorm === 'datetime' || inputTypeNorm === 'date';
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];
return (
<>
<div>
<Label className="text-xs">Format</Label>
<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>
{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}
</div>
<div>
<Label className="text-xs">Font Size</Label>
<Input
type="number"
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 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={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>
</>
);
}
case 'TIME':
return (
<>
<div>
<Label className="text-xs">Format</Label>
<Input value="HH:mm" className="h-8 text-sm mt-1" readOnly />
</div>
<div>
<Label className="text-xs">Font Size</Label>
<Input
type="number"
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 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={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>
</>
);
case 'DURATION':
return (
<>
<div>
<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>
<Input
type="number"
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 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={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>
</>
);
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>
</>
);
}
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
value={(cfg.currency as string) ?? '$'}
onChange={(e) => update('currency', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
</>
);
case 'NUTRITION':
{
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>
</>
);
}
case 'BLANK':
return (
<div className="text-xs text-gray-500">
Blank spacer; no configuration needed.
</div>
);
default:
return (
<div className="text-xs text-gray-500">
Config for {elementType} (edit in code if needed)
</div>
);
}
}