@empty-complete-org/medusa-product-attributes 0.13.0 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.medusa/server/src/admin/index.js +396 -34
- package/.medusa/server/src/admin/index.mjs +371 -26
- package/.medusa/server/src/api/admin/attribute-presets/[id]/apply/route.d.ts +2 -0
- package/.medusa/server/src/api/admin/attribute-presets/[id]/apply/route.js +12 -0
- package/.medusa/server/src/api/admin/attribute-presets/[id]/apply/route.js.map +1 -0
- package/.medusa/server/src/api/admin/attribute-presets/route.d.ts +4 -0
- package/.medusa/server/src/api/admin/attribute-presets/route.js +24 -0
- package/.medusa/server/src/api/admin/attribute-presets/route.js.map +1 -0
- package/.medusa/server/src/modules/product-attributes/index.d.ts +14 -0
- package/.medusa/server/src/modules/product-attributes/migrations/Migration20260406120000.d.ts +5 -0
- package/.medusa/server/src/modules/product-attributes/migrations/Migration20260406120000.js +32 -0
- package/.medusa/server/src/modules/product-attributes/migrations/Migration20260406120000.js.map +1 -0
- package/.medusa/server/src/modules/product-attributes/models/attribute-preset.d.ts +9 -0
- package/.medusa/server/src/modules/product-attributes/models/attribute-preset.js +13 -0
- package/.medusa/server/src/modules/product-attributes/models/attribute-preset.js.map +1 -0
- package/.medusa/server/src/modules/product-attributes/service.d.ts +78 -0
- package/.medusa/server/src/modules/product-attributes/service.js +36 -0
- package/.medusa/server/src/modules/product-attributes/service.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
|
-
import { defineWidgetConfig } from "@medusajs/admin-sdk";
|
|
2
|
+
import { defineWidgetConfig, defineRouteConfig } from "@medusajs/admin-sdk";
|
|
3
3
|
import { Container, Heading, Button, Text, Badge, Input } from "@medusajs/ui";
|
|
4
4
|
import { useQueryClient, useQuery, useMutation } from "@tanstack/react-query";
|
|
5
|
+
import * as React from "react";
|
|
5
6
|
import { useState, useRef, useEffect } from "react";
|
|
6
7
|
import Medusa from "@medusajs/js-sdk";
|
|
7
8
|
const sdk = new Medusa({
|
|
@@ -11,17 +12,37 @@ const sdk = new Medusa({
|
|
|
11
12
|
type: "session"
|
|
12
13
|
}
|
|
13
14
|
});
|
|
14
|
-
const emptyForm = () => ({ label: "", type: "text", unit: "" });
|
|
15
|
+
const emptyForm$1 = () => ({ label: "", type: "text", unit: "" });
|
|
15
16
|
const CategoryAttributeTemplatesWidget = ({
|
|
16
17
|
data
|
|
17
18
|
}) => {
|
|
19
|
+
var _a, _b;
|
|
18
20
|
const categoryId = data.id;
|
|
19
21
|
const qc = useQueryClient();
|
|
20
22
|
const queryKey = ["category-custom-attributes", categoryId];
|
|
21
23
|
const [showAddForm, setShowAddForm] = useState(false);
|
|
22
|
-
const [
|
|
24
|
+
const [showPresetList, setShowPresetList] = useState(false);
|
|
25
|
+
const [addForm, setAddForm] = useState(emptyForm$1());
|
|
23
26
|
const [confirmDeleteId, setConfirmDeleteId] = useState(null);
|
|
24
27
|
const [mutationError, setMutationError] = useState(null);
|
|
28
|
+
const presetsQuery = useQuery({
|
|
29
|
+
queryKey: ["attribute-presets"],
|
|
30
|
+
queryFn: () => sdk.client.fetch(`/admin/attribute-presets`),
|
|
31
|
+
enabled: showPresetList
|
|
32
|
+
});
|
|
33
|
+
const applyPresetMutation = useMutation({
|
|
34
|
+
mutationFn: (presetId) => sdk.client.fetch(`/admin/attribute-presets/${presetId}/apply`, {
|
|
35
|
+
method: "POST",
|
|
36
|
+
body: { category_id: categoryId }
|
|
37
|
+
}),
|
|
38
|
+
onSuccess: () => {
|
|
39
|
+
qc.invalidateQueries({ queryKey });
|
|
40
|
+
setShowPresetList(false);
|
|
41
|
+
},
|
|
42
|
+
onError: (err) => {
|
|
43
|
+
setMutationError((err == null ? void 0 : err.message) || "Ошибка при применении пресета");
|
|
44
|
+
}
|
|
45
|
+
});
|
|
25
46
|
const {
|
|
26
47
|
data: result,
|
|
27
48
|
isLoading,
|
|
@@ -41,7 +62,7 @@ const CategoryAttributeTemplatesWidget = ({
|
|
|
41
62
|
onSuccess: () => {
|
|
42
63
|
qc.invalidateQueries({ queryKey });
|
|
43
64
|
setShowAddForm(false);
|
|
44
|
-
setAddForm(emptyForm());
|
|
65
|
+
setAddForm(emptyForm$1());
|
|
45
66
|
setMutationError(null);
|
|
46
67
|
},
|
|
47
68
|
onError: (err) => {
|
|
@@ -66,19 +87,62 @@ const CategoryAttributeTemplatesWidget = ({
|
|
|
66
87
|
unit: addForm.type === "number" && addForm.unit.trim() ? addForm.unit.trim() : null
|
|
67
88
|
});
|
|
68
89
|
};
|
|
69
|
-
const
|
|
90
|
+
const typeLabel2 = (t) => t === "text" ? "Текст" : t === "number" ? "Число" : t === "file" ? "Файл" : t === "boolean" ? "Да/Нет" : t;
|
|
70
91
|
return /* @__PURE__ */ jsxs(Container, { className: "divide-y p-0", children: [
|
|
71
92
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between px-6 py-4", children: [
|
|
72
93
|
/* @__PURE__ */ jsx(Heading, { level: "h2", children: "Атрибуты" }),
|
|
73
|
-
!showAddForm && /* @__PURE__ */
|
|
74
|
-
|
|
94
|
+
!showAddForm && !showPresetList && /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
95
|
+
/* @__PURE__ */ jsx(
|
|
96
|
+
Button,
|
|
97
|
+
{
|
|
98
|
+
variant: "secondary",
|
|
99
|
+
size: "small",
|
|
100
|
+
onClick: () => setShowPresetList(true),
|
|
101
|
+
children: "Из пресета"
|
|
102
|
+
}
|
|
103
|
+
),
|
|
104
|
+
/* @__PURE__ */ jsx(
|
|
105
|
+
Button,
|
|
106
|
+
{
|
|
107
|
+
variant: "secondary",
|
|
108
|
+
size: "small",
|
|
109
|
+
onClick: () => setShowAddForm(true),
|
|
110
|
+
children: "+ Добавить"
|
|
111
|
+
}
|
|
112
|
+
)
|
|
113
|
+
] })
|
|
114
|
+
] }),
|
|
115
|
+
showPresetList && /* @__PURE__ */ jsxs("div", { className: "px-6 py-3", children: [
|
|
116
|
+
/* @__PURE__ */ jsxs("div", { className: "mb-2 flex items-center justify-between", children: [
|
|
117
|
+
/* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", children: "Выберите пресет" }),
|
|
118
|
+
/* @__PURE__ */ jsx(
|
|
119
|
+
Button,
|
|
120
|
+
{
|
|
121
|
+
size: "small",
|
|
122
|
+
variant: "secondary",
|
|
123
|
+
onClick: () => setShowPresetList(false),
|
|
124
|
+
children: "Закрыть"
|
|
125
|
+
}
|
|
126
|
+
)
|
|
127
|
+
] }),
|
|
128
|
+
presetsQuery.isLoading && /* @__PURE__ */ jsx(Text, { className: "text-ui-fg-muted text-sm", children: "Загрузка…" }),
|
|
129
|
+
((_a = presetsQuery.data) == null ? void 0 : _a.attribute_presets.length) === 0 && /* @__PURE__ */ jsx(Text, { className: "text-ui-fg-muted text-sm", children: "Пресетов нет. Создайте в настройках Product Attributes." }),
|
|
130
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-col gap-1", children: (_b = presetsQuery.data) == null ? void 0 : _b.attribute_presets.map((p) => /* @__PURE__ */ jsxs(
|
|
131
|
+
"button",
|
|
75
132
|
{
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
children:
|
|
80
|
-
|
|
81
|
-
|
|
133
|
+
onClick: () => applyPresetMutation.mutate(p.id),
|
|
134
|
+
disabled: applyPresetMutation.isPending,
|
|
135
|
+
className: "flex items-center justify-between rounded border border-ui-border-base px-3 py-2 text-left text-sm hover:bg-ui-bg-subtle disabled:opacity-50",
|
|
136
|
+
children: [
|
|
137
|
+
/* @__PURE__ */ jsx("span", { children: p.label }),
|
|
138
|
+
/* @__PURE__ */ jsxs(Badge, { size: "2xsmall", color: "grey", children: [
|
|
139
|
+
typeLabel2(p.type),
|
|
140
|
+
p.unit ? `, ${p.unit}` : ""
|
|
141
|
+
] })
|
|
142
|
+
]
|
|
143
|
+
},
|
|
144
|
+
p.id
|
|
145
|
+
)) })
|
|
82
146
|
] }),
|
|
83
147
|
isLoading && /* @__PURE__ */ jsx("div", { className: "px-6 py-4", children: /* @__PURE__ */ jsx(Text, { className: "text-ui-fg-muted text-sm", children: "Загрузка…" }) }),
|
|
84
148
|
isError && /* @__PURE__ */ jsx("div", { className: "px-6 py-4", children: /* @__PURE__ */ jsx(Text, { className: "text-ui-fg-error text-sm", children: "Не удалось загрузить атрибуты." }) }),
|
|
@@ -91,7 +155,7 @@ const CategoryAttributeTemplatesWidget = ({
|
|
|
91
155
|
children: [
|
|
92
156
|
/* @__PURE__ */ jsx("span", { className: "flex-1 text-sm text-ui-fg-subtle", children: attr.label }),
|
|
93
157
|
/* @__PURE__ */ jsxs(Badge, { size: "2xsmall", color: "grey", children: [
|
|
94
|
-
|
|
158
|
+
typeLabel2(attr.type),
|
|
95
159
|
attr.unit ? `, ${attr.unit}` : ""
|
|
96
160
|
] }),
|
|
97
161
|
/* @__PURE__ */ jsx(Badge, { size: "2xsmall", color: "blue", children: "из родителя" })
|
|
@@ -142,7 +206,7 @@ const CategoryAttributeTemplatesWidget = ({
|
|
|
142
206
|
children: [
|
|
143
207
|
/* @__PURE__ */ jsx("span", { className: "flex-1 text-sm text-ui-fg-base", children: attr.label }),
|
|
144
208
|
/* @__PURE__ */ jsxs(Badge, { size: "2xsmall", color: "grey", children: [
|
|
145
|
-
|
|
209
|
+
typeLabel2(attr.type),
|
|
146
210
|
attr.unit ? `, ${attr.unit}` : ""
|
|
147
211
|
] }),
|
|
148
212
|
/* @__PURE__ */ jsx(
|
|
@@ -214,7 +278,7 @@ const CategoryAttributeTemplatesWidget = ({
|
|
|
214
278
|
size: "small",
|
|
215
279
|
onClick: () => {
|
|
216
280
|
setShowAddForm(false);
|
|
217
|
-
setAddForm(emptyForm());
|
|
281
|
+
setAddForm(emptyForm$1());
|
|
218
282
|
setMutationError(null);
|
|
219
283
|
},
|
|
220
284
|
children: "Отмена"
|
|
@@ -288,15 +352,19 @@ const ProductAttributeValuesWidget = ({
|
|
|
288
352
|
const attrId = attr.id;
|
|
289
353
|
setUploadingId(attrId);
|
|
290
354
|
try {
|
|
291
|
-
const
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
355
|
+
const isImage = file.type.startsWith("image/");
|
|
356
|
+
let toUpload = file;
|
|
357
|
+
if (isImage) {
|
|
358
|
+
const dot = file.name.lastIndexOf(".");
|
|
359
|
+
const ext = dot > -1 ? file.name.slice(dot) : "";
|
|
360
|
+
toUpload = new File(
|
|
361
|
+
[file],
|
|
362
|
+
`${productHandle}_${attr.key}${ext}`,
|
|
363
|
+
{ type: file.type }
|
|
364
|
+
);
|
|
365
|
+
}
|
|
298
366
|
const formData = new FormData();
|
|
299
|
-
formData.append("files",
|
|
367
|
+
formData.append("files", toUpload);
|
|
300
368
|
const response = await fetch(`/admin/uploads`, {
|
|
301
369
|
method: "POST",
|
|
302
370
|
credentials: "include",
|
|
@@ -436,6 +504,269 @@ const ProductAttributeValuesWidget = ({
|
|
|
436
504
|
defineWidgetConfig({
|
|
437
505
|
zone: "product.details.after"
|
|
438
506
|
});
|
|
507
|
+
var __defProp = Object.defineProperty;
|
|
508
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
509
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
510
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
511
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
512
|
+
var __spreadValues = (a, b) => {
|
|
513
|
+
for (var prop in b || (b = {}))
|
|
514
|
+
if (__hasOwnProp.call(b, prop))
|
|
515
|
+
__defNormalProp(a, prop, b[prop]);
|
|
516
|
+
if (__getOwnPropSymbols)
|
|
517
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
518
|
+
if (__propIsEnum.call(b, prop))
|
|
519
|
+
__defNormalProp(a, prop, b[prop]);
|
|
520
|
+
}
|
|
521
|
+
return a;
|
|
522
|
+
};
|
|
523
|
+
var __objRest = (source, exclude) => {
|
|
524
|
+
var target = {};
|
|
525
|
+
for (var prop in source)
|
|
526
|
+
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
527
|
+
target[prop] = source[prop];
|
|
528
|
+
if (source != null && __getOwnPropSymbols)
|
|
529
|
+
for (var prop of __getOwnPropSymbols(source)) {
|
|
530
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
531
|
+
target[prop] = source[prop];
|
|
532
|
+
}
|
|
533
|
+
return target;
|
|
534
|
+
};
|
|
535
|
+
const CogSixTooth = React.forwardRef(
|
|
536
|
+
(_a, ref) => {
|
|
537
|
+
var _b = _a, { color = "currentColor" } = _b, props = __objRest(_b, ["color"]);
|
|
538
|
+
return /* @__PURE__ */ React.createElement(
|
|
539
|
+
"svg",
|
|
540
|
+
__spreadValues({
|
|
541
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
542
|
+
width: 15,
|
|
543
|
+
height: 15,
|
|
544
|
+
viewBox: "0 0 15 15",
|
|
545
|
+
fill: "none",
|
|
546
|
+
ref
|
|
547
|
+
}, props),
|
|
548
|
+
/* @__PURE__ */ React.createElement(
|
|
549
|
+
"g",
|
|
550
|
+
{
|
|
551
|
+
stroke: color,
|
|
552
|
+
strokeLinecap: "round",
|
|
553
|
+
strokeLinejoin: "round",
|
|
554
|
+
strokeWidth: 1.5,
|
|
555
|
+
clipPath: "url(#a)"
|
|
556
|
+
},
|
|
557
|
+
/* @__PURE__ */ React.createElement("path", { d: "M7.5 9.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4" }),
|
|
558
|
+
/* @__PURE__ */ React.createElement("path", { d: "m12.989 5.97-.826-.292a5 5 0 0 0-.323-.685 5 5 0 0 0-.43-.621l.16-.86a1.43 1.43 0 0 0-.692-1.503l-.312-.18a1.43 1.43 0 0 0-1.647.152l-.663.566a5 5 0 0 0-1.513 0L6.08 1.98a1.43 1.43 0 0 0-1.647-.152l-.312.18a1.43 1.43 0 0 0-.691 1.503l.16.857c-.32.4-.574.841-.758 1.31l-.82.29a1.43 1.43 0 0 0-.956 1.35v.36c0 .608.383 1.15.955 1.35l.826.292c.09.232.194.462.323.684.128.222.275.427.43.622l-.16.86c-.111.597.166 1.2.691 1.503l.312.18a1.43 1.43 0 0 0 1.647-.152l.663-.567a5 5 0 0 0 1.512 0l.663.568a1.43 1.43 0 0 0 1.647.152l.312-.18c.526-.304.803-.906.691-1.502l-.16-.86c.32-.398.575-.84.757-1.308l.822-.29c.572-.202.956-.743.956-1.35v-.36c0-.608-.383-1.149-.956-1.35z" })
|
|
559
|
+
),
|
|
560
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { fill: "#fff", d: "M0 0h15v15H0z" })))
|
|
561
|
+
);
|
|
562
|
+
}
|
|
563
|
+
);
|
|
564
|
+
CogSixTooth.displayName = "CogSixTooth";
|
|
565
|
+
const emptyForm = () => ({
|
|
566
|
+
label: "",
|
|
567
|
+
type: "text",
|
|
568
|
+
unit: "",
|
|
569
|
+
description: ""
|
|
570
|
+
});
|
|
571
|
+
const typeLabel = (t) => t === "text" ? "Текст" : t === "number" ? "Число" : t === "file" ? "Файл" : t === "boolean" ? "Да/Нет" : t;
|
|
572
|
+
const ProductAttributesSettingsPage = () => {
|
|
573
|
+
const qc = useQueryClient();
|
|
574
|
+
const queryKey = ["attribute-presets"];
|
|
575
|
+
const [showAddForm, setShowAddForm] = useState(false);
|
|
576
|
+
const [addForm, setAddForm] = useState(emptyForm());
|
|
577
|
+
const [confirmDeleteId, setConfirmDeleteId] = useState(null);
|
|
578
|
+
const { data, isLoading, isError } = useQuery({
|
|
579
|
+
queryKey,
|
|
580
|
+
queryFn: () => sdk.client.fetch(`/admin/attribute-presets`)
|
|
581
|
+
});
|
|
582
|
+
const presets = (data == null ? void 0 : data.attribute_presets) ?? [];
|
|
583
|
+
const createMutation = useMutation({
|
|
584
|
+
mutationFn: (body) => sdk.client.fetch(`/admin/attribute-presets`, {
|
|
585
|
+
method: "POST",
|
|
586
|
+
body: {
|
|
587
|
+
label: body.label,
|
|
588
|
+
type: body.type,
|
|
589
|
+
unit: body.type === "number" && body.unit ? body.unit : null,
|
|
590
|
+
description: body.description || null
|
|
591
|
+
}
|
|
592
|
+
}),
|
|
593
|
+
onSuccess: () => {
|
|
594
|
+
qc.invalidateQueries({ queryKey });
|
|
595
|
+
setShowAddForm(false);
|
|
596
|
+
setAddForm(emptyForm());
|
|
597
|
+
}
|
|
598
|
+
});
|
|
599
|
+
const deleteMutation = useMutation({
|
|
600
|
+
mutationFn: (id) => sdk.client.fetch(`/admin/attribute-presets`, {
|
|
601
|
+
method: "PATCH",
|
|
602
|
+
body: { id, deleted_at: (/* @__PURE__ */ new Date()).toISOString() }
|
|
603
|
+
}),
|
|
604
|
+
onSuccess: () => {
|
|
605
|
+
qc.invalidateQueries({ queryKey });
|
|
606
|
+
setConfirmDeleteId(null);
|
|
607
|
+
}
|
|
608
|
+
});
|
|
609
|
+
const handleAdd = () => {
|
|
610
|
+
if (!addForm.label.trim()) return;
|
|
611
|
+
createMutation.mutate({
|
|
612
|
+
...addForm,
|
|
613
|
+
label: addForm.label.trim(),
|
|
614
|
+
unit: addForm.unit.trim(),
|
|
615
|
+
description: addForm.description.trim()
|
|
616
|
+
});
|
|
617
|
+
};
|
|
618
|
+
return /* @__PURE__ */ jsxs(Container, { className: "divide-y p-0", children: [
|
|
619
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between px-6 py-4", children: [
|
|
620
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
621
|
+
/* @__PURE__ */ jsx(Heading, { level: "h1", children: "Пресеты атрибутов" }),
|
|
622
|
+
/* @__PURE__ */ jsx(Text, { size: "small", className: "text-ui-fg-subtle", children: "Глобальные шаблоны атрибутов, которые можно применить к любой категории." })
|
|
623
|
+
] }),
|
|
624
|
+
!showAddForm && /* @__PURE__ */ jsx(
|
|
625
|
+
Button,
|
|
626
|
+
{
|
|
627
|
+
variant: "secondary",
|
|
628
|
+
size: "small",
|
|
629
|
+
onClick: () => setShowAddForm(true),
|
|
630
|
+
children: "+ Добавить пресет"
|
|
631
|
+
}
|
|
632
|
+
)
|
|
633
|
+
] }),
|
|
634
|
+
isLoading && /* @__PURE__ */ jsx("div", { className: "px-6 py-4", children: /* @__PURE__ */ jsx(Text, { className: "text-ui-fg-muted text-sm", children: "Загрузка…" }) }),
|
|
635
|
+
isError && /* @__PURE__ */ jsx("div", { className: "px-6 py-4", children: /* @__PURE__ */ jsx(Text, { className: "text-ui-fg-error text-sm", children: "Не удалось загрузить пресеты." }) }),
|
|
636
|
+
!isLoading && !isError && presets.length === 0 && !showAddForm && /* @__PURE__ */ jsx("div", { className: "px-6 py-4", children: /* @__PURE__ */ jsx(Text, { className: "text-ui-fg-muted text-sm", children: "Пресетов пока нет. Добавьте первый." }) }),
|
|
637
|
+
/* @__PURE__ */ jsx("div", { className: "divide-y", children: presets.map(
|
|
638
|
+
(p) => confirmDeleteId === p.id ? /* @__PURE__ */ jsxs(
|
|
639
|
+
"div",
|
|
640
|
+
{
|
|
641
|
+
className: "flex items-center gap-3 px-6 py-3 text-sm",
|
|
642
|
+
children: [
|
|
643
|
+
/* @__PURE__ */ jsxs("span", { className: "flex-1", children: [
|
|
644
|
+
"Удалить «",
|
|
645
|
+
p.label,
|
|
646
|
+
"»?"
|
|
647
|
+
] }),
|
|
648
|
+
/* @__PURE__ */ jsx(
|
|
649
|
+
Button,
|
|
650
|
+
{
|
|
651
|
+
size: "small",
|
|
652
|
+
variant: "danger",
|
|
653
|
+
onClick: () => deleteMutation.mutate(p.id),
|
|
654
|
+
isLoading: deleteMutation.isPending,
|
|
655
|
+
children: "Удалить"
|
|
656
|
+
}
|
|
657
|
+
),
|
|
658
|
+
/* @__PURE__ */ jsx(
|
|
659
|
+
Button,
|
|
660
|
+
{
|
|
661
|
+
size: "small",
|
|
662
|
+
variant: "secondary",
|
|
663
|
+
onClick: () => setConfirmDeleteId(null),
|
|
664
|
+
children: "Отмена"
|
|
665
|
+
}
|
|
666
|
+
)
|
|
667
|
+
]
|
|
668
|
+
},
|
|
669
|
+
p.id
|
|
670
|
+
) : /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 px-6 py-3", children: [
|
|
671
|
+
/* @__PURE__ */ jsxs("div", { className: "flex-1", children: [
|
|
672
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
673
|
+
/* @__PURE__ */ jsx(Text, { size: "small", weight: "plus", children: p.label }),
|
|
674
|
+
/* @__PURE__ */ jsxs(Badge, { size: "2xsmall", color: "grey", children: [
|
|
675
|
+
typeLabel(p.type),
|
|
676
|
+
p.unit ? `, ${p.unit}` : ""
|
|
677
|
+
] })
|
|
678
|
+
] }),
|
|
679
|
+
p.description && /* @__PURE__ */ jsx(Text, { size: "xsmall", className: "text-ui-fg-subtle", children: p.description })
|
|
680
|
+
] }),
|
|
681
|
+
/* @__PURE__ */ jsx(
|
|
682
|
+
"button",
|
|
683
|
+
{
|
|
684
|
+
onClick: () => setConfirmDeleteId(p.id),
|
|
685
|
+
className: "text-xs text-ui-fg-error hover:underline",
|
|
686
|
+
children: "Удалить"
|
|
687
|
+
}
|
|
688
|
+
)
|
|
689
|
+
] }, p.id)
|
|
690
|
+
) }),
|
|
691
|
+
showAddForm && /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-2 px-6 py-4", children: [
|
|
692
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
693
|
+
/* @__PURE__ */ jsx(
|
|
694
|
+
Input,
|
|
695
|
+
{
|
|
696
|
+
value: addForm.label,
|
|
697
|
+
onChange: (e) => setAddForm((f) => ({ ...f, label: e.target.value })),
|
|
698
|
+
placeholder: "Название (например, Сертификат)",
|
|
699
|
+
className: "flex-1 h-8 text-sm",
|
|
700
|
+
autoFocus: true
|
|
701
|
+
}
|
|
702
|
+
),
|
|
703
|
+
/* @__PURE__ */ jsxs(
|
|
704
|
+
"select",
|
|
705
|
+
{
|
|
706
|
+
value: addForm.type,
|
|
707
|
+
onChange: (e) => setAddForm((f) => ({
|
|
708
|
+
...f,
|
|
709
|
+
type: e.target.value,
|
|
710
|
+
unit: e.target.value === "number" ? f.unit : ""
|
|
711
|
+
})),
|
|
712
|
+
className: "h-8 rounded border border-ui-border-base bg-ui-bg-base px-2 text-sm",
|
|
713
|
+
children: [
|
|
714
|
+
/* @__PURE__ */ jsx("option", { value: "text", children: "Текст" }),
|
|
715
|
+
/* @__PURE__ */ jsx("option", { value: "number", children: "Число" }),
|
|
716
|
+
/* @__PURE__ */ jsx("option", { value: "file", children: "Файл" }),
|
|
717
|
+
/* @__PURE__ */ jsx("option", { value: "boolean", children: "Да/Нет" })
|
|
718
|
+
]
|
|
719
|
+
}
|
|
720
|
+
),
|
|
721
|
+
addForm.type === "number" && /* @__PURE__ */ jsx(
|
|
722
|
+
Input,
|
|
723
|
+
{
|
|
724
|
+
value: addForm.unit,
|
|
725
|
+
onChange: (e) => setAddForm((f) => ({ ...f, unit: e.target.value })),
|
|
726
|
+
placeholder: "ед. (кг, м...)",
|
|
727
|
+
className: "w-28 h-8 text-sm"
|
|
728
|
+
}
|
|
729
|
+
)
|
|
730
|
+
] }),
|
|
731
|
+
/* @__PURE__ */ jsx(
|
|
732
|
+
Input,
|
|
733
|
+
{
|
|
734
|
+
value: addForm.description,
|
|
735
|
+
onChange: (e) => setAddForm((f) => ({ ...f, description: e.target.value })),
|
|
736
|
+
placeholder: "Описание (необязательно)",
|
|
737
|
+
className: "h-8 text-sm"
|
|
738
|
+
}
|
|
739
|
+
),
|
|
740
|
+
/* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
741
|
+
/* @__PURE__ */ jsx(
|
|
742
|
+
Button,
|
|
743
|
+
{
|
|
744
|
+
variant: "secondary",
|
|
745
|
+
size: "small",
|
|
746
|
+
onClick: () => {
|
|
747
|
+
setShowAddForm(false);
|
|
748
|
+
setAddForm(emptyForm());
|
|
749
|
+
},
|
|
750
|
+
children: "Отмена"
|
|
751
|
+
}
|
|
752
|
+
),
|
|
753
|
+
/* @__PURE__ */ jsx(
|
|
754
|
+
Button,
|
|
755
|
+
{
|
|
756
|
+
size: "small",
|
|
757
|
+
onClick: handleAdd,
|
|
758
|
+
isLoading: createMutation.isPending,
|
|
759
|
+
children: "Создать"
|
|
760
|
+
}
|
|
761
|
+
)
|
|
762
|
+
] })
|
|
763
|
+
] })
|
|
764
|
+
] });
|
|
765
|
+
};
|
|
766
|
+
const config = defineRouteConfig({
|
|
767
|
+
label: "Product Attributes",
|
|
768
|
+
icon: CogSixTooth
|
|
769
|
+
});
|
|
439
770
|
const widgetModule = { widgets: [
|
|
440
771
|
{
|
|
441
772
|
Component: CategoryAttributeTemplatesWidget,
|
|
@@ -447,10 +778,24 @@ const widgetModule = { widgets: [
|
|
|
447
778
|
}
|
|
448
779
|
] };
|
|
449
780
|
const routeModule = {
|
|
450
|
-
routes: [
|
|
781
|
+
routes: [
|
|
782
|
+
{
|
|
783
|
+
Component: ProductAttributesSettingsPage,
|
|
784
|
+
path: "/settings/product-attributes"
|
|
785
|
+
}
|
|
786
|
+
]
|
|
451
787
|
};
|
|
452
788
|
const menuItemModule = {
|
|
453
|
-
menuItems: [
|
|
789
|
+
menuItems: [
|
|
790
|
+
{
|
|
791
|
+
label: config.label,
|
|
792
|
+
icon: config.icon,
|
|
793
|
+
path: "/settings/product-attributes",
|
|
794
|
+
nested: void 0,
|
|
795
|
+
rank: void 0,
|
|
796
|
+
translationNs: void 0
|
|
797
|
+
}
|
|
798
|
+
]
|
|
454
799
|
};
|
|
455
800
|
const formModule = { customFields: {} };
|
|
456
801
|
const displayModule = {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.POST = POST;
|
|
4
|
+
const product_attributes_1 = require("../../../../../modules/product-attributes");
|
|
5
|
+
async function POST(req, res) {
|
|
6
|
+
const { id } = req.params;
|
|
7
|
+
const { category_id } = req.body;
|
|
8
|
+
const service = req.scope.resolve(product_attributes_1.CUSTOM_ATTRIBUTE_MODULE);
|
|
9
|
+
const category_custom_attribute = await service.applyPresetToCategory(id, category_id);
|
|
10
|
+
res.status(201).json({ category_custom_attribute });
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=route.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"route.js","sourceRoot":"","sources":["../../../../../../../../src/api/admin/attribute-presets/[id]/apply/route.ts"],"names":[],"mappings":";;AAIA,oBAMC;AATD,kFAAmF;AAG5E,KAAK,UAAU,IAAI,CAAC,GAAkB,EAAE,GAAmB;IAChE,MAAM,EAAE,EAAE,EAAE,GAAG,GAAG,CAAC,MAAM,CAAA;IACzB,MAAM,EAAE,WAAW,EAAE,GAAG,GAAG,CAAC,IAA+B,CAAA;IAC3D,MAAM,OAAO,GAA2B,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,4CAAuB,CAAC,CAAA;IAClF,MAAM,yBAAyB,GAAG,MAAM,OAAO,CAAC,qBAAqB,CAAC,EAAE,EAAE,WAAW,CAAC,CAAA;IACtF,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,yBAAyB,EAAE,CAAC,CAAA;AACrD,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { MedusaRequest, MedusaResponse } from "@medusajs/framework/http";
|
|
2
|
+
export declare function GET(req: MedusaRequest, res: MedusaResponse): Promise<void>;
|
|
3
|
+
export declare function POST(req: MedusaRequest, res: MedusaResponse): Promise<void>;
|
|
4
|
+
export declare function PATCH(req: MedusaRequest, res: MedusaResponse): Promise<void>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GET = GET;
|
|
4
|
+
exports.POST = POST;
|
|
5
|
+
exports.PATCH = PATCH;
|
|
6
|
+
const product_attributes_1 = require("../../../modules/product-attributes");
|
|
7
|
+
async function GET(req, res) {
|
|
8
|
+
const service = req.scope.resolve(product_attributes_1.CUSTOM_ATTRIBUTE_MODULE);
|
|
9
|
+
const attribute_presets = await service.listPresets();
|
|
10
|
+
res.json({ attribute_presets });
|
|
11
|
+
}
|
|
12
|
+
async function POST(req, res) {
|
|
13
|
+
const service = req.scope.resolve(product_attributes_1.CUSTOM_ATTRIBUTE_MODULE);
|
|
14
|
+
const body = req.body;
|
|
15
|
+
const attribute_preset = await service.createPreset(body);
|
|
16
|
+
res.status(201).json({ attribute_preset });
|
|
17
|
+
}
|
|
18
|
+
async function PATCH(req, res) {
|
|
19
|
+
const service = req.scope.resolve(product_attributes_1.CUSTOM_ATTRIBUTE_MODULE);
|
|
20
|
+
const { id, ...data } = req.body;
|
|
21
|
+
const attribute_preset = await service.updatePreset(id, data);
|
|
22
|
+
res.json({ attribute_preset });
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=route.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"route.js","sourceRoot":"","sources":["../../../../../../src/api/admin/attribute-presets/route.ts"],"names":[],"mappings":";;AAIA,kBAIC;AAED,oBAUC;AAED,sBAYC;AAjCD,4EAA6E;AAGtE,KAAK,UAAU,GAAG,CAAC,GAAkB,EAAE,GAAmB;IAC/D,MAAM,OAAO,GAA2B,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,4CAAuB,CAAC,CAAA;IAClF,MAAM,iBAAiB,GAAG,MAAM,OAAO,CAAC,WAAW,EAAE,CAAA;IACrD,GAAG,CAAC,IAAI,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAA;AACjC,CAAC;AAEM,KAAK,UAAU,IAAI,CAAC,GAAkB,EAAE,GAAmB;IAChE,MAAM,OAAO,GAA2B,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,4CAAuB,CAAC,CAAA;IAClF,MAAM,IAAI,GAAG,GAAG,CAAC,IAKhB,CAAA;IACD,MAAM,gBAAgB,GAAG,MAAM,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,CAAA;IACzD,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,gBAAgB,EAAE,CAAC,CAAA;AAC5C,CAAC;AAEM,KAAK,UAAU,KAAK,CAAC,GAAkB,EAAE,GAAmB;IACjE,MAAM,OAAO,GAA2B,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,4CAAuB,CAAC,CAAA;IAClF,MAAM,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,GAAG,GAAG,CAAC,IAO3B,CAAA;IACD,MAAM,gBAAgB,GAAG,MAAM,OAAO,CAAC,YAAY,CAAC,EAAE,EAAE,IAAI,CAAC,CAAA;IAC7D,GAAG,CAAC,IAAI,CAAC,EAAE,gBAAgB,EAAE,CAAC,CAAA;AAChC,CAAC"}
|
|
@@ -30,6 +30,20 @@ declare const _default: import("@medusajs/types").ModuleExports<typeof CustomAtt
|
|
|
30
30
|
primaryKey: "id";
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
|
+
attributePreset: {
|
|
34
|
+
id: {
|
|
35
|
+
serviceName: "customAttributeModule";
|
|
36
|
+
field: "attributePreset";
|
|
37
|
+
linkable: "attribute_preset_id";
|
|
38
|
+
primaryKey: "id";
|
|
39
|
+
};
|
|
40
|
+
toJSON: () => {
|
|
41
|
+
serviceName: "customAttributeModule";
|
|
42
|
+
field: "attributePreset";
|
|
43
|
+
linkable: "attribute_preset_id";
|
|
44
|
+
primaryKey: "id";
|
|
45
|
+
};
|
|
46
|
+
};
|
|
33
47
|
};
|
|
34
48
|
};
|
|
35
49
|
export default _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Migration20260406120000 = void 0;
|
|
4
|
+
const migrations_1 = require("@mikro-orm/migrations");
|
|
5
|
+
class Migration20260406120000 extends migrations_1.Migration {
|
|
6
|
+
async up() {
|
|
7
|
+
this.addSql(`
|
|
8
|
+
CREATE TABLE IF NOT EXISTS "attribute_preset" (
|
|
9
|
+
"id" text NOT NULL,
|
|
10
|
+
"key" text NOT NULL,
|
|
11
|
+
"label" text NOT NULL,
|
|
12
|
+
"type" text NOT NULL DEFAULT 'text',
|
|
13
|
+
"unit" text NULL,
|
|
14
|
+
"description" text NULL,
|
|
15
|
+
"created_at" timestamptz NOT NULL DEFAULT now(),
|
|
16
|
+
"updated_at" timestamptz NOT NULL DEFAULT now(),
|
|
17
|
+
"deleted_at" timestamptz NULL,
|
|
18
|
+
CONSTRAINT "attribute_preset_pkey" PRIMARY KEY ("id")
|
|
19
|
+
);
|
|
20
|
+
`);
|
|
21
|
+
this.addSql(`
|
|
22
|
+
CREATE INDEX IF NOT EXISTS "IDX_attribute_preset_deleted_at"
|
|
23
|
+
ON "attribute_preset" ("deleted_at")
|
|
24
|
+
WHERE "deleted_at" IS NOT NULL;
|
|
25
|
+
`);
|
|
26
|
+
}
|
|
27
|
+
async down() {
|
|
28
|
+
this.addSql(`DROP TABLE IF EXISTS "attribute_preset" CASCADE;`);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
exports.Migration20260406120000 = Migration20260406120000;
|
|
32
|
+
//# sourceMappingURL=Migration20260406120000.js.map
|
package/.medusa/server/src/modules/product-attributes/migrations/Migration20260406120000.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Migration20260406120000.js","sourceRoot":"","sources":["../../../../../../src/modules/product-attributes/migrations/Migration20260406120000.ts"],"names":[],"mappings":";;;AAAA,sDAAiD;AAEjD,MAAa,uBAAwB,SAAQ,sBAAS;IAC3C,KAAK,CAAC,EAAE;QACf,IAAI,CAAC,MAAM,CAAC;;;;;;;;;;;;;KAaX,CAAC,CAAA;QAEF,IAAI,CAAC,MAAM,CAAC;;;;KAIX,CAAC,CAAA;IACJ,CAAC;IAEQ,KAAK,CAAC,IAAI;QACjB,IAAI,CAAC,MAAM,CAAC,kDAAkD,CAAC,CAAA;IACjE,CAAC;CACF;AA3BD,0DA2BC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const AttributePreset: import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
2
|
+
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
3
|
+
key: import("@medusajs/framework/utils").TextProperty;
|
|
4
|
+
label: import("@medusajs/framework/utils").TextProperty;
|
|
5
|
+
type: import("@medusajs/framework/utils").TextProperty;
|
|
6
|
+
unit: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
7
|
+
description: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
8
|
+
}>, "attribute_preset">;
|
|
9
|
+
export default AttributePreset;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const utils_1 = require("@medusajs/framework/utils");
|
|
4
|
+
const AttributePreset = utils_1.model.define("attribute_preset", {
|
|
5
|
+
id: utils_1.model.id().primaryKey(),
|
|
6
|
+
key: utils_1.model.text(),
|
|
7
|
+
label: utils_1.model.text(),
|
|
8
|
+
type: utils_1.model.text().default("text"),
|
|
9
|
+
unit: utils_1.model.text().nullable(),
|
|
10
|
+
description: utils_1.model.text().nullable(),
|
|
11
|
+
});
|
|
12
|
+
exports.default = AttributePreset;
|
|
13
|
+
//# sourceMappingURL=attribute-preset.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attribute-preset.js","sourceRoot":"","sources":["../../../../../../src/modules/product-attributes/models/attribute-preset.ts"],"names":[],"mappings":";;AAAA,qDAAiD;AAEjD,MAAM,eAAe,GAAG,aAAK,CAAC,MAAM,CAAC,kBAAkB,EAAE;IACvD,EAAE,EAAE,aAAK,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE;IAC3B,GAAG,EAAE,aAAK,CAAC,IAAI,EAAE;IACjB,KAAK,EAAE,aAAK,CAAC,IAAI,EAAE;IACnB,IAAI,EAAE,aAAK,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC;IAClC,IAAI,EAAE,aAAK,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC7B,WAAW,EAAE,aAAK,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CACrC,CAAC,CAAA;AAEF,kBAAe,eAAe,CAAA"}
|