@opengis/admin 0.2.131 → 0.2.132
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/add-page-DQ70Si9f.js +104 -0
- package/dist/{admin-interface-CFR2WRun.js → admin-interface-CgXFerXl.js} +348 -323
- package/dist/{admin-view-CE-4P8V-.js → admin-view-t-gzhVnl.js} +231 -291
- package/dist/admin.js +1 -1
- package/dist/admin.umd.cjs +82 -82
- package/dist/{card-view-BbBU9cWN.js → card-view-Dtf6Ap9G.js} +1 -1
- package/dist/edit-page-BWRXfML4.js +125 -0
- package/dist/{import-file-C1vBdCEv.js → import-file-CztGvKRc.js} +25610 -26789
- package/dist/style.css +1 -1
- package/package.json +5 -5
- package/server/helpers/list/utils/button.js +5 -5
- package/server/routes/data/controllers/utils/conditions.js +20 -20
- package/server/routes/menu/controllers/getMenu.js +11 -3
- package/server/routes/menu/controllers/interfaces.js +19 -0
- package/server/routes/menu/index.mjs +2 -0
- package/server/routes/print/controllers/printTemplate.js +4 -3
- package/server/routes/print/controllers/printTemplatePreview.js +15 -9
- package/server/routes/properties/utils/refreshData.js +4 -4
- package/dist/add-page-B5Yx_gil.js +0 -119
- package/dist/edit-page-D3q9Dp_D.js +0 -138
- package/dist/profile-page-CVV-ZW1M.js +0 -78
- package/dist/user-B_2kh6ic.js +0 -5
- package/module/settings/setting/test.json +0 -6
@@ -0,0 +1,125 @@
|
|
1
|
+
import { _ as g, u as f, e as b } from "./import-file-CztGvKRc.js";
|
2
|
+
import { resolveComponent as y, openBlock as p, createElementBlock as x, createElementVNode as u, createBlock as w, normalizeStyle as k, createCommentVNode as v } from "vue";
|
3
|
+
const V = {
|
4
|
+
data() {
|
5
|
+
return {
|
6
|
+
formValues: {},
|
7
|
+
scheme: null,
|
8
|
+
table: "",
|
9
|
+
token: "",
|
10
|
+
style: null
|
11
|
+
};
|
12
|
+
},
|
13
|
+
mounted() {
|
14
|
+
this.getFormScheme();
|
15
|
+
},
|
16
|
+
methods: {
|
17
|
+
flattenMenu(e) {
|
18
|
+
const t = [];
|
19
|
+
return e.forEach((l) => {
|
20
|
+
l.menu ? t.push(...this.flattenMenu(l.menu)) : t.push(l);
|
21
|
+
}), t;
|
22
|
+
},
|
23
|
+
async getFormScheme() {
|
24
|
+
var i, r;
|
25
|
+
const e = this.flattenMenu(f.value);
|
26
|
+
e != null && e.length || this.$router.replace("/404");
|
27
|
+
const t = e == null ? void 0 : e.find((o) => {
|
28
|
+
var a, s;
|
29
|
+
return (o == null ? void 0 : o.path) == ((s = (a = this.$route) == null ? void 0 : a.query) == null ? void 0 : s.table);
|
30
|
+
});
|
31
|
+
t || this.$router.replace("/404");
|
32
|
+
const l = t == null ? void 0 : t.table;
|
33
|
+
this.table = l;
|
34
|
+
try {
|
35
|
+
const {
|
36
|
+
data: { form: o }
|
37
|
+
} = await b.get(`/api/template/table/${l}`), { data: a } = await b.get(
|
38
|
+
`/api/table/${this.table}/${(r = (i = this.$route) == null ? void 0 : i.query) == null ? void 0 : r.id}`
|
39
|
+
);
|
40
|
+
this.token = (a == null ? void 0 : a.token) || "", this.formValues = a || {};
|
41
|
+
const { data: s } = await b.get(`/api/template/form/${o}`);
|
42
|
+
this.scheme = (s == null ? void 0 : s.schema) || s, this.style = (s == null ? void 0 : s.style) || null;
|
43
|
+
} catch {
|
44
|
+
}
|
45
|
+
},
|
46
|
+
async onlyEditObject() {
|
47
|
+
var t, l, i, r, o, a, s, n, m;
|
48
|
+
const e = this.$refs.form;
|
49
|
+
try {
|
50
|
+
await e.doValidation(), await b.put(`/api/table/${this.token}`, this.formValues), await this.$notify({
|
51
|
+
title: "Успішно!",
|
52
|
+
message: "Об'єкт успішно створено",
|
53
|
+
type: "success"
|
54
|
+
});
|
55
|
+
} catch (c) {
|
56
|
+
const d = ((t = c == null ? void 0 : c.response) == null ? void 0 : t.data) || "";
|
57
|
+
let h = ((o = (r = (i = (l = Object.entries(e == null ? void 0 : e.formErrors)) == null ? void 0 : l[0]) == null ? void 0 : i[1]) == null ? void 0 : r[0]) == null ? void 0 : o.message) === "Це поле обов'язкове" ? "Заповніть обов'язкові поля" : (m = (n = (s = (a = Object.entries(e == null ? void 0 : e.formErrors)) == null ? void 0 : a[0]) == null ? void 0 : s[1]) == null ? void 0 : n[0]) == null ? void 0 : m.message;
|
58
|
+
this.$notify({
|
59
|
+
title: "Помилка!",
|
60
|
+
message: d || h || "Сталася помилка валідаціі",
|
61
|
+
type: "error"
|
62
|
+
});
|
63
|
+
}
|
64
|
+
},
|
65
|
+
async editObjectAndRedirect() {
|
66
|
+
var t, l, i, r, o, a, s, n, m;
|
67
|
+
const e = this.$refs.form;
|
68
|
+
try {
|
69
|
+
await e.doValidation(), await b.put(`/api/table/${this.token}`, this.formValues), await this.$router.back(), await this.$notify({
|
70
|
+
title: "Успішно!",
|
71
|
+
message: "Об'єкт успішно створено",
|
72
|
+
type: "success"
|
73
|
+
});
|
74
|
+
} catch (c) {
|
75
|
+
const d = ((t = c == null ? void 0 : c.response) == null ? void 0 : t.data) || "";
|
76
|
+
let h = ((o = (r = (i = (l = Object.entries(e == null ? void 0 : e.formErrors)) == null ? void 0 : l[0]) == null ? void 0 : i[1]) == null ? void 0 : r[0]) == null ? void 0 : o.message) === "Це поле обов'язкове" ? "Заповніть обов'язкові поля" : (m = (n = (s = (a = Object.entries(e == null ? void 0 : e.formErrors)) == null ? void 0 : a[0]) == null ? void 0 : s[1]) == null ? void 0 : n[0]) == null ? void 0 : m.message;
|
77
|
+
this.$notify({
|
78
|
+
title: "Помилка!",
|
79
|
+
message: d || h || "Сталася помилка валідаціі",
|
80
|
+
type: "error"
|
81
|
+
});
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}, $ = { class: "bg-gray-50 lg:w-[calc(100vw-260px)] w-[100vw]" }, _ = { class: "h-[76px] mt-[15px] flex items-center justify-between mx-[20px] px-[20px] bg-white border rounded-xl" }, E = { class: "flex items-center gap-[6px]" }, j = {
|
86
|
+
style: { height: "calc(100vh - 155px)" },
|
87
|
+
class: "bg-gray-50 p-[20px] flex lg:w-[calc(100vw-260px)] w-[100vw]"
|
88
|
+
}, O = { class: "bg-white w-full rounded-xl border p-[20px] overflow-auto [&::-webkit-scrollbar]:w-2 [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar:horizontal]:h-[8px] [&::-webkit-scrollbar-track]:bg-gray-100 [&::-webkit-scrollbar-thumb]:bg-gray-300 dark:[&::-webkit-scrollbar-track]:bg-neutral-700 dark:[&::-webkit-scrollbar-thumb]:bg-neutral-500" };
|
89
|
+
function C(e, t, l, i, r, o) {
|
90
|
+
var s;
|
91
|
+
const a = y("VsForm");
|
92
|
+
return p(), x("div", $, [
|
93
|
+
u("div", _, [
|
94
|
+
t[3] || (t[3] = u("h2", { class: "text-xl font-medium" }, "Редагувати", -1)),
|
95
|
+
u("div", E, [
|
96
|
+
u("button", {
|
97
|
+
onClick: t[0] || (t[0] = (n) => e.$router.back()),
|
98
|
+
class: "flex items-center px-3 py-2 text-sm font-medium text-gray-800 duration-300 bg-white border border-gray-100 rounded-lg shadow gap-x-2 focus:outline-none hover:bg-gray-50 hover:border-gray-100"
|
99
|
+
}, " Скасувати "),
|
100
|
+
u("button", {
|
101
|
+
onClick: t[1] || (t[1] = (...n) => o.editObjectAndRedirect && o.editObjectAndRedirect(...n)),
|
102
|
+
class: "inline-flex items-center px-3 py-2 text-sm font-medium text-white duration-300 bg-blue-600 border border-transparent rounded-lg gap-x-2 hover:bg-blue-700 hover:text-white"
|
103
|
+
}, " Зберегти ")
|
104
|
+
])
|
105
|
+
]),
|
106
|
+
u("div", j, [
|
107
|
+
u("div", O, [
|
108
|
+
r.scheme ? (p(), w(a, {
|
109
|
+
key: 0,
|
110
|
+
ref: "form",
|
111
|
+
scheme: r.scheme,
|
112
|
+
columns: (s = r.style) == null ? void 0 : s.columns,
|
113
|
+
style: k(r.style),
|
114
|
+
modelValue: r.formValues,
|
115
|
+
"onUpdate:modelValue": t[2] || (t[2] = (n) => r.formValues = n),
|
116
|
+
class: "p-0 mt-[20px]"
|
117
|
+
}, null, 8, ["scheme", "columns", "style", "modelValue"])) : v("", !0)
|
118
|
+
])
|
119
|
+
])
|
120
|
+
]);
|
121
|
+
}
|
122
|
+
const A = /* @__PURE__ */ g(V, [["render", C]]);
|
123
|
+
export {
|
124
|
+
A as default
|
125
|
+
};
|