@voyantjs/products-ui 0.15.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/dist/components/option-unit-dialog.d.ts.map +1 -1
- package/dist/components/option-unit-dialog.js +7 -3
- package/dist/components/option-unit-form.d.ts.map +1 -1
- package/dist/components/option-unit-form.js +16 -9
- package/dist/components/product-category-combobox.d.ts.map +1 -1
- package/dist/components/product-category-combobox.js +6 -4
- package/dist/components/product-category-dialog.d.ts.map +1 -1
- package/dist/components/product-category-dialog.js +7 -3
- package/dist/components/product-category-form.d.ts.map +1 -1
- package/dist/components/product-category-form.js +8 -4
- package/dist/components/product-category-list.d.ts.map +1 -1
- package/dist/components/product-category-list.js +11 -5
- package/dist/components/product-day-dialog.d.ts.map +1 -1
- package/dist/components/product-day-dialog.js +7 -3
- package/dist/components/product-day-form.d.ts.map +1 -1
- package/dist/components/product-day-form.js +9 -3
- package/dist/components/product-itinerary-dialog.d.ts.map +1 -1
- package/dist/components/product-itinerary-dialog.js +13 -5
- package/dist/components/product-media-dialog.d.ts.map +1 -1
- package/dist/components/product-media-dialog.js +7 -3
- package/dist/components/product-media-form.d.ts.map +1 -1
- package/dist/components/product-media-form.js +16 -7
- package/dist/components/product-media-section.d.ts.map +1 -1
- package/dist/components/product-media-section.js +19 -11
- package/dist/components/product-option-dialog.d.ts.map +1 -1
- package/dist/components/product-option-dialog.js +7 -3
- package/dist/components/product-option-form.d.ts.map +1 -1
- package/dist/components/product-option-form.js +11 -8
- package/dist/components/product-options-section.d.ts.map +1 -1
- package/dist/components/product-options-section.js +17 -13
- package/dist/components/product-tag-dialog.d.ts.map +1 -1
- package/dist/components/product-tag-dialog.js +7 -3
- package/dist/components/product-tag-form.d.ts.map +1 -1
- package/dist/components/product-tag-form.js +7 -3
- package/dist/components/product-tag-list.d.ts.map +1 -1
- package/dist/components/product-tag-list.js +9 -5
- package/dist/components/product-type-combobox.d.ts +1 -1
- package/dist/components/product-type-combobox.d.ts.map +1 -1
- package/dist/components/product-type-combobox.js +6 -2
- package/dist/components/product-version-dialog.d.ts.map +1 -1
- package/dist/components/product-version-dialog.js +5 -3
- package/dist/components/product-versions-section.d.ts.map +1 -1
- package/dist/components/product-versions-section.js +7 -2
- package/dist/i18n/en.d.ts +402 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/en.js +401 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +3 -0
- package/dist/i18n/messages.d.ts +402 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/i18n/messages.js +1 -0
- package/dist/i18n/provider.d.ts +826 -0
- package/dist/i18n/provider.d.ts.map +1 -0
- package/dist/i18n/provider.js +44 -0
- package/dist/i18n/ro.d.ts +402 -0
- package/dist/i18n/ro.d.ts.map +1 -0
- package/dist/i18n/ro.js +401 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/package.json +27 -11
|
@@ -7,10 +7,10 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@voy
|
|
|
7
7
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@voyantjs/ui/components/table";
|
|
8
8
|
import { ImageIcon, Loader2, Pencil, Plus, Star, Trash2, Upload } from "lucide-react";
|
|
9
9
|
import * as React from "react";
|
|
10
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
10
11
|
import { ProductMediaDialog } from "./product-media-dialog";
|
|
11
|
-
export function ProductMediaSection({ productId, dayId, title =
|
|
12
|
-
|
|
13
|
-
: "Manage product-level media assets and cover selection.", compact = false, uploadMedia, uploadAccept = "image/*,video/*,application/pdf", }) {
|
|
12
|
+
export function ProductMediaSection({ productId, dayId, title, description, compact = false, uploadMedia, uploadAccept = "image/*,video/*,application/pdf", }) {
|
|
13
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
14
14
|
const [dialogOpen, setDialogOpen] = React.useState(false);
|
|
15
15
|
const [editingMedia, setEditingMedia] = React.useState();
|
|
16
16
|
const [isUploading, setIsUploading] = React.useState(false);
|
|
@@ -21,7 +21,15 @@ export function ProductMediaSection({ productId, dayId, title = dayId ? "Day med
|
|
|
21
21
|
const media = React.useMemo(() => (data?.data ?? [])
|
|
22
22
|
.slice()
|
|
23
23
|
.sort((left, right) => Number(right.isCover) - Number(left.isCover) || left.sortOrder - right.sortOrder), [data?.data]);
|
|
24
|
-
const
|
|
24
|
+
const resolvedTitle = title ??
|
|
25
|
+
(dayId
|
|
26
|
+
? messages.productMediaSection.titles.dayMedia
|
|
27
|
+
: messages.productMediaSection.titles.media);
|
|
28
|
+
const resolvedDescription = description ??
|
|
29
|
+
(dayId
|
|
30
|
+
? messages.productMediaSection.descriptions.dayMedia
|
|
31
|
+
: messages.productMediaSection.descriptions.media);
|
|
32
|
+
const header = (_jsxs("div", { className: "space-y-1", children: [_jsx(CardTitle, { className: compact ? "text-base" : undefined, children: resolvedTitle }), _jsx(CardDescription, { children: resolvedDescription })] }));
|
|
25
33
|
const handleUpload = async (file) => {
|
|
26
34
|
if (!uploadMedia)
|
|
27
35
|
return;
|
|
@@ -51,13 +59,13 @@ export function ProductMediaSection({ productId, dayId, title = dayId ? "Day med
|
|
|
51
59
|
});
|
|
52
60
|
}
|
|
53
61
|
catch (error) {
|
|
54
|
-
setUploadError(error instanceof Error ? error.message :
|
|
62
|
+
setUploadError(error instanceof Error ? error.message : messages.productMediaSection.uploadFailed);
|
|
55
63
|
}
|
|
56
64
|
finally {
|
|
57
65
|
setIsUploading(false);
|
|
58
66
|
}
|
|
59
67
|
};
|
|
60
|
-
const actions = (_jsxs("div", { className: "flex flex-wrap items-center gap-2", children: [uploadMedia ? (_jsxs(_Fragment, { children: [_jsxs(Button, { variant: compact ? "outline" : "secondary", disabled: isUploading, onClick: () => fileInputRef.current?.click(), children: [isUploading ? (_jsx(Loader2, { className: "mr-2 size-4 animate-spin", "aria-hidden": "true" })) : (_jsx(Upload, { className: "mr-2 size-4", "aria-hidden": "true" })),
|
|
68
|
+
const actions = (_jsxs("div", { className: "flex flex-wrap items-center gap-2", children: [uploadMedia ? (_jsxs(_Fragment, { children: [_jsxs(Button, { variant: compact ? "outline" : "secondary", disabled: isUploading, onClick: () => fileInputRef.current?.click(), children: [isUploading ? (_jsx(Loader2, { className: "mr-2 size-4 animate-spin", "aria-hidden": "true" })) : (_jsx(Upload, { className: "mr-2 size-4", "aria-hidden": "true" })), messages.productMediaSection.actions.upload] }), _jsx("input", { ref: fileInputRef, type: "file", accept: uploadAccept, className: "hidden", onChange: (event) => {
|
|
61
69
|
const file = event.target.files?.[0];
|
|
62
70
|
if (file) {
|
|
63
71
|
void handleUpload(file);
|
|
@@ -66,14 +74,14 @@ export function ProductMediaSection({ productId, dayId, title = dayId ? "Day med
|
|
|
66
74
|
} })] })) : null, _jsxs(Button, { onClick: () => {
|
|
67
75
|
setEditingMedia(undefined);
|
|
68
76
|
setDialogOpen(true);
|
|
69
|
-
}, children: [_jsx(Plus, { className: "mr-2 size-4", "aria-hidden": "true" }),
|
|
70
|
-
const body = (_jsxs(_Fragment, { children: [uploadError ? _jsx("p", { className: "text-sm text-destructive", children: uploadError }) : null, isPending ? (_jsx("div", { className: "flex min-h-24 items-center justify-center", children: _jsx(Loader2, { className: "size-4 animate-spin text-muted-foreground" }) })) : isError ? (_jsx("p", { className: "text-sm text-destructive", children:
|
|
77
|
+
}, children: [_jsx(Plus, { className: "mr-2 size-4", "aria-hidden": "true" }), messages.productMediaSection.actions.addMedia] })] }));
|
|
78
|
+
const body = (_jsxs(_Fragment, { children: [uploadError ? _jsx("p", { className: "text-sm text-destructive", children: uploadError }) : null, isPending ? (_jsx("div", { className: "flex min-h-24 items-center justify-center", children: _jsx(Loader2, { className: "size-4 animate-spin text-muted-foreground" }) })) : isError ? (_jsx("p", { className: "text-sm text-destructive", children: messages.productMediaSection.loadingError })) : media.length === 0 ? (_jsx("p", { className: "text-sm text-muted-foreground", children: messages.productMediaSection.empty })) : (_jsx("div", { className: "rounded-md border", children: _jsxs(Table, { children: [_jsx(TableHeader, { children: _jsxs(TableRow, { children: [_jsx(TableHead, { children: messages.productMediaSection.columns.name }), _jsx(TableHead, { children: messages.productMediaSection.columns.type }), _jsx(TableHead, { children: messages.productMediaSection.columns.url }), _jsx(TableHead, { children: messages.productMediaSection.columns.sort }), _jsx(TableHead, { className: "w-32" })] }) }), _jsx(TableBody, { children: media.map((item) => (_jsxs(TableRow, { children: [_jsx(TableCell, { children: _jsxs("div", { className: "flex items-center gap-2", children: [_jsx(ImageIcon, { className: "size-4 text-muted-foreground", "aria-hidden": "true" }), _jsxs("div", { children: [_jsx("div", { className: "font-medium", children: item.name }), item.altText ? (_jsx("div", { className: "text-xs text-muted-foreground", children: item.altText })) : null] }), item.isCover ? (_jsx(Badge, { children: messages.productMediaSection.coverBadge })) : null] }) }), _jsx(TableCell, { children: _jsx(Badge, { variant: "outline", children: messages.common.mediaTypeLabels[item.mediaType] }) }), _jsx(TableCell, { className: "max-w-[320px]", children: _jsx("a", { href: item.url, target: "_blank", rel: "noreferrer", className: "truncate text-sm text-primary underline-offset-4 hover:underline", children: item.url }) }), _jsx(TableCell, { children: item.sortOrder }), _jsx(TableCell, { children: _jsxs("div", { className: "flex items-center justify-end gap-1", children: [!item.isCover ? (_jsx(Button, { variant: "ghost", size: "icon-sm", onClick: () => setCover.mutate(item.id), "aria-label": messages.productMediaSection.actions.markCover, children: _jsx(Star, { className: "size-4", "aria-hidden": "true" }) })) : null, _jsx(Button, { variant: "ghost", size: "icon-sm", onClick: () => {
|
|
71
79
|
setEditingMedia(item);
|
|
72
80
|
setDialogOpen(true);
|
|
73
|
-
}, children: _jsx(Pencil, { className: "size-4", "aria-hidden": "true" }) }), _jsx(Button, { variant: "ghost", size: "icon-sm", onClick: () => {
|
|
74
|
-
if (confirm(
|
|
81
|
+
}, "aria-label": messages.productMediaSection.actions.edit, children: _jsx(Pencil, { className: "size-4", "aria-hidden": "true" }) }), _jsx(Button, { variant: "ghost", size: "icon-sm", onClick: () => {
|
|
82
|
+
if (confirm(messages.productMediaSection.deleteConfirm)) {
|
|
75
83
|
remove.mutate(item.id);
|
|
76
84
|
}
|
|
77
|
-
}, children: _jsx(Trash2, { className: "size-4", "aria-hidden": "true" }) })] }) })] }, item.id))) })] }) }))] }));
|
|
85
|
+
}, "aria-label": messages.productMediaSection.actions.delete, children: _jsx(Trash2, { className: "size-4", "aria-hidden": "true" }) })] }) })] }, item.id))) })] }) }))] }));
|
|
78
86
|
return (_jsxs(_Fragment, { children: [compact ? (_jsxs("div", { "data-slot": "product-media-section", className: "flex flex-col gap-3 rounded-md border bg-background p-3", children: [_jsxs("div", { className: "flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between", children: [header, actions] }), body] })) : (_jsxs(Card, { "data-slot": "product-media-section", children: [_jsxs(CardHeader, { className: "flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between", children: [header, actions] }), _jsx(CardContent, { children: body })] })), _jsx(ProductMediaDialog, { open: dialogOpen, onOpenChange: setDialogOpen, productId: productId, dayId: dayId, media: editingMedia, onSuccess: () => setEditingMedia(undefined) })] }));
|
|
79
87
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-option-dialog.d.ts","sourceRoot":"","sources":["../../src/components/product-option-dialog.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;
|
|
1
|
+
{"version":3,"file":"product-option-dialog.d.ts","sourceRoot":"","sources":["../../src/components/product-option-dialog.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;AAanE,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,OAAO,CAAA;IACb,YAAY,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;IACrC,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,CAAC,EAAE,mBAAmB,CAAA;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAA;CAClD;AAED,wBAAgB,mBAAmB,CAAC,EAClC,IAAI,EACJ,YAAY,EACZ,SAAS,EACT,MAAM,EACN,SAAS,EACT,SAAS,GACV,EAAE,wBAAwB,2CA8B1B"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
3
|
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@voyantjs/ui/components/dialog";
|
|
4
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
4
5
|
import { ProductOptionForm } from "./product-option-form";
|
|
5
6
|
export function ProductOptionDialog({ open, onOpenChange, productId, option, sortOrder, onSuccess, }) {
|
|
6
7
|
const isEdit = Boolean(option);
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
9
|
+
return (_jsx(Dialog, { open: open, onOpenChange: onOpenChange, children: _jsxs(DialogContent, { "data-slot": "product-option-dialog", className: "sm:max-w-[640px]", children: [_jsxs(DialogHeader, { children: [_jsx(DialogTitle, { children: isEdit
|
|
10
|
+
? messages.productOptionDialog.titles.edit
|
|
11
|
+
: messages.productOptionDialog.titles.create }), _jsx(DialogDescription, { children: isEdit
|
|
12
|
+
? messages.productOptionDialog.descriptions.edit
|
|
13
|
+
: messages.productOptionDialog.descriptions.create })] }), _jsx(ProductOptionForm, { mode: option ? { kind: "edit", option } : { kind: "create", productId, sortOrder }, onSuccess: (saved) => {
|
|
10
14
|
onSuccess?.(saved);
|
|
11
15
|
onOpenChange(false);
|
|
12
16
|
}, onCancel: () => onOpenChange(false) })] }) }));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-option-form.d.ts","sourceRoot":"","sources":["../../src/components/product-option-form.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,KAAK,mBAAmB,EAEzB,MAAM,0BAA0B,CAAA;
|
|
1
|
+
{"version":3,"file":"product-option-form.d.ts","sourceRoot":"","sources":["../../src/components/product-option-form.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,KAAK,mBAAmB,EAEzB,MAAM,0BAA0B,CAAA;AAmBjC,KAAK,IAAI,GACL;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,GACzD;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,mBAAmB,CAAA;CAAE,CAAA;AAEjD,MAAM,WAAW,sBAAsB;IACrC,IAAI,EAAE,IAAI,CAAA;IACV,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,IAAI,CAAA;IACjD,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;CACtB;AA2DD,wBAAgB,iBAAiB,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,sBAAsB,2CAwKtF"}
|
|
@@ -10,11 +10,8 @@ import { Switch } from "@voyantjs/ui/components/switch";
|
|
|
10
10
|
import { Textarea } from "@voyantjs/ui/components/textarea";
|
|
11
11
|
import { Loader2 } from "lucide-react";
|
|
12
12
|
import * as React from "react";
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
{ value: "active", label: "Active" },
|
|
16
|
-
{ value: "archived", label: "Archived" },
|
|
17
|
-
];
|
|
13
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
14
|
+
const OPTION_STATUSES = [{ value: "draft" }, { value: "active" }, { value: "archived" }];
|
|
18
15
|
function initialState(mode) {
|
|
19
16
|
if (mode.kind === "edit") {
|
|
20
17
|
return {
|
|
@@ -59,6 +56,7 @@ export function ProductOptionForm({ mode, onSuccess, onCancel }) {
|
|
|
59
56
|
const [state, setState] = React.useState(() => initialState(mode));
|
|
60
57
|
const [error, setError] = React.useState(null);
|
|
61
58
|
const { create, update } = useProductOptionMutation();
|
|
59
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
62
60
|
React.useEffect(() => {
|
|
63
61
|
setState(initialState(mode));
|
|
64
62
|
setError(null);
|
|
@@ -71,7 +69,7 @@ export function ProductOptionForm({ mode, onSuccess, onCancel }) {
|
|
|
71
69
|
event.preventDefault();
|
|
72
70
|
setError(null);
|
|
73
71
|
if (!state.name.trim()) {
|
|
74
|
-
setError(
|
|
72
|
+
setError(messages.productOptionForm.validation.nameRequired);
|
|
75
73
|
return;
|
|
76
74
|
}
|
|
77
75
|
try {
|
|
@@ -81,8 +79,13 @@ export function ProductOptionForm({ mode, onSuccess, onCancel }) {
|
|
|
81
79
|
onSuccess?.(option);
|
|
82
80
|
}
|
|
83
81
|
catch (err) {
|
|
84
|
-
setError(err instanceof Error ? err.message :
|
|
82
|
+
setError(err instanceof Error ? err.message : messages.productOptionForm.validation.saveFailed);
|
|
85
83
|
}
|
|
86
84
|
};
|
|
87
|
-
return (_jsxs("form", { "data-slot": "product-option-form", onSubmit: handleSubmit, className: "flex flex-col gap-4", children: [_jsxs("div", { className: "grid grid-cols-1 gap-4 sm:grid-cols-2", children: [_jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-option-name", children:
|
|
85
|
+
return (_jsxs("form", { "data-slot": "product-option-form", onSubmit: handleSubmit, className: "flex flex-col gap-4", children: [_jsxs("div", { className: "grid grid-cols-1 gap-4 sm:grid-cols-2", children: [_jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-option-name", children: messages.productOptionForm.fields.name }), _jsx(Input, { id: "product-option-name", required: true, autoFocus: true, value: state.name, onChange: (event) => field("name")(event.target.value), placeholder: messages.productOptionForm.placeholders.name })] }), _jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-option-code", children: messages.productOptionForm.fields.code }), _jsx(Input, { id: "product-option-code", value: state.code, onChange: (event) => field("code")(event.target.value), placeholder: messages.productOptionForm.placeholders.code })] })] }), _jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-option-description", children: messages.productOptionForm.fields.description }), _jsx(Textarea, { id: "product-option-description", value: state.description, onChange: (event) => field("description")(event.target.value), placeholder: messages.productOptionForm.placeholders.description })] }), _jsxs("div", { className: "grid grid-cols-1 gap-4 sm:grid-cols-2", children: [_jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { children: messages.productOptionForm.fields.status }), _jsxs(Select, { value: state.status, onValueChange: (value) => value && field("status")(value), items: OPTION_STATUSES.map((status) => ({
|
|
86
|
+
label: messages.common.optionStatusLabels[status.value],
|
|
87
|
+
value: status.value,
|
|
88
|
+
})), children: [_jsx(SelectTrigger, { className: "w-full", children: _jsx(SelectValue, {}) }), _jsx(SelectContent, { children: OPTION_STATUSES.map((status) => (_jsx(SelectItem, { value: status.value, children: messages.common.optionStatusLabels[status.value] }, status.value))) })] })] }), _jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-option-sort-order", children: messages.productOptionForm.fields.sortOrder }), _jsx(Input, { id: "product-option-sort-order", type: "number", value: state.sortOrder, onChange: (event) => field("sortOrder")(event.target.value) })] })] }), _jsxs("div", { className: "grid grid-cols-1 gap-4 sm:grid-cols-2", children: [_jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-option-available-from", children: messages.productOptionForm.fields.availableFrom }), _jsx(DatePicker, { value: state.availableFrom || null, onChange: (next) => field("availableFrom")(next ?? ""), placeholder: messages.productOptionForm.placeholders.availableFrom, className: "w-full" })] }), _jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-option-available-to", children: messages.productOptionForm.fields.availableTo }), _jsx(DatePicker, { value: state.availableTo || null, onChange: (next) => field("availableTo")(next ?? ""), placeholder: messages.productOptionForm.placeholders.availableTo, className: "w-full" })] })] }), _jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Switch, { checked: state.isDefault, onCheckedChange: (checked) => field("isDefault")(checked) }), _jsx(Label, { htmlFor: "product-option-default", children: messages.productOptionForm.fields.defaultOption })] }), error ? _jsx("p", { className: "text-sm text-destructive", children: error }) : null, _jsxs("div", { className: "flex items-center justify-end gap-2", children: [onCancel ? (_jsx(Button, { type: "button", variant: "ghost", onClick: onCancel, disabled: isSubmitting, children: messages.common.cancel })) : null, _jsxs(Button, { type: "submit", disabled: isSubmitting, children: [isSubmitting ? (_jsx(Loader2, { className: "mr-2 size-4 animate-spin", "aria-hidden": "true" })) : null, mode.kind === "create"
|
|
89
|
+
? messages.productOptionForm.actions.createOption
|
|
90
|
+
: messages.common.saveChanges] })] })] }));
|
|
88
91
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-options-section.d.ts","sourceRoot":"","sources":["../../src/components/product-options-section.tsx"],"names":[],"mappings":"AAGA,OAAO,EAEL,KAAK,mBAAmB,EAMzB,MAAM,0BAA0B,CAAA;AAmBjC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"product-options-section.d.ts","sourceRoot":"","sources":["../../src/components/product-options-section.tsx"],"names":[],"mappings":"AAGA,OAAO,EAEL,KAAK,mBAAmB,EAMzB,MAAM,0BAA0B,CAAA;AAmBjC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAoB9B,MAAM,WAAW,0BAA0B;IACzC,SAAS,EAAE,MAAM,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,mBAAmB,CAAC,EAAE,CAAC,MAAM,EAAE,mBAAmB,KAAK,KAAK,CAAC,SAAS,CAAA;CACvE;AAED,wBAAgB,qBAAqB,CAAC,EACpC,SAAS,EACT,QAAc,EACd,KAAK,EACL,WAAW,EACX,mBAAmB,GACpB,EAAE,0BAA0B,2CAoH5B"}
|
|
@@ -8,6 +8,7 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@voy
|
|
|
8
8
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@voyantjs/ui/components/table";
|
|
9
9
|
import { ChevronDown, ChevronRight, Copy, Loader2, Pencil, Plus, Trash2 } from "lucide-react";
|
|
10
10
|
import * as React from "react";
|
|
11
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
11
12
|
import { OptionUnitDialog } from "./option-unit-dialog";
|
|
12
13
|
import { ProductOptionDialog } from "./product-option-dialog";
|
|
13
14
|
const optionStatusVariant = {
|
|
@@ -21,7 +22,8 @@ function formatRange(min, max) {
|
|
|
21
22
|
}
|
|
22
23
|
return `${min ?? 0}–${max ?? "∞"}`;
|
|
23
24
|
}
|
|
24
|
-
export function ProductOptionsSection({ productId, pageSize = 100, title
|
|
25
|
+
export function ProductOptionsSection({ productId, pageSize = 100, title, description, renderOptionDetails, }) {
|
|
26
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
25
27
|
const [expandedOptionId, setExpandedOptionId] = React.useState(null);
|
|
26
28
|
const [dialogOpen, setDialogOpen] = React.useState(false);
|
|
27
29
|
const [editingOption, setEditingOption] = React.useState(undefined);
|
|
@@ -34,10 +36,12 @@ export function ProductOptionsSection({ productId, pageSize = 100, title = "Opti
|
|
|
34
36
|
const duplicatePricing = useDuplicateOptionPricingMutation();
|
|
35
37
|
const options = React.useMemo(() => (data?.data ?? []).slice().sort((a, b) => a.sortOrder - b.sortOrder), [data?.data]);
|
|
36
38
|
const nextSortOrder = options.length > 0 ? Math.max(...options.map((option) => option.sortOrder)) + 1 : 0;
|
|
37
|
-
|
|
39
|
+
const resolvedTitle = title ?? messages.productOptionsSection.titles.default;
|
|
40
|
+
const resolvedDescription = description ?? messages.productOptionsSection.descriptions.default;
|
|
41
|
+
return (_jsxs(Card, { "data-slot": "product-options-section", children: [_jsxs(CardHeader, { className: "flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between", children: [_jsxs("div", { className: "space-y-1", children: [_jsx(CardTitle, { children: resolvedTitle }), _jsx(CardDescription, { children: resolvedDescription })] }), _jsxs(Button, { onClick: () => {
|
|
38
42
|
setEditingOption(undefined);
|
|
39
43
|
setDialogOpen(true);
|
|
40
|
-
}, children: [_jsx(Plus, { className: "mr-2 size-4", "aria-hidden": "true" }),
|
|
44
|
+
}, children: [_jsx(Plus, { className: "mr-2 size-4", "aria-hidden": "true" }), messages.productOptionsSection.actions.addOption] })] }), _jsxs(CardContent, { className: "flex flex-col gap-3", children: [isPending ? (_jsx("div", { className: "flex min-h-24 items-center justify-center", children: _jsx(Loader2, { className: "size-4 animate-spin text-muted-foreground" }) })) : isError ? (_jsx("p", { className: "text-sm text-destructive", children: messages.productOptionsSection.loadingError.options })) : options.length === 0 ? (_jsx("p", { className: "text-sm text-muted-foreground", children: messages.productOptionsSection.empty.options })) : (options.map((option) => (_jsx(OptionRow, { option: option, expanded: expandedOptionId === option.id, onToggle: () => setExpandedOptionId((current) => (current === option.id ? null : option.id)), onEdit: () => {
|
|
41
45
|
setEditingOption(option);
|
|
42
46
|
setDialogOpen(true);
|
|
43
47
|
}, onDuplicate: () => {
|
|
@@ -52,35 +56,35 @@ export function ProductOptionsSection({ productId, pageSize = 100, title = "Opti
|
|
|
52
56
|
},
|
|
53
57
|
});
|
|
54
58
|
}, onDelete: () => {
|
|
55
|
-
if (confirm(
|
|
59
|
+
if (confirm(messages.productOptionsSection.deleteConfirm.option.replace("{name}", option.name))) {
|
|
56
60
|
remove.mutate(option.id);
|
|
57
61
|
}
|
|
58
|
-
}, children: renderOptionDetails?.(option) }, option.id)))), _jsx(ProductOptionDialog, { open: dialogOpen, onOpenChange: setDialogOpen, productId: productId, option: editingOption, sortOrder: nextSortOrder, onSuccess: () => {
|
|
62
|
+
}, messages: messages, children: renderOptionDetails?.(option) }, option.id)))), _jsx(ProductOptionDialog, { open: dialogOpen, onOpenChange: setDialogOpen, productId: productId, option: editingOption, sortOrder: nextSortOrder, onSuccess: () => {
|
|
59
63
|
setDialogOpen(false);
|
|
60
64
|
setEditingOption(undefined);
|
|
61
65
|
} })] })] }));
|
|
62
66
|
}
|
|
63
|
-
function OptionRow({ option, expanded, onToggle, onEdit, onDuplicate, onDelete, children, }) {
|
|
64
|
-
return (_jsxs("div", { className: "rounded-md border", children: [_jsxs("div", { className: "flex items-center gap-3 p-3", children: [_jsx("button", { type: "button", onClick: onToggle, className: "text-muted-foreground transition-colors hover:text-foreground", children: expanded ? _jsx(ChevronDown, { className: "size-4" }) : _jsx(ChevronRight, { className: "size-4" }) }), _jsxs("div", { className: "flex flex-1 flex-wrap items-center gap-2", children: [_jsx("span", { className: "text-sm font-medium", children: option.name }), option.code ? (_jsx("span", { className: "font-mono text-xs text-muted-foreground", children: option.code })) : null, _jsx(Badge, { variant: optionStatusVariant[option.status] ?? "outline",
|
|
67
|
+
function OptionRow({ option, expanded, onToggle, onEdit, onDuplicate, onDelete, messages, children, }) {
|
|
68
|
+
return (_jsxs("div", { className: "rounded-md border", children: [_jsxs("div", { className: "flex items-center gap-3 p-3", children: [_jsx("button", { type: "button", onClick: onToggle, className: "text-muted-foreground transition-colors hover:text-foreground", children: expanded ? _jsx(ChevronDown, { className: "size-4" }) : _jsx(ChevronRight, { className: "size-4" }) }), _jsxs("div", { className: "flex flex-1 flex-wrap items-center gap-2", children: [_jsx("span", { className: "text-sm font-medium", children: option.name }), option.code ? (_jsx("span", { className: "font-mono text-xs text-muted-foreground", children: option.code })) : null, _jsx(Badge, { variant: optionStatusVariant[option.status] ?? "outline", children: messages.common.optionStatusLabels[option.status] }), option.isDefault ? (_jsx(Badge, { variant: "secondary", children: messages.productOptionsSection.badges.defaultOption })) : null] }), _jsxs("div", { className: "flex items-center gap-1", children: [_jsx(Button, { variant: "ghost", size: "icon-sm", onClick: onDuplicate, "aria-label": messages.productOptionsSection.actions.duplicate, children: _jsx(Copy, { className: "size-4", "aria-hidden": "true" }) }), _jsx(Button, { variant: "ghost", size: "icon-sm", onClick: onEdit, "aria-label": messages.productOptionsSection.actions.edit, children: _jsx(Pencil, { className: "size-4", "aria-hidden": "true" }) }), _jsx(Button, { variant: "ghost", size: "icon-sm", onClick: onDelete, "aria-label": messages.productOptionsSection.actions.delete, children: _jsx(Trash2, { className: "size-4", "aria-hidden": "true" }) })] })] }), expanded ? (_jsxs("div", { className: "flex flex-col gap-4 border-t bg-muted/30 p-3", children: [_jsx(UnitsPanel, { optionId: option.id, messages: messages }), children] })) : null] }));
|
|
65
69
|
}
|
|
66
|
-
function UnitsPanel({ optionId }) {
|
|
70
|
+
function UnitsPanel({ optionId, messages, }) {
|
|
67
71
|
const [dialogOpen, setDialogOpen] = React.useState(false);
|
|
68
72
|
const [editingUnit, setEditingUnit] = React.useState(undefined);
|
|
69
73
|
const { data, isPending, isError } = useOptionUnits({ optionId, limit: 100 });
|
|
70
74
|
const { remove } = useOptionUnitMutation();
|
|
71
75
|
const units = React.useMemo(() => (data?.data ?? []).slice().sort((a, b) => a.sortOrder - b.sortOrder), [data?.data]);
|
|
72
76
|
const nextSortOrder = units.length > 0 ? Math.max(...units.map((unit) => unit.sortOrder)) + 1 : 0;
|
|
73
|
-
return (_jsxs("div", { className: "flex flex-col gap-3", children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("div", { children: [_jsx("p", { className: "text-xs font-medium uppercase tracking-wide text-muted-foreground", children:
|
|
77
|
+
return (_jsxs("div", { className: "flex flex-col gap-3", children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("div", { children: [_jsx("p", { className: "text-xs font-medium uppercase tracking-wide text-muted-foreground", children: messages.productOptionsSection.titles.units }), _jsx("p", { className: "text-xs text-muted-foreground", children: messages.productOptionsSection.descriptions.units })] }), _jsxs(Button, { variant: "outline", size: "sm", onClick: () => {
|
|
74
78
|
setEditingUnit(undefined);
|
|
75
79
|
setDialogOpen(true);
|
|
76
|
-
}, children: [_jsx(Plus, { className: "mr-2 size-3.5", "aria-hidden": "true" }),
|
|
80
|
+
}, children: [_jsx(Plus, { className: "mr-2 size-3.5", "aria-hidden": "true" }), messages.productOptionsSection.actions.addUnit] })] }), isPending ? (_jsx("div", { className: "flex min-h-20 items-center justify-center rounded-md border bg-background", children: _jsx(Loader2, { className: "size-4 animate-spin text-muted-foreground" }) })) : isError ? (_jsx("p", { className: "text-sm text-destructive", children: messages.productOptionsSection.loadingError.units })) : units.length === 0 ? (_jsx("p", { className: "rounded-md border bg-background px-3 py-4 text-sm text-muted-foreground", children: messages.productOptionsSection.empty.units })) : (_jsx("div", { className: "rounded-md border bg-background", children: _jsxs(Table, { children: [_jsx(TableHeader, { children: _jsxs(TableRow, { children: [_jsx(TableHead, { children: messages.productOptionsSection.columns.unitType }), _jsx(TableHead, { children: messages.productOptionsSection.columns.unitName }), _jsx(TableHead, { children: messages.productOptionsSection.columns.quantity }), _jsx(TableHead, { children: messages.productOptionsSection.columns.age }), _jsx(TableHead, { children: messages.productOptionsSection.columns.occupancy }), _jsx(TableHead, { className: "w-[88px] text-right", children: messages.productOptionsSection.columns.actions })] }) }), _jsx(TableBody, { children: units.map((unit) => (_jsxs(TableRow, { children: [_jsx(TableCell, { children: _jsx(Badge, { variant: "outline", children: messages.common.optionUnitTypeLabels[unit.unitType] }) }), _jsxs(TableCell, { children: [_jsx("div", { className: "font-medium", children: unit.name }), unit.code ? (_jsx("div", { className: "font-mono text-xs text-muted-foreground", children: unit.code })) : null] }), _jsx(TableCell, { className: "font-mono text-xs", children: formatRange(unit.minQuantity, unit.maxQuantity) }), _jsx(TableCell, { className: "font-mono text-xs", children: formatRange(unit.minAge, unit.maxAge) }), _jsx(TableCell, { className: "font-mono text-xs", children: formatRange(unit.occupancyMin, unit.occupancyMax) }), _jsx(TableCell, { className: "text-right", children: _jsxs("div", { className: "flex items-center justify-end gap-1", children: [_jsx(Button, { variant: "ghost", size: "icon-sm", onClick: () => {
|
|
77
81
|
setEditingUnit(unit);
|
|
78
82
|
setDialogOpen(true);
|
|
79
|
-
}, children: _jsx(Pencil, { className: "size-4", "aria-hidden": "true" }) }), _jsx(Button, { variant: "ghost", size: "icon-sm", onClick: () => {
|
|
80
|
-
if (confirm(
|
|
83
|
+
}, "aria-label": messages.productOptionsSection.actions.edit, children: _jsx(Pencil, { className: "size-4", "aria-hidden": "true" }) }), _jsx(Button, { variant: "ghost", size: "icon-sm", onClick: () => {
|
|
84
|
+
if (confirm(messages.productOptionsSection.deleteConfirm.unit.replace("{name}", unit.name))) {
|
|
81
85
|
remove.mutate(unit.id);
|
|
82
86
|
}
|
|
83
|
-
}, children: _jsx(Trash2, { className: "size-4", "aria-hidden": "true" }) })] }) })] }, unit.id))) })] }) })), _jsx(OptionUnitDialog, { open: dialogOpen, onOpenChange: setDialogOpen, optionId: optionId, unit: editingUnit, sortOrder: nextSortOrder, onSuccess: () => {
|
|
87
|
+
}, "aria-label": messages.productOptionsSection.actions.delete, children: _jsx(Trash2, { className: "size-4", "aria-hidden": "true" }) })] }) })] }, unit.id))) })] }) })), _jsx(OptionUnitDialog, { open: dialogOpen, onOpenChange: setDialogOpen, optionId: optionId, unit: editingUnit, sortOrder: nextSortOrder, onSuccess: () => {
|
|
84
88
|
setDialogOpen(false);
|
|
85
89
|
setEditingUnit(undefined);
|
|
86
90
|
} })] }));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-tag-dialog.d.ts","sourceRoot":"","sources":["../../src/components/product-tag-dialog.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;
|
|
1
|
+
{"version":3,"file":"product-tag-dialog.d.ts","sourceRoot":"","sources":["../../src/components/product-tag-dialog.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAahE,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,OAAO,CAAA;IACb,YAAY,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;IACrC,GAAG,CAAC,EAAE,gBAAgB,CAAA;IACtB,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;CAC5C;AAED,wBAAgB,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,GAAG,EAAE,SAAS,EAAE,EAAE,qBAAqB,2CA8B7F"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
3
|
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@voyantjs/ui/components/dialog";
|
|
4
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
4
5
|
import { ProductTagForm } from "./product-tag-form";
|
|
5
6
|
export function ProductTagDialog({ open, onOpenChange, tag, onSuccess }) {
|
|
6
7
|
const isEdit = Boolean(tag);
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
9
|
+
return (_jsx(Dialog, { open: open, onOpenChange: onOpenChange, children: _jsxs(DialogContent, { "data-slot": "product-tag-dialog", className: "sm:max-w-[480px]", children: [_jsxs(DialogHeader, { children: [_jsx(DialogTitle, { children: isEdit
|
|
10
|
+
? messages.productTagDialog.titles.edit
|
|
11
|
+
: messages.productTagDialog.titles.create }), _jsx(DialogDescription, { children: isEdit
|
|
12
|
+
? messages.productTagDialog.descriptions.edit
|
|
13
|
+
: messages.productTagDialog.descriptions.create })] }), _jsx(ProductTagForm, { mode: tag ? { kind: "edit", tag } : { kind: "create" }, onSuccess: (saved) => {
|
|
10
14
|
onSuccess?.(saved);
|
|
11
15
|
onOpenChange(false);
|
|
12
16
|
}, onCancel: () => onOpenChange(false) })] }) }));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-tag-form.d.ts","sourceRoot":"","sources":["../../src/components/product-tag-form.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,KAAK,gBAAgB,EAEtB,MAAM,0BAA0B,CAAA;
|
|
1
|
+
{"version":3,"file":"product-tag-form.d.ts","sourceRoot":"","sources":["../../src/components/product-tag-form.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,KAAK,gBAAgB,EAEtB,MAAM,0BAA0B,CAAA;AASjC,KAAK,IAAI,GAAG;IAAE,IAAI,EAAE,QAAQ,CAAA;CAAE,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,gBAAgB,CAAA;CAAE,CAAA;AAExE,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,IAAI,CAAA;IACV,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAA;CACtB;AAYD,wBAAgB,cAAc,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,mBAAmB,2CAkEhF"}
|
|
@@ -6,6 +6,7 @@ import { Input } from "@voyantjs/ui/components/input";
|
|
|
6
6
|
import { Label } from "@voyantjs/ui/components/label";
|
|
7
7
|
import { Loader2 } from "lucide-react";
|
|
8
8
|
import * as React from "react";
|
|
9
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
9
10
|
function initialState(mode) {
|
|
10
11
|
return {
|
|
11
12
|
name: mode.kind === "edit" ? mode.tag.name : "",
|
|
@@ -18,6 +19,7 @@ export function ProductTagForm({ mode, onSuccess, onCancel }) {
|
|
|
18
19
|
const [state, setState] = React.useState(() => initialState(mode));
|
|
19
20
|
const [error, setError] = React.useState(null);
|
|
20
21
|
const { create, update } = useProductTagMutation();
|
|
22
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
21
23
|
React.useEffect(() => {
|
|
22
24
|
setState(initialState(mode));
|
|
23
25
|
setError(null);
|
|
@@ -27,7 +29,7 @@ export function ProductTagForm({ mode, onSuccess, onCancel }) {
|
|
|
27
29
|
event.preventDefault();
|
|
28
30
|
setError(null);
|
|
29
31
|
if (!state.name.trim()) {
|
|
30
|
-
setError(
|
|
32
|
+
setError(messages.productTagForm.validation.nameRequired);
|
|
31
33
|
return;
|
|
32
34
|
}
|
|
33
35
|
try {
|
|
@@ -37,8 +39,10 @@ export function ProductTagForm({ mode, onSuccess, onCancel }) {
|
|
|
37
39
|
onSuccess?.(tag);
|
|
38
40
|
}
|
|
39
41
|
catch (err) {
|
|
40
|
-
setError(err instanceof Error ? err.message :
|
|
42
|
+
setError(err instanceof Error ? err.message : messages.productTagForm.validation.saveFailed);
|
|
41
43
|
}
|
|
42
44
|
};
|
|
43
|
-
return (_jsxs("form", { "data-slot": "product-tag-form", onSubmit: handleSubmit, className: "flex flex-col gap-4", children: [_jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-tag-name", children:
|
|
45
|
+
return (_jsxs("form", { "data-slot": "product-tag-form", onSubmit: handleSubmit, className: "flex flex-col gap-4", children: [_jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-tag-name", children: messages.productTagForm.fields.name }), _jsx(Input, { id: "product-tag-name", required: true, autoFocus: true, value: state.name, onChange: (event) => setState({ name: event.target.value }), placeholder: messages.productTagForm.placeholders.name })] }), error ? _jsx("p", { className: "text-sm text-destructive", children: error }) : null, _jsxs("div", { className: "flex items-center justify-end gap-2", children: [onCancel ? (_jsx(Button, { type: "button", variant: "ghost", onClick: onCancel, children: messages.common.cancel })) : null, _jsxs(Button, { type: "submit", disabled: isSubmitting, children: [isSubmitting ? (_jsx(Loader2, { className: "mr-2 size-4 animate-spin", "aria-hidden": "true" })) : null, mode.kind === "edit"
|
|
46
|
+
? messages.common.saveChanges
|
|
47
|
+
: messages.productTagForm.actions.createTag] })] })] }));
|
|
44
48
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-tag-list.d.ts","sourceRoot":"","sources":["../../src/components/product-tag-list.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"product-tag-list.d.ts","sourceRoot":"","sources":["../../src/components/product-tag-list.tsx"],"names":[],"mappings":"AA8BA,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAED,wBAAgB,cAAc,CAAC,EAAE,QAAc,EAAE,GAAE,mBAAwB,2CAkJ1E"}
|
|
@@ -7,6 +7,7 @@ import { Input } from "@voyantjs/ui/components/input";
|
|
|
7
7
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@voyantjs/ui/components/table";
|
|
8
8
|
import { Loader2, MoreHorizontal, Pencil, Plus, Search, Trash2 } from "lucide-react";
|
|
9
9
|
import * as React from "react";
|
|
10
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
10
11
|
import { ProductTagDialog } from "./product-tag-dialog";
|
|
11
12
|
export function ProductTagList({ pageSize = 200 } = {}) {
|
|
12
13
|
const [search, setSearch] = React.useState("");
|
|
@@ -19,22 +20,25 @@ export function ProductTagList({ pageSize = 200 } = {}) {
|
|
|
19
20
|
offset,
|
|
20
21
|
});
|
|
21
22
|
const { remove } = useProductTagMutation();
|
|
23
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
22
24
|
const tags = data?.data ?? [];
|
|
23
25
|
const total = data?.total ?? 0;
|
|
24
26
|
const page = Math.floor(offset / pageSize) + 1;
|
|
25
27
|
const pageCount = Math.max(1, Math.ceil(total / pageSize));
|
|
26
|
-
return (_jsxs("div", { "data-slot": "product-tag-list", className: "flex flex-col gap-4", children: [_jsxs("div", { className: "flex flex-wrap items-center justify-between gap-3", children: [_jsxs("div", { className: "relative w-full max-w-sm", children: [_jsx(Search, { className: "absolute left-3 top-1/2 size-4 -translate-y-1/2 text-muted-foreground" }), _jsx(Input, { placeholder:
|
|
28
|
+
return (_jsxs("div", { "data-slot": "product-tag-list", className: "flex flex-col gap-4", children: [_jsxs("div", { className: "flex flex-wrap items-center justify-between gap-3", children: [_jsxs("div", { className: "relative w-full max-w-sm", children: [_jsx(Search, { className: "absolute left-3 top-1/2 size-4 -translate-y-1/2 text-muted-foreground" }), _jsx(Input, { placeholder: messages.productTagList.searchPlaceholder, value: search, onChange: (event) => {
|
|
27
29
|
setSearch(event.target.value);
|
|
28
30
|
setOffset(0);
|
|
29
31
|
}, className: "pl-9" })] }), _jsxs(Button, { onClick: () => {
|
|
30
32
|
setEditing(undefined);
|
|
31
33
|
setDialogOpen(true);
|
|
32
|
-
}, children: [_jsx(Plus, { className: "mr-2 size-4", "aria-hidden": "true" }),
|
|
34
|
+
}, children: [_jsx(Plus, { className: "mr-2 size-4", "aria-hidden": "true" }), messages.productTagList.addTag] })] }), _jsx("div", { className: "rounded-md border", children: _jsxs(Table, { children: [_jsx(TableHeader, { children: _jsxs(TableRow, { children: [_jsx(TableHead, { children: messages.productTagList.columns.name }), _jsx(TableHead, { className: "w-[80px] text-right", children: messages.productTagList.columns.actions })] }) }), _jsx(TableBody, { children: isPending ? (_jsx(TableRow, { children: _jsx(TableCell, { colSpan: 2, className: "h-24 text-center", children: _jsx(Loader2, { className: "mx-auto size-4 animate-spin text-muted-foreground" }) }) })) : isError ? (_jsx(TableRow, { children: _jsx(TableCell, { colSpan: 2, className: "h-24 text-center text-sm text-destructive", children: messages.productTagList.loadingError }) })) : tags.length === 0 ? (_jsx(TableRow, { children: _jsx(TableCell, { colSpan: 2, className: "h-24 text-center text-sm text-muted-foreground", children: messages.productTagList.empty }) })) : (tags.map((tag) => (_jsxs(TableRow, { children: [_jsx(TableCell, { className: "font-medium", children: tag.name }), _jsx(TableCell, { className: "text-right", children: _jsxs(DropdownMenu, { children: [_jsx(DropdownMenuTrigger, { className: "inline-flex size-8 items-center justify-center rounded-md text-muted-foreground outline-hidden hover:bg-accent hover:text-accent-foreground", children: _jsx(MoreHorizontal, { className: "size-4" }) }), _jsxs(DropdownMenuContent, { align: "end", children: [_jsxs(DropdownMenuItem, { onClick: () => {
|
|
33
35
|
setEditing(tag);
|
|
34
36
|
setDialogOpen(true);
|
|
35
|
-
}, children: [_jsx(Pencil, { className: "size-4" }),
|
|
36
|
-
if (confirm(
|
|
37
|
+
}, children: [_jsx(Pencil, { className: "size-4" }), messages.productTagList.edit] }), _jsx(DropdownMenuSeparator, {}), _jsxs(DropdownMenuItem, { variant: "destructive", onClick: () => {
|
|
38
|
+
if (confirm(messages.productTagList.deleteConfirm)) {
|
|
37
39
|
remove.mutate(tag.id);
|
|
38
40
|
}
|
|
39
|
-
}, children: [_jsx(Trash2, { className: "size-4" }),
|
|
41
|
+
}, children: [_jsx(Trash2, { className: "size-4" }), messages.productTagList.delete] })] })] }) })] }, tag.id)))) })] }) }), _jsxs("div", { className: "flex items-center justify-between text-sm text-muted-foreground", children: [_jsx("span", { children: messages.productTagList.showingSummary
|
|
42
|
+
.replace("{count}", String(tags.length))
|
|
43
|
+
.replace("{total}", String(total)) }), _jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Button, { variant: "outline", size: "sm", disabled: offset === 0, onClick: () => setOffset((prev) => Math.max(0, prev - pageSize)), children: messages.common.previous }), _jsxs("span", { children: [messages.common.page, " ", page, " / ", pageCount] }), _jsx(Button, { variant: "outline", size: "sm", disabled: offset + pageSize >= total, onClick: () => setOffset((prev) => prev + pageSize), children: messages.common.next })] })] }), _jsx(ProductTagDialog, { open: dialogOpen, onOpenChange: setDialogOpen, tag: editing })] }));
|
|
40
44
|
}
|
|
@@ -4,6 +4,6 @@ type Props = {
|
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
};
|
|
7
|
-
export declare function ProductTypeCombobox({ value, onChange, placeholder, disabled
|
|
7
|
+
export declare function ProductTypeCombobox({ value, onChange, placeholder, disabled }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export {};
|
|
9
9
|
//# sourceMappingURL=product-type-combobox.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-type-combobox.d.ts","sourceRoot":"","sources":["../../src/components/product-type-combobox.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"product-type-combobox.d.ts","sourceRoot":"","sources":["../../src/components/product-type-combobox.tsx"],"names":[],"mappings":"AAcA,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IAChC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAA;IACxC,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AAID,wBAAgB,mBAAmB,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE,EAAE,KAAK,2CA0EpF"}
|
|
@@ -2,8 +2,10 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useProductType, useProductTypes } from "@voyantjs/products-react";
|
|
3
3
|
import { Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, } from "@voyantjs/ui/components/combobox";
|
|
4
4
|
import * as React from "react";
|
|
5
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
5
6
|
const PAGE_SIZE = 25;
|
|
6
|
-
export function ProductTypeCombobox({ value, onChange, placeholder
|
|
7
|
+
export function ProductTypeCombobox({ value, onChange, placeholder, disabled }) {
|
|
8
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
7
9
|
const [search, setSearch] = React.useState("");
|
|
8
10
|
const listQuery = useProductTypes({ active: true, search: search || undefined, limit: PAGE_SIZE });
|
|
9
11
|
const selectedQuery = useProductType(value, { enabled: !!value });
|
|
@@ -35,7 +37,9 @@ export function ProductTypeCombobox({ value, onChange, placeholder = "Search pro
|
|
|
35
37
|
onChange(id);
|
|
36
38
|
const item = id ? itemMap.get(id) : null;
|
|
37
39
|
setInputValue(item ? `${item.name} · ${item.code}` : "");
|
|
38
|
-
}, children: [_jsx(ComboboxInput, { placeholder: placeholder, showClear: !!value }), _jsxs(ComboboxContent, { children: [_jsx(ComboboxEmpty, { children: listQuery.isPending || selectedQuery.isPending
|
|
40
|
+
}, children: [_jsx(ComboboxInput, { placeholder: placeholder ?? messages.comboboxes.productType.placeholder, showClear: !!value }), _jsxs(ComboboxContent, { children: [_jsx(ComboboxEmpty, { children: listQuery.isPending || selectedQuery.isPending
|
|
41
|
+
? messages.common.loading
|
|
42
|
+
: messages.comboboxes.productType.empty }), _jsx(ComboboxList, { children: _jsx(ComboboxCollection, { children: (id) => {
|
|
39
43
|
const item = itemMap.get(id);
|
|
40
44
|
if (!item)
|
|
41
45
|
return null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-version-dialog.d.ts","sourceRoot":"","sources":["../../src/components/product-version-dialog.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"product-version-dialog.d.ts","sourceRoot":"","sources":["../../src/components/product-version-dialog.tsx"],"names":[],"mappings":"AAkBA,MAAM,WAAW,yBAAyB;IACxC,IAAI,EAAE,OAAO,CAAA;IACb,YAAY,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;IACrC,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAA;CACvB;AAED,wBAAgB,oBAAoB,CAAC,EACnC,IAAI,EACJ,YAAY,EACZ,SAAS,EACT,SAAS,GACV,EAAE,yBAAyB,2CAqE3B"}
|
|
@@ -7,17 +7,19 @@ import { Label } from "@voyantjs/ui/components/label";
|
|
|
7
7
|
import { Textarea } from "@voyantjs/ui/components/textarea";
|
|
8
8
|
import { Loader2 } from "lucide-react";
|
|
9
9
|
import * as React from "react";
|
|
10
|
+
import { useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
10
11
|
export function ProductVersionDialog({ open, onOpenChange, productId, onSuccess, }) {
|
|
11
12
|
const [notes, setNotes] = React.useState("");
|
|
12
13
|
const [error, setError] = React.useState(null);
|
|
13
14
|
const { create } = useProductVersionMutation();
|
|
15
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
14
16
|
React.useEffect(() => {
|
|
15
17
|
if (open) {
|
|
16
18
|
setNotes("");
|
|
17
19
|
setError(null);
|
|
18
20
|
}
|
|
19
21
|
}, [open]);
|
|
20
|
-
return (_jsx(Dialog, { open: open, onOpenChange: onOpenChange, children: _jsxs(DialogContent, { "data-slot": "product-version-dialog", className: "sm:max-w-[560px]", children: [_jsxs(DialogHeader, { children: [_jsx(DialogTitle, { children:
|
|
22
|
+
return (_jsx(Dialog, { open: open, onOpenChange: onOpenChange, children: _jsxs(DialogContent, { "data-slot": "product-version-dialog", className: "sm:max-w-[560px]", children: [_jsxs(DialogHeader, { children: [_jsx(DialogTitle, { children: messages.productVersionDialog.title }), _jsx(DialogDescription, { children: messages.productVersionDialog.description })] }), _jsxs("form", { className: "flex flex-col gap-4", onSubmit: async (event) => {
|
|
21
23
|
event.preventDefault();
|
|
22
24
|
setError(null);
|
|
23
25
|
try {
|
|
@@ -31,7 +33,7 @@ export function ProductVersionDialog({ open, onOpenChange, productId, onSuccess,
|
|
|
31
33
|
catch (submissionError) {
|
|
32
34
|
setError(submissionError instanceof Error
|
|
33
35
|
? submissionError.message
|
|
34
|
-
:
|
|
36
|
+
: messages.productVersionDialog.validation.saveFailed);
|
|
35
37
|
}
|
|
36
|
-
}, children: [_jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-version-notes", children:
|
|
38
|
+
}, children: [_jsxs("div", { className: "flex flex-col gap-1.5", children: [_jsx(Label, { htmlFor: "product-version-notes", children: messages.productVersionDialog.fields.notes }), _jsx(Textarea, { id: "product-version-notes", value: notes, onChange: (event) => setNotes(event.target.value), placeholder: messages.productVersionDialog.placeholders.notes })] }), error ? _jsx("p", { className: "text-sm text-destructive", children: error }) : null, _jsxs("div", { className: "flex items-center justify-end gap-2", children: [_jsx(Button, { type: "button", variant: "ghost", onClick: () => onOpenChange(false), children: messages.common.cancel }), _jsxs(Button, { type: "submit", disabled: create.isPending, children: [create.isPending ? (_jsx(Loader2, { className: "mr-2 size-4 animate-spin", "aria-hidden": "true" })) : null, messages.productVersionDialog.actions.createVersion] })] })] })] }) }));
|
|
37
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-versions-section.d.ts","sourceRoot":"","sources":["../../src/components/product-versions-section.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"product-versions-section.d.ts","sourceRoot":"","sources":["../../src/components/product-versions-section.tsx"],"names":[],"mappings":"AAiBA,MAAM,WAAW,2BAA2B;IAC1C,SAAS,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED,wBAAgB,sBAAsB,CAAC,EACrC,SAAS,EACT,KAAK,EACL,WAAW,GACZ,EAAE,2BAA2B,2CA0D7B"}
|
|
@@ -5,10 +5,15 @@ import { Button } from "@voyantjs/ui/components/button";
|
|
|
5
5
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@voyantjs/ui/components/card";
|
|
6
6
|
import { FileText, Loader2, Plus } from "lucide-react";
|
|
7
7
|
import * as React from "react";
|
|
8
|
+
import { useProductsUiI18nOrDefault, useProductsUiMessagesOrDefault } from "../i18n/provider";
|
|
8
9
|
import { ProductVersionDialog } from "./product-version-dialog";
|
|
9
|
-
export function ProductVersionsSection({ productId, title
|
|
10
|
+
export function ProductVersionsSection({ productId, title, description, }) {
|
|
10
11
|
const [dialogOpen, setDialogOpen] = React.useState(false);
|
|
11
12
|
const { data, isPending, isError } = useProductVersions(productId);
|
|
12
13
|
const versions = data?.data ?? [];
|
|
13
|
-
|
|
14
|
+
const messages = useProductsUiMessagesOrDefault();
|
|
15
|
+
const { formatDateTime } = useProductsUiI18nOrDefault();
|
|
16
|
+
const resolvedTitle = title ?? messages.productVersionsSection.titles.default;
|
|
17
|
+
const resolvedDescription = description ?? messages.productVersionsSection.descriptions.default;
|
|
18
|
+
return (_jsxs(Card, { "data-slot": "product-versions-section", children: [_jsxs(CardHeader, { className: "flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between", children: [_jsxs("div", { className: "space-y-1", children: [_jsx(CardTitle, { children: resolvedTitle }), _jsx(CardDescription, { children: resolvedDescription })] }), _jsxs(Button, { variant: "outline", onClick: () => setDialogOpen(true), children: [_jsx(Plus, { className: "mr-2 size-4", "aria-hidden": "true" }), messages.productVersionsSection.actions.createVersion] })] }), _jsxs(CardContent, { className: "flex flex-col gap-3", children: [isPending ? (_jsx("div", { className: "flex min-h-24 items-center justify-center", children: _jsx(Loader2, { className: "size-4 animate-spin text-muted-foreground" }) })) : isError ? (_jsx("p", { className: "text-sm text-destructive", children: messages.productVersionsSection.loadingError })) : versions.length === 0 ? (_jsx("p", { className: "text-sm text-muted-foreground", children: messages.productVersionsSection.empty })) : (versions.map((version) => (_jsxs("div", { className: "flex items-center gap-4 rounded-md border p-3", children: [_jsx(FileText, { className: "size-4 text-muted-foreground", "aria-hidden": "true" }), _jsxs("div", { className: "flex-1", children: [_jsxs("p", { className: "text-sm font-medium", children: [messages.productVersionsSection.versionLabel, " ", version.versionNumber] }), version.notes ? (_jsx("p", { className: "mt-1 text-sm text-muted-foreground", children: version.notes })) : null] }), _jsxs("div", { className: "text-right text-xs text-muted-foreground", children: [_jsx("div", { children: formatDateTime(version.createdAt) }), _jsx("div", { children: version.authorId })] })] }, version.id)))), _jsx(ProductVersionDialog, { open: dialogOpen, onOpenChange: setDialogOpen, productId: productId })] })] }));
|
|
14
19
|
}
|