@opengis/admin 0.2.133 → 0.2.135

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.
@@ -1,21 +1,21 @@
1
- function onCheck(rule, data) {
2
- const val = data[rule[0]];
3
- // console.log(val, rule[1], rule[2])
4
- if (rule[1] === '==') return val === rule[2];
5
- if (rule[1] === '!=') return val !== rule[2];
6
- if (rule[1] === 'in' && rule[2].split) return rule[2].split(',').includes(val);
7
- if (rule[1] === 'in' && rule[2].includes) return rule[2].includes(val);
8
-
9
- if (rule[1] === 'not in' && rule[2].split) return !rule[2].split(',').includes(val);
10
- if (rule[1] === 'not in' && rule[2].includes) return !rule[2].includes(val);
11
-
12
- if (rule[1] === '>') return val > rule[2];
13
- if (rule[1] === '<') return val < rule[2];
14
- }
15
- export default function conditions(rules, data) {
16
- if (!rules?.length) return true;
17
- const result = Array.isArray(rules[0]) ? !rules.filter(el => !onCheck(el, data)).length : onCheck(rules, data)
18
- // console.log(rules, result)
19
- return result;
20
-
1
+ function onCheck(rule, data) {
2
+ const val = data[rule[0]];
3
+ // console.log(val, rule[1], rule[2])
4
+ if (rule[1] === '==') return val === rule[2];
5
+ if (rule[1] === '!=') return val !== rule[2];
6
+ if (rule[1] === 'in' && rule[2].split) return rule[2].split(',').includes(val);
7
+ if (rule[1] === 'in' && rule[2].includes) return rule[2].includes(val);
8
+
9
+ if (rule[1] === 'not in' && rule[2].split) return !rule[2].split(',').includes(val);
10
+ if (rule[1] === 'not in' && rule[2].includes) return !rule[2].includes(val);
11
+
12
+ if (rule[1] === '>') return val > rule[2];
13
+ if (rule[1] === '<') return val < rule[2];
14
+ }
15
+ export default function conditions(rules, data) {
16
+ if (!rules?.length) return true;
17
+ const result = Array.isArray(rules[0]) ? !rules.filter(el => !onCheck(el, data)).length : onCheck(rules, data)
18
+ // console.log(rules, result)
19
+ return result;
20
+
21
21
  }
@@ -1,8 +1,8 @@
1
1
  <div style="display:flex; flex-direction: row; align-items: start; justify-content:space-between">
2
2
  <div
3
3
  style=" display: flex; flex-direction:column; text-align: center; align-items: center; justify-content: center; width:100%;">
4
- {{#if table_title}}<h2 style="text-align: center;">{{table_title}}</h2>{{/if}}
5
- {{#if title}}<h3>{{title}}</h3>{{/if}}
4
+ {{#if title}}<h3 style="font-size: 20px;">{{title}}</h3>{{/if}}
5
+ {{#if table_title}}<h3 style="text-align: center; font-size: 18px;">{{table_title}}</h3>{{/if}}
6
6
  <p>{{formatDate 0 format="dd.mm.yy / hh:mi"}}</p>
7
7
  </div>
8
8
  <div class="qr-wrapper" style=" width:180px; height:180px;">{{{qr}}}</div>
@@ -1,104 +0,0 @@
1
- import { _ as g, u as f, e as u } from "./import-file-CztGvKRc.js";
2
- import { resolveComponent as x, openBlock as h, createElementBlock as w, createElementVNode as n, createBlock as y, 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
- api: "",
11
- style: null
12
- };
13
- },
14
- mounted() {
15
- this.getFormScheme();
16
- },
17
- methods: {
18
- flattenMenu(t) {
19
- const e = [];
20
- return t.forEach((a) => {
21
- a.menu ? e.push(...this.flattenMenu(a.menu)) : e.push(a);
22
- }), e;
23
- },
24
- async getFormScheme() {
25
- var i, o;
26
- const t = this.flattenMenu(f.value);
27
- t != null && t.length || this.$router.replace("/404");
28
- const e = t == null ? void 0 : t.find((s) => {
29
- var r, l;
30
- return (s == null ? void 0 : s.path) == ((l = (r = this.$route) == null ? void 0 : r.query) == null ? void 0 : l.table);
31
- });
32
- e || this.$router.replace("/404");
33
- const a = e == null ? void 0 : e.table;
34
- this.table = a;
35
- try {
36
- const s = await u.get(`/api/table-data/${a}`), { data: r } = await u.get(
37
- `/api/template/form/${(i = s == null ? void 0 : s.data) == null ? void 0 : i.form}`
38
- );
39
- this.scheme = (r == null ? void 0 : r.schema) || r, this.style = (r == null ? void 0 : r.style) || null, this.api = (r == null ? void 0 : r.api) || "", this.token = (o = s == null ? void 0 : s.data) == null ? void 0 : o.addToken;
40
- } catch {
41
- }
42
- },
43
- async createObject() {
44
- var e, a, i, o, s, r, l, m, b;
45
- const t = this.$refs.form;
46
- try {
47
- await t.doValidation(), await u.post(
48
- this.api || `/api/table/${this.token}`,
49
- this.formValues
50
- ), await this.$router.back(), await this.$notify({
51
- title: "Успішно!",
52
- message: "Об'єкт успішно створено",
53
- type: "success"
54
- });
55
- } catch (c) {
56
- const p = ((e = c == null ? void 0 : c.response) == null ? void 0 : e.data) || "";
57
- let d = ((s = (o = (i = (a = Object.entries(t == null ? void 0 : t.formErrors)) == null ? void 0 : a[0]) == null ? void 0 : i[1]) == null ? void 0 : o[0]) == null ? void 0 : s.message) === "Це поле обов'язкове" ? "Заповніть обов'язкові поля" : (b = (m = (l = (r = Object.entries(t == null ? void 0 : t.formErrors)) == null ? void 0 : r[0]) == null ? void 0 : l[1]) == null ? void 0 : m[0]) == null ? void 0 : b.message;
58
- this.$notify({
59
- title: "Помилка!",
60
- message: p || d || "Сталася помилка валідаціі",
61
- type: "error"
62
- });
63
- }
64
- }
65
- }
66
- }, _ = { 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" }, j = { class: "flex items-center gap-[6px]" }, E = {
67
- style: { height: "calc(100vh - 165px)" },
68
- class: "bg-gray-50 p-[20px] flex lg:w-[calc(100vw-260px)] w-[100vw]"
69
- }, 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" };
70
- function C(t, e, a, i, o, s) {
71
- const r = x("VsForm");
72
- return h(), w("div", _, [
73
- n("div", $, [
74
- e[3] || (e[3] = n("h2", { class: "text-xl font-medium" }, "Створити", -1)),
75
- n("div", j, [
76
- n("button", {
77
- onClick: e[0] || (e[0] = (l) => t.$router.back()),
78
- 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"
79
- }, " Скасувати "),
80
- n("button", {
81
- onClick: e[1] || (e[1] = (...l) => s.createObject && s.createObject(...l)),
82
- 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"
83
- }, " Зберегти ")
84
- ])
85
- ]),
86
- n("div", E, [
87
- n("div", O, [
88
- o.scheme ? (h(), y(r, {
89
- key: 0,
90
- ref: "form",
91
- scheme: o.scheme,
92
- style: k(o.style),
93
- modelValue: o.formValues,
94
- "onUpdate:modelValue": e[2] || (e[2] = (l) => o.formValues = l),
95
- class: "p-0 mt-[20px]"
96
- }, null, 8, ["scheme", "style", "modelValue"])) : v("", !0)
97
- ])
98
- ])
99
- ]);
100
- }
101
- const B = /* @__PURE__ */ g(V, [["render", C]]);
102
- export {
103
- B as default
104
- };
@@ -1,125 +0,0 @@
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
- };