3d4c10ac
杨鑫
对接,标签产品
|
1
|
import React, { useEffect, useState } from 'react';
|
540ac0e3
杨鑫
前端修改bug
|
2
|
import { Building2, Check, Mail, Map, MapPin, Mailbox } from 'lucide-react';
|
884054fb
“wangming”
项目初始化
|
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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,
|
540ac0e3
杨鑫
前端修改bug
|
21
|
PrintOrientation,
|
884054fb
“wangming”
项目初始化
|
22
|
} from '../../../types/labelTemplate';
|
63289723
杨鑫
提交
|
23
24
|
import {
canonicalElementType,
|
540ac0e3
杨鑫
前端修改bug
|
25
|
isAutoGeneratedElement,
|
63289723
杨鑫
提交
|
26
|
isBlankSpaceElement,
|
540ac0e3
杨鑫
前端修改bug
|
27
|
isCompanyAutoElement,
|
63289723
杨鑫
提交
|
28
29
30
|
isTemplateSectionPersistedType,
NUTRITION_FIXED_ITEMS,
} from '../../../types/labelTemplate';
|
540ac0e3
杨鑫
前端修改bug
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import {
buildCompanyPrintFieldsConfigPatch,
COMPANY_PRINT_FIELD_OPTIONS,
readCompanyPrintFields,
type CompanyPrintFieldKey,
} from '../../../utils/companyPrintFields';
import { cn } from '../../ui/utils';
import { readInvertColors, isTextLikeElementForInvertColors } from '../../../utils/invertColorsConfig';
import {
type PreviewRulerDisplayUnit,
displayLengthToElementPx,
elementPxToDisplayLength,
formatPreviewRulerDisplayValue,
previewRulerUnitLabel,
} from '../../../utils/previewRulerUnits';
import { unitToPx } from '../../../utils/labelTemplateUnits';
|
63289723
杨鑫
提交
|
47
|
import { ImageUrlUpload } from '../../ui/image-url-upload';
|
3d4c10ac
杨鑫
对接,标签产品
|
48
49
|
import type { LabelMultipleOptionDto } from '../../../types/labelMultipleOption';
import { getLabelMultipleOptions } from '../../../services/labelMultipleOptionService';
|
0e27ddc8
杨鑫
标签
|
50
|
import { Checkbox } from '../../ui/checkbox';
|
3af4878d
杨鑫
产品 标签 关联
|
51
|
import { Trash2 } from 'lucide-react';
|
923d50c0
杨鑫
更新bug
|
52
53
54
55
56
|
import {
BARCODE_FORMAT_OPTIONS,
DEFAULT_BARCODE_FORMAT,
normalizeBarcodeType,
} from '../../../lib/barcodeFormat';
|
884054fb
“wangming”
项目初始化
|
57
|
|
58d2e61c
杨鑫
最新代码
|
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
|
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”
项目初始化
|
85
86
87
88
89
90
|
interface PropertiesPanelProps {
template: LabelTemplate;
selectedElement: LabelElement | null;
onTemplateChange: (patch: Partial<LabelTemplate>) => void;
onElementChange: (id: string, patch: Partial<LabelElement>) => void;
onDeleteElement?: (id: string) => void;
|
0e27ddc8
杨鑫
标签
|
91
92
|
/** 编辑已有模板时禁止修改 Template Code */
readOnlyTemplateCode?: boolean;
|
540ac0e3
杨鑫
前端修改bug
|
93
94
95
96
|
/** 与预览区标尺单位一致,用于 W/H 读数后缀 */
previewRulerUnit?: PreviewRulerDisplayUnit;
/** 竖打预览时 W/H 沿纸张坐标轴,不随预览旋转 */
printOrientation?: PrintOrientation;
|
884054fb
“wangming”
项目初始化
|
97
98
99
100
101
102
103
104
|
}
export function PropertiesPanel({
template,
selectedElement,
onTemplateChange,
onElementChange,
onDeleteElement,
|
0e27ddc8
杨鑫
标签
|
105
|
readOnlyTemplateCode = false,
|
540ac0e3
杨鑫
前端修改bug
|
106
|
previewRulerUnit = 'cm',
|
4cb354d4
杨鑫
提交
|
107
|
printOrientation = 'vertical',
|
884054fb
“wangming”
项目初始化
|
108
|
}: PropertiesPanelProps) {
|
699ea6e8
杨鑫
完善打印逻辑
|
109
110
111
|
void template;
void onTemplateChange;
void readOnlyTemplateCode;
|
884054fb
“wangming”
项目初始化
|
112
|
if (selectedElement) {
|
58d2e61c
杨鑫
最新代码
|
113
|
const isBlankElement = isBlankSpaceElement(selectedElement);
|
884054fb
“wangming”
项目初始化
|
114
|
return (
|
6ce07406
杨鑫
提交
|
115
116
|
<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">
|
884054fb
“wangming”
项目初始化
|
117
118
|
Properties (Element)
</div>
|
6ce07406
杨鑫
提交
|
119
120
|
<div className="min-h-0 flex-1 overflow-x-hidden overflow-y-auto overscroll-contain">
<div className="space-y-3 p-3">
|
884054fb
“wangming”
项目初始化
|
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
|
<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">
|
540ac0e3
杨鑫
前端修改bug
|
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
<ElementDimensionField
label="Width"
pxValue={selectedElement.width}
paperSizeTemplate={template.width}
templateUnit={template.unit}
displayUnit={previewRulerUnit}
onPxChange={(width) =>
onElementChange(selectedElement.id, {
width: Math.max(1, width),
})
}
/>
<ElementDimensionField
label="Height"
pxValue={selectedElement.height}
paperSizeTemplate={template.height}
templateUnit={template.unit}
displayUnit={previewRulerUnit}
onPxChange={(height) =>
onElementChange(selectedElement.id, {
height: Math.max(1, height),
})
}
/>
|
884054fb
“wangming”
项目初始化
|
174
|
</div>
|
4cb354d4
杨鑫
提交
|
175
|
{printOrientation === 'horizontal' ? (
|
540ac0e3
杨鑫
前端修改bug
|
176
|
<p className="text-[10px] leading-snug text-gray-500">
|
4cb354d4
杨鑫
提交
|
177
|
Width / Height follow paper axes (W×H), not the rotated preview. Switch to vertical to align with what you see on screen.
|
540ac0e3
杨鑫
前端修改bug
|
178
179
|
</p>
) : null}
|
58d2e61c
杨鑫
最新代码
|
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
|
{!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}
|
540ac0e3
杨鑫
前端修改bug
|
219
220
221
222
223
224
225
226
227
228
229
|
{!isBlankElement &&
isTextLikeElementForInvertColors(canonicalElementType(selectedElement.type)) ? (
<InvertColorsField
checked={readInvertColors(selectedElement.config as Record<string, unknown>)}
onChange={(v) =>
onElementChange(selectedElement.id, {
config: { ...selectedElement.config, invertColors: v },
})
}
/>
) : null}
|
143afd59
杨鑫
打印,标签
|
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
|
<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”
项目初始化
|
246
247
248
249
250
251
|
<ElementConfigFields
element={selectedElement}
onChange={(config) =>
onElementChange(selectedElement.id, { config: { ...selectedElement.config, ...config } })
}
/>
|
540ac0e3
杨鑫
前端修改bug
|
252
253
254
255
256
257
258
259
260
261
|
{isCompanyAutoElement(selectedElement) ? (
<CompanyPrintFieldsEditor
cfg={selectedElement.config as Record<string, unknown>}
onPatch={(patch) =>
onElementChange(selectedElement.id, {
config: { ...selectedElement.config, ...patch },
})
}
/>
) : null}
|
884054fb
“wangming”
项目初始化
|
262
263
264
265
|
{onDeleteElement && (
<div className="pt-4 border-t border-gray-100">
<Button
variant="destructive"
|
3af4878d
杨鑫
产品 标签 关联
|
266
|
className="w-full gap-2"
|
884054fb
“wangming”
项目初始化
|
267
268
|
onClick={() => onDeleteElement(selectedElement.id)}
>
|
3af4878d
杨鑫
产品 标签 关联
|
269
|
<Trash2 className="h-4 w-4 shrink-0" />
|
884054fb
“wangming”
项目初始化
|
270
271
272
273
274
|
Delete Element
</Button>
</div>
)}
</div>
|
6ce07406
杨鑫
提交
|
275
|
</div>
|
884054fb
“wangming”
项目初始化
|
276
277
278
279
280
|
</div>
);
}
return (
|
6ce07406
杨鑫
提交
|
281
282
|
<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">
|
699ea6e8
杨鑫
完善打印逻辑
|
283
|
Properties (Element)
|
884054fb
“wangming”
项目初始化
|
284
|
</div>
|
6ce07406
杨鑫
提交
|
285
|
<div className="min-h-0 flex-1 overflow-x-hidden overflow-y-auto overscroll-contain">
|
699ea6e8
杨鑫
完善打印逻辑
|
286
287
288
|
<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
杨鑫
标签
|
289
|
</div>
|
884054fb
“wangming”
项目初始化
|
290
|
</div>
|
6ce07406
杨鑫
提交
|
291
|
</div>
|
884054fb
“wangming”
项目初始化
|
292
293
294
295
|
</div>
);
}
|
3d4c10ac
杨鑫
对接,标签产品
|
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
|
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
杨鑫
打印,标签
|
312
|
getLabelMultipleOptions({ skipCount: 1, maxResultCount: 500 })
|
3d4c10ac
杨鑫
对接,标签产品
|
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
|
.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
杨鑫
打印,标签
|
334
335
336
337
338
339
340
341
342
343
344
345
|
/** 从服务端拉到的字典列表就绪后,为已绑定 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
杨鑫
对接,标签产品
|
346
347
348
349
350
351
352
353
354
355
|
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
杨鑫
打印,标签
|
356
|
onPatch({ multipleOptionId: '', multipleOptionName: '', selectedOptionValues: [] });
|
3d4c10ac
杨鑫
对接,标签产品
|
357
358
359
360
361
|
return;
}
const next = rows.find((r) => r.id === id);
const allowed = new Set(next?.optionValuesJson ?? []);
const filtered = selectedVals.filter((v) => allowed.has(v));
|
143afd59
杨鑫
打印,标签
|
362
363
364
365
366
367
|
const optName = String(next?.optionName ?? next?.optionCode ?? '').trim();
onPatch({
multipleOptionId: id,
multipleOptionName: optName,
selectedOptionValues: filtered,
});
|
3d4c10ac
杨鑫
对接,标签产品
|
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
|
}}
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}
</>
);
}
|
91821909
杨鑫
最新
|
417
|
const TEMPLATE_IMAGE_UPLOAD_SIZE_PX = 100;
|
63289723
杨鑫
提交
|
418
|
|
540ac0e3
杨鑫
前端修改bug
|
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
|
const COMPANY_PRINT_FIELD_ICONS: Record<
CompanyPrintFieldKey,
React.ComponentType<{ className?: string; strokeWidth?: number }>
> = {
address: MapPin,
city: Building2,
state: Map,
zip: Mailbox,
email: Mail,
};
function CompanyPrintFieldsEditor({
cfg,
onPatch,
}: {
cfg: Record<string, unknown>;
onPatch: (patch: Record<string, unknown>) => void;
}) {
const fields = readCompanyPrintFields(cfg);
const toggleField = (key: CompanyPrintFieldKey) => {
const nextFields = {
...fields,
[key]: !fields[key],
};
onPatch(buildCompanyPrintFieldsConfigPatch(nextFields));
};
return (
<div className="rounded-md border border-slate-200 bg-slate-50/80 p-2.5">
<Label className="text-xs font-medium text-gray-800">
Company info on label
</Label>
<p className="mt-0.5 text-[10px] leading-snug text-gray-500">
Company name is always printed. Select which fields to include on the label.
</p>
<div className="mt-2 grid grid-cols-2 gap-2">
{COMPANY_PRINT_FIELD_OPTIONS.map((item) => {
const Icon = COMPANY_PRINT_FIELD_ICONS[item.key];
const selected = fields[item.key];
return (
<button
key={item.key}
type="button"
onClick={() => toggleField(item.key)}
className={cn(
'relative flex min-h-[4.5rem] flex-col items-center justify-center gap-1 rounded-lg border p-2 text-center shadow-sm transition-colors',
selected
? 'border-blue-600 bg-blue-600 text-white'
: 'border-slate-200 bg-white hover:border-slate-300 hover:bg-slate-50',
)}
aria-pressed={selected}
>
{selected ? (
<span className="absolute right-1 top-1 flex h-4 w-4 items-center justify-center rounded-full bg-white/25 text-white">
<Check className="h-2.5 w-2.5" strokeWidth={3} />
</span>
) : null}
<Icon
className={cn('h-5 w-5 shrink-0', selected ? 'text-white' : 'text-rose-900')}
strokeWidth={1.5}
/>
<span
className={cn(
'text-[10px] leading-tight',
selected ? 'text-white' : 'text-gray-800',
)}
>
{item.label}
</span>
</button>
);
})}
</div>
</div>
);
}
function ElementDimensionField({
label,
pxValue,
paperSizeTemplate,
templateUnit,
displayUnit,
onPxChange,
}: {
label: string;
pxValue: number;
paperSizeTemplate: number;
templateUnit: Unit;
displayUnit: PreviewRulerDisplayUnit;
onPxChange: (px: number) => void;
}) {
const basePaperPx = unitToPx(Number(paperSizeTemplate) || 0, templateUnit);
const displayValue = elementPxToDisplayLength(
pxValue,
basePaperPx,
Number(paperSizeTemplate) || 0,
templateUnit,
displayUnit,
);
const unitLabel = previewRulerUnitLabel(displayUnit);
return (
<div>
<Label className="text-xs">{label}</Label>
<div className="mt-1 flex items-center gap-1.5">
<Input
type="number"
step={displayUnit === 'mm' ? 1 : displayUnit === 'inch' ? 0.0001 : 0.001}
value={formatPreviewRulerDisplayValue(displayValue, displayUnit)}
onChange={(e) => {
const nextDisplay = Number(e.target.value);
if (!Number.isFinite(nextDisplay)) return;
const nextPx = Math.round(
displayLengthToElementPx(
nextDisplay,
basePaperPx,
Number(paperSizeTemplate) || 0,
templateUnit,
displayUnit,
),
);
onPxChange(Math.max(1, nextPx));
}}
className="h-8 min-w-0 flex-1 text-sm"
/>
<span className="w-9 shrink-0 text-xs text-gray-500">{unitLabel}</span>
</div>
</div>
);
}
function InvertColorsField({
checked,
onChange,
}: {
checked: boolean;
onChange: (value: boolean) => void;
}) {
return (
<div className="flex items-center gap-2">
<Switch checked={checked} onCheckedChange={onChange} />
<Label className="text-xs">Invert colors</Label>
</div>
);
}
|
3d4c10ac
杨鑫
对接,标签产品
|
567
568
569
570
|
function TextStaticStyleFields({
cfg,
update,
textAlignDefault,
|
63289723
杨鑫
提交
|
571
|
primaryTextLabel,
|
540ac0e3
杨鑫
前端修改bug
|
572
|
hidePrimaryText = false,
|
3d4c10ac
杨鑫
对接,标签产品
|
573
574
575
576
|
}: {
cfg: Record<string, unknown>;
update: (key: string, value: unknown) => void;
textAlignDefault: string;
|
63289723
杨鑫
提交
|
577
578
|
/** Template 面板静态文案在属性里称 Value,其它分组仍用 Text */
primaryTextLabel?: 'Text' | 'Value';
|
540ac0e3
杨鑫
前端修改bug
|
579
580
|
/** Auto-generated 控件:文案由系统自动填充,隐藏 Text/Value 输入 */
hidePrimaryText?: boolean;
|
3d4c10ac
杨鑫
对接,标签产品
|
581
|
}) {
|
63289723
杨鑫
提交
|
582
|
const textLabel = primaryTextLabel ?? 'Text';
|
3d4c10ac
杨鑫
对接,标签产品
|
583
584
|
return (
<>
|
540ac0e3
杨鑫
前端修改bug
|
585
586
587
588
589
590
591
592
593
594
|
{!hidePrimaryText ? (
<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>
) : null}
|
3d4c10ac
杨鑫
对接,标签产品
|
595
|
<div>
|
3d4c10ac
杨鑫
对接,标签产品
|
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
|
<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
杨鑫
打印,标签
|
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
|
/** 读 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
杨鑫
最新代码
|
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
|
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”
项目初始化
|
691
692
693
694
695
696
697
698
|
function ElementConfigFields({
element,
onChange,
}: {
element: LabelElement;
onChange: (config: Record<string, unknown>) => void;
}) {
const cfg = element.config as Record<string, unknown>;
|
58d2e61c
杨鑫
最新代码
|
699
|
const elementType = canonicalElementType(element.type);
|
884054fb
“wangming”
项目初始化
|
700
701
|
const update = (key: string, value: unknown) =>
onChange({ [key]: value });
|
63289723
杨鑫
提交
|
702
703
|
const fromTemplatePalette = isTemplateSectionPersistedType(element);
const staticTextLabel = fromTemplatePalette ? ('Value' as const) : ('Text' as const);
|
540ac0e3
杨鑫
前端修改bug
|
704
|
const hidePrimaryText = isAutoGeneratedElement(element);
|
884054fb
“wangming”
项目初始化
|
705
|
|
58d2e61c
杨鑫
最新代码
|
706
|
switch (elementType) {
|
884054fb
“wangming”
项目初始化
|
707
|
case 'TEXT_STATIC':
|
3d4c10ac
杨鑫
对接,标签产品
|
708
709
710
711
|
if (cfg.inputType === 'options') {
return (
<>
<MultipleOptionsDictionaryFields cfg={cfg} onPatch={onChange} />
|
63289723
杨鑫
提交
|
712
713
714
715
716
|
<TextStaticStyleFields
cfg={cfg}
update={update}
textAlignDefault="left"
primaryTextLabel={staticTextLabel}
|
540ac0e3
杨鑫
前端修改bug
|
717
|
hidePrimaryText={hidePrimaryText}
|
63289723
杨鑫
提交
|
718
|
/>
|
3d4c10ac
杨鑫
对接,标签产品
|
719
720
721
|
</>
);
}
|
63289723
杨鑫
提交
|
722
723
724
725
726
727
|
return (
<TextStaticStyleFields
cfg={cfg}
update={update}
textAlignDefault="right"
primaryTextLabel={staticTextLabel}
|
540ac0e3
杨鑫
前端修改bug
|
728
|
hidePrimaryText={hidePrimaryText}
|
63289723
杨鑫
提交
|
729
730
|
/>
);
|
884054fb
“wangming”
项目初始化
|
731
732
|
case 'TEXT_PRODUCT':
case 'TEXT_PRICE':
|
540ac0e3
杨鑫
前端修改bug
|
733
734
735
736
737
738
739
740
|
return (
<TextStaticStyleFields
cfg={cfg}
update={update}
textAlignDefault="right"
hidePrimaryText={hidePrimaryText}
/>
);
|
884054fb
“wangming”
项目初始化
|
741
742
743
744
|
case 'BARCODE':
return (
<>
<div>
|
923d50c0
杨鑫
更新bug
|
745
|
<Label className="text-xs">Barcode Format</Label>
|
884054fb
“wangming”
项目初始化
|
746
|
<Select
|
923d50c0
杨鑫
更新bug
|
747
748
|
value={normalizeBarcodeType(cfg.barcodeType ?? DEFAULT_BARCODE_FORMAT)}
onValueChange={(v) => update('barcodeType', v)}
|
884054fb
“wangming”
项目初始化
|
749
750
751
752
753
|
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
|
923d50c0
杨鑫
更新bug
|
754
755
756
757
758
|
{BARCODE_FORMAT_OPTIONS.map((opt) => (
<SelectItem key={opt.value} value={opt.value}>
{opt.label}
</SelectItem>
))}
|
884054fb
“wangming”
项目初始化
|
759
760
761
|
</SelectContent>
</Select>
</div>
|
923d50c0
杨鑫
更新bug
|
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
|
<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 className="grid grid-cols-2 gap-2">
<div>
<Label className="text-xs">Font size</Label>
<Input
type="number"
min={8}
max={72}
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) ?? 'center'}
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>
</div>
<p className="text-[10px] text-gray-400 -mt-1">
Rotation and border use the common fields above.
</p>
|
abb6bea5
杨鑫
用户管理
|
802
803
804
805
806
807
808
|
<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”
项目初始化
|
809
810
811
812
813
814
815
|
</>
);
case 'QRCODE':
return (
<div>
<Label className="text-xs">Data (URL)</Label>
<Input
|
abb6bea5
杨鑫
用户管理
|
816
|
value={(cfg.data as string) ?? 'https://example.com'}
|
884054fb
“wangming”
项目初始化
|
817
818
819
820
821
|
onChange={(e) => update('data', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
);
|
63289723
杨鑫
提交
|
822
823
824
825
826
827
828
829
830
831
832
833
|
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
|
91821909
杨鑫
最新
|
834
|
boxSizePx={TEMPLATE_IMAGE_UPLOAD_SIZE_PX}
|
63289723
杨鑫
提交
|
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
|
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>
</>
);
}
|
abb6bea5
杨鑫
用户管理
|
857
858
859
|
return (
<>
<div>
|
143afd59
杨鑫
打印,标签
|
860
861
862
863
864
865
866
|
<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
杨鑫
用户管理
|
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
|
</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>
</>
);
|
63289723
杨鑫
提交
|
886
|
}
|
143afd59
杨鑫
打印,标签
|
887
888
889
|
case 'DATE': {
const inputTypeNorm = String(cfg.inputType ?? cfg.InputType ?? '').toLowerCase();
const isPrintDate = inputTypeNorm === 'datetime' || inputTypeNorm === 'date';
|
58d2e61c
杨鑫
最新代码
|
890
891
892
893
894
895
896
897
898
|
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
杨鑫
用户管理
|
899
900
901
902
|
return (
<>
<div>
<Label className="text-xs">Format</Label>
|
58d2e61c
杨鑫
最新代码
|
903
904
905
906
907
908
909
910
911
912
913
914
|
<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
杨鑫
打印,标签
|
915
916
917
918
919
|
{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
杨鑫
用户管理
|
920
921
|
</div>
<div>
|
58d2e61c
杨鑫
最新代码
|
922
|
<Label className="text-xs">Font Size</Label>
|
abb6bea5
杨鑫
用户管理
|
923
924
|
<Input
type="number"
|
58d2e61c
杨鑫
最新代码
|
925
926
|
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 14)}
onChange={(e) => update('fontSize', Number(e.target.value) || 14)}
|
abb6bea5
杨鑫
用户管理
|
927
928
929
|
className="h-8 text-sm mt-1"
/>
</div>
|
58d2e61c
杨鑫
最新代码
|
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
|
<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
杨鑫
用户管理
|
946
947
|
</>
);
|
143afd59
杨鑫
打印,标签
|
948
|
}
|
abb6bea5
杨鑫
用户管理
|
949
|
case 'TIME':
|
884054fb
“wangming”
项目初始化
|
950
|
return (
|
abb6bea5
杨鑫
用户管理
|
951
952
953
|
<>
<div>
<Label className="text-xs">Format</Label>
|
58d2e61c
杨鑫
最新代码
|
954
|
<Input value="HH:mm" className="h-8 text-sm mt-1" readOnly />
|
abb6bea5
杨鑫
用户管理
|
955
956
|
</div>
<div>
|
58d2e61c
杨鑫
最新代码
|
957
|
<Label className="text-xs">Font Size</Label>
|
abb6bea5
杨鑫
用户管理
|
958
959
|
<Input
type="number"
|
58d2e61c
杨鑫
最新代码
|
960
961
|
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 14)}
onChange={(e) => update('fontSize', Number(e.target.value) || 14)}
|
abb6bea5
杨鑫
用户管理
|
962
963
964
|
className="h-8 text-sm mt-1"
/>
</div>
|
58d2e61c
杨鑫
最新代码
|
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
|
<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
杨鑫
用户管理
|
981
982
|
</>
);
|
58d2e61c
杨鑫
最新代码
|
983
|
case 'DURATION':
|
abb6bea5
杨鑫
用户管理
|
984
985
986
|
return (
<>
<div>
|
58d2e61c
杨鑫
最新代码
|
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
|
<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
杨鑫
用户管理
|
1006
1007
|
<Input
type="number"
|
58d2e61c
杨鑫
最新代码
|
1008
1009
|
value={cfgPickNum(cfg, ['fontSize', 'FontSize'], 14)}
onChange={(e) => update('fontSize', Number(e.target.value) || 14)}
|
abb6bea5
杨鑫
用户管理
|
1010
1011
1012
1013
|
className="h-8 text-sm mt-1"
/>
</div>
<div>
|
58d2e61c
杨鑫
最新代码
|
1014
|
<Label className="text-xs">Text Align</Label>
|
abb6bea5
杨鑫
用户管理
|
1015
|
<Select
|
58d2e61c
杨鑫
最新代码
|
1016
1017
|
value={cfgPickStr(cfg, ['textAlign', 'TextAlign'], 'left')}
onValueChange={(v) => update('textAlign', v)}
|
abb6bea5
杨鑫
用户管理
|
1018
1019
1020
1021
1022
|
>
<SelectTrigger className="h-8 text-sm mt-1">
<SelectValue />
</SelectTrigger>
<SelectContent>
|
58d2e61c
杨鑫
最新代码
|
1023
1024
1025
|
<SelectItem value="left">Left</SelectItem>
<SelectItem value="center">Center</SelectItem>
<SelectItem value="right">Right</SelectItem>
|
abb6bea5
杨鑫
用户管理
|
1026
1027
1028
1029
1030
|
</SelectContent>
</Select>
</div>
</>
);
|
58d2e61c
杨鑫
最新代码
|
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
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
|
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
杨鑫
用户管理
|
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
|
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
杨鑫
最新代码
|
1118
|
value={(cfg.currency as string) ?? '$'}
|
abb6bea5
杨鑫
用户管理
|
1119
1120
1121
1122
1123
1124
1125
|
onChange={(e) => update('currency', e.target.value)}
className="h-8 text-sm mt-1"
/>
</div>
</>
);
case 'NUTRITION':
|
58d2e61c
杨鑫
最新代码
|
1126
1127
|
{
const extraRows = nutritionExtraRows(cfg);
|
4cb354d4
杨鑫
提交
|
1128
|
const applyFixedNutrientUnit = (key: string, nextUnit: string) => {
|
58d2e61c
杨鑫
最新代码
|
1129
|
const fixedRows = NUTRITION_FIXED_ITEMS.map((item) => {
|
4cb354d4
杨鑫
提交
|
1130
1131
1132
|
const unit =
nutritionFixedField(cfg, item.key, 'unit') || (item.defaultUnit ?? '');
return {
|
58d2e61c
杨鑫
最新代码
|
1133
1134
|
key: item.key,
label: item.label,
|
4cb354d4
杨鑫
提交
|
1135
1136
|
value: '',
unit: item.key === key ? nextUnit : unit,
|
58d2e61c
杨鑫
最新代码
|
1137
|
};
|
58d2e61c
杨鑫
最新代码
|
1138
1139
|
});
const keyPatch: Record<string, unknown> = { fixedNutrients: fixedRows };
|
4cb354d4
杨鑫
提交
|
1140
1141
1142
1143
|
for (const item of NUTRITION_FIXED_ITEMS) {
keyPatch[item.key] = '';
const row = fixedRows.find((r) => r.key === item.key);
if (row?.unit) keyPatch[`${item.key}Unit`] = row.unit;
|
58d2e61c
杨鑫
最新代码
|
1144
|
}
|
4cb354d4
杨鑫
提交
|
1145
1146
1147
|
keyPatch.calories = '';
keyPatch.servingsPerContainer = '';
keyPatch.servingSize = '';
|
58d2e61c
杨鑫
最新代码
|
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
|
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,
|
4cb354d4
杨鑫
提交
|
1166
|
field: 'name' | 'unit',
|
58d2e61c
杨鑫
最新代码
|
1167
1168
1169
|
nextValue: string,
) => {
const next = extraRows.map((item) =>
|
4cb354d4
杨鑫
提交
|
1170
|
item.id === id ? { ...item, [field]: nextValue, value: '' } : item,
|
58d2e61c
杨鑫
最新代码
|
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
|
);
update('extraNutrients', next);
};
const removeExtraNutrient = (id: string) => {
update(
'extraNutrients',
extraRows.filter((item) => item.id !== id),
);
};
return (
<>
<div>
|
4cb354d4
杨鑫
提交
|
1185
|
<Label className="text-xs">Nutrition Facts layout</Label>
|
58d2e61c
杨鑫
最新代码
|
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
|
<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>
|
58d2e61c
杨鑫
最新代码
|
1198
|
</div>
|
4cb354d4
杨鑫
提交
|
1199
1200
1201
|
<p className="text-[10px] text-gray-400 mt-2">
Servings, calories and nutrient values are entered when creating labels or in Bulk Add.
</p>
|
58d2e61c
杨鑫
最新代码
|
1202
1203
|
</div>
<div>
|
4cb354d4
杨鑫
提交
|
1204
|
<Label className="text-xs">Nutrition table structure</Label>
|
58d2e61c
杨鑫
最新代码
|
1205
|
<div className="space-y-1.5 mt-1">
|
4cb354d4
杨鑫
提交
|
1206
|
<div className="grid grid-cols-[1fr_58px_26px] gap-1.5 items-center text-[10px] text-gray-500 px-0.5">
|
58d2e61c
杨鑫
最新代码
|
1207
|
<span>Name</span>
|
58d2e61c
杨鑫
最新代码
|
1208
1209
1210
1211
|
<span>Unit</span>
<span />
</div>
{NUTRITION_FIXED_ITEMS.map((item) => (
|
4cb354d4
杨鑫
提交
|
1212
|
<div key={item.key} className="grid grid-cols-[1fr_58px_26px] gap-1.5 items-center">
|
58d2e61c
杨鑫
最新代码
|
1213
1214
|
<span className="text-xs text-gray-600">{item.label}</span>
<Input
|
58d2e61c
杨鑫
最新代码
|
1215
|
value={nutritionFixedField(cfg, item.key, 'unit') || (item.defaultUnit ?? '')}
|
4cb354d4
杨鑫
提交
|
1216
|
onChange={(e) => applyFixedNutrientUnit(item.key, e.target.value)}
|
58d2e61c
杨鑫
最新代码
|
1217
1218
1219
1220
1221
1222
|
className="h-8 text-sm"
placeholder="Unit"
/>
<span />
</div>
))}
|
4cb354d4
杨鑫
提交
|
1223
1224
|
{extraRows.map((row) => (
<div key={row.id} className="grid grid-cols-[1fr_58px_26px] gap-1.5 items-center">
|
58d2e61c
杨鑫
最新代码
|
1225
1226
1227
1228
|
<Input
value={row.name}
onChange={(e) => updateExtraNutrient(row.id, 'name', e.target.value)}
className="h-8 text-sm"
|
4cb354d4
杨鑫
提交
|
1229
|
placeholder="Nutrient name"
|
58d2e61c
杨鑫
最新代码
|
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
|
/>
<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>
|
4cb354d4
杨鑫
提交
|
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
|
))}
</div>
<Button
type="button"
variant="outline"
className="h-7 px-2 text-xs mt-2"
onClick={addExtraNutrient}
>
Add Nutrient
</Button>
<div className="text-[10px] text-gray-400 mt-2">
Unit is appended after the value when printing.
|
58d2e61c
杨鑫
最新代码
|
1259
1260
1261
1262
1263
|
</div>
</div>
</>
);
}
|
abb6bea5
杨鑫
用户管理
|
1264
1265
1266
|
case 'BLANK':
return (
<div className="text-xs text-gray-500">
|
0e27ddc8
杨鑫
标签
|
1267
|
Blank spacer; no configuration needed.
|
abb6bea5
杨鑫
用户管理
|
1268
1269
|
</div>
);
|
884054fb
“wangming”
项目初始化
|
1270
1271
1272
|
default:
return (
<div className="text-xs text-gray-500">
|
58d2e61c
杨鑫
最新代码
|
1273
|
Config for {elementType} (edit in code if needed)
|
884054fb
“wangming”
项目初始化
|
1274
1275
1276
1277
|
</div>
);
}
}
|