@opengis/admin 0.1.76 → 0.1.78
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 +29 -29
- package/config.js +4 -4
- package/dist/{IconChevronDown-BMnTiJIv.js → IconChevronDown-DWLdkAUG.js} +1 -1
- package/dist/{add-page-BxK4iJe4.js → add-page-GDPnGgQK.js} +1 -1
- package/dist/{admin-interface-D9vWpTqM.js → admin-interface-DOqhM3SD.js} +4 -4
- package/dist/{admin-view-DPtlpZue.js → admin-view-xnJ3u3oI.js} +3 -3
- package/dist/admin.js +1 -1
- package/dist/admin.umd.cjs +41 -25
- package/dist/assets/logo.svg +41 -41
- package/dist/{card-page-KnsaeAPW.js → card-page-DhYFr0FI.js} +52 -50
- package/dist/{card-view-BAC53pSQ.js → card-view-CuKF08UR.js} +1 -1
- package/dist/{edit-page-D2KM1hue.js → edit-page-J0eDzIuJ.js} +1 -1
- package/dist/{import-file-C3Slz6rJ.js → import-file-REG5YZVe.js} +4905 -4713
- package/dist/style.css +1 -1
- package/module/settings/card/admin.roles.table/access.hbs +27 -27
- package/module/settings/card/admin.roles.table/general_info.hbs +16 -16
- package/module/settings/card/admin.roles.table/index.yml +14 -14
- package/module/settings/card/admin.roles.table/users.hbs +27 -27
- package/module/settings/card/admin.routes.table/general_info.hbs +40 -40
- package/module/settings/card/admin.routes.table/index.yml +8 -8
- package/module/settings/card/admin.routes.table/users.hbs +33 -33
- package/module/settings/card/admin.users.table/general_info.hbs +25 -25
- package/module/settings/card/admin.users.table/index.yml +12 -12
- package/module/settings/card/admin.users.table/logs.hbs +30 -30
- package/module/settings/card/admin.users.table/user_roles.hbs +24 -24
- package/module/settings/cls/core.actions.json +13 -13
- package/module/settings/cls/core.scope.json +13 -13
- package/module/settings/cls/properties.site_status.json +13 -13
- package/module/settings/cls/properties.widget_status.json +13 -13
- package/module/settings/cls/users.user_type.json +13 -13
- package/module/settings/form/admin.access.form.json +36 -36
- package/module/settings/form/admin.custom_column.form.json +71 -71
- package/module/settings/form/admin.properties.form.json +15 -15
- package/module/settings/form/admin.roles.form.json +19 -19
- package/module/settings/form/admin.routes.form.json +25 -25
- package/module/settings/form/admin.user_properties.form.json +15 -15
- package/module/settings/form/admin.user_roles.form.json +21 -21
- package/module/settings/form/admin.users.form.json +153 -153
- package/module/settings/form/user.user_roles.form.json +13 -13
- package/module/settings/interface/admin.properties.json +4 -4
- package/module/settings/interface/admin.roles.json +4 -4
- package/module/settings/interface/admin.routes.json +4 -4
- package/module/settings/interface/admin.users.json +4 -4
- package/module/settings/menu.json +50 -50
- package/module/settings/select/core.roles.json +2 -2
- package/module/settings/select/core.routes.sql +1 -1
- package/module/settings/select/core.user_mentioned.sql +1 -1
- package/module/settings/select/core.user_uid.sql +1 -1
- package/module/settings/table/admin.access.table.json +83 -83
- package/module/settings/table/admin.custom_column.table.json +99 -99
- package/module/settings/table/admin.properties.table.json +39 -39
- package/module/settings/table/admin.roles.table.json +64 -64
- package/module/settings/table/admin.routes.table.json +68 -68
- package/module/settings/table/admin.user_properties.table.json +34 -34
- package/module/settings/table/admin.user_roles.table.json +72 -72
- package/module/settings/table/admin.users.table.json +121 -121
- package/package.json +82 -82
- package/plugin.js +27 -27
- package/server/helpers/controllers/badge.js +11 -11
- package/server/helpers/controllers/hb.js +2 -2
- package/server/helpers/controllers/map.js +2 -2
- package/server/helpers/controllers/mls.js +2 -2
- package/server/helpers/controllers/vue.js +2 -2
- package/server/helpers/index.mjs +15 -15
- package/server/plugins/adminHook.js +93 -93
- package/server/plugins/cron.js +10 -10
- package/server/plugins/docs.js +28 -28
- package/server/plugins/hook.js +214 -214
- package/server/plugins/vite.js +71 -71
- package/server/routes/calendar/controllers/calendar.data.js +88 -88
- package/server/routes/calendar/index.mjs +7 -7
- package/server/routes/calendar/schema.js +21 -21
- package/server/routes/data/controllers/cardData.js +61 -57
- package/server/routes/data/controllers/cardTabData.js +49 -49
- package/server/routes/data/controllers/funcs/getFilterSQL/index.js +92 -92
- package/server/routes/data/controllers/funcs/getFilterSQL/util/formatValue.js +170 -170
- package/server/routes/data/controllers/funcs/getFilterSQL/util/getCustomQuery.js +13 -13
- package/server/routes/data/controllers/funcs/getFilterSQL/util/getFilterQuery.js +64 -64
- package/server/routes/data/controllers/funcs/getFilterSQL/util/getOptimizedQuery.js +12 -12
- package/server/routes/data/controllers/funcs/getFilterSQL/util/getTableSql.js +34 -34
- package/server/routes/data/controllers/tableData.js +11 -11
- package/server/routes/data/controllers/tableDataId.js +27 -27
- package/server/routes/data/controllers/tableFilter.js +63 -63
- package/server/routes/data/controllers/utils/assignTokens.js +30 -30
- package/server/routes/data/controllers/utils/getColumns.js +8 -8
- package/server/routes/data/index.mjs +15 -15
- package/server/routes/data/schema.js +54 -54
- package/server/routes/menu/controllers/getMenu.js +67 -67
- package/server/routes/menu/index.mjs +5 -5
- package/server/routes/notifications/controllers/readNotifications.js +27 -27
- package/server/routes/notifications/controllers/testEmail.js +35 -35
- package/server/routes/notifications/controllers/userNotifications.js +57 -57
- package/server/routes/notifications/funcs/addNotification.js +21 -21
- package/server/routes/notifications/funcs/sendNotification.js +105 -105
- package/server/routes/notifications/hook/onWidgetSet.js +57 -57
- package/server/routes/notifications/index.mjs +27 -27
- package/server/routes/notifications/schema.js +16 -16
- package/server/routes/properties/controllers/admin.properties.get.js +29 -29
- package/server/routes/properties/controllers/user.properties.get.js +34 -34
- package/server/routes/properties/controllers/user.properties.post.js +30 -30
- package/server/routes/properties/funcs/getSettings.js +56 -56
- package/server/routes/properties/funcs/setSettings.js +44 -44
- package/server/routes/properties/funcs/utils/dataInsert.js +26 -26
- package/server/routes/properties/index.mjs +14 -14
- package/server/routes/properties/schema.js +10 -10
- package/server/routes/root.mjs +3 -3
- package/server/routes/templates/controllers/getTemplate.js +22 -22
- package/server/routes/templates/index.mjs +14 -14
- package/server/routes/templates/scheme.js +8 -8
- package/server/routes/user/controllers/user.cls.id.js +14 -14
- package/server/routes/user/controllers/user.cls.js +71 -71
- package/server/routes/user/controllers/user.cls.post.js +52 -52
- package/server/routes/user/controllers/user.info.js +17 -17
- package/server/routes/user/schema.js +14 -14
- package/server/routes/widget/controllers/utils/historyFormat.js +75 -75
- package/server/routes/widget/controllers/utils/obj2db.js +13 -13
- package/server/routes/widget/controllers/widget.del.js +41 -41
- package/server/routes/widget/controllers/widget.get.js +96 -96
- package/server/routes/widget/controllers/widget.set.js +76 -76
- package/server/routes/widget/index.mjs +39 -39
- package/server/templates/cls/itree.recrzone_category.json +73 -73
- package/server/templates/cls/test.json +9 -9
- package/server/templates/form/admin.user_cls.data.form.json +49 -49
- package/server/templates/form/admin.user_group_rel.form.json +21 -21
- package/server/templates/form/cp_building.form.json +32 -32
- package/server/templates/form/form-user-pass.json +10 -10
- package/server/templates/form/form-user_group.json +39 -39
- package/server/templates/form/form-users.json +156 -156
- package/server/templates/form/user_group_access.form.json +22 -22
- package/server/templates/select/account_id.json +2 -2
- package/server/templates/table/gis.dataset.table.json +43 -43
- package/server/templates/table/management.user_group.table.json +112 -112
- package/server/templates/table/management.users.table.json +126 -126
- package/utils.js +26 -26
package/README.md
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
# admin
|
|
2
|
-
|
|
3
|
-
[](https://www.npmjs.com/package/@opengis/admin)
|
|
4
|
-
[](http://standardjs.com/)
|
|
5
|
-
|
|
6
|
-
It standardizes the entire web-site administration
|
|
7
|
-
|
|
8
|
-
## Install
|
|
9
|
-
|
|
10
|
-
```bash
|
|
11
|
-
npm i @opengis/admin
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
## Publish
|
|
15
|
-
|
|
16
|
-
```bash
|
|
17
|
-
npm run build
|
|
18
|
-
npm publish
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Usage
|
|
22
|
-
|
|
23
|
-
```js
|
|
24
|
-
fastify.register(import('@opengis/admin'), config);
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
## Documenation
|
|
28
|
-
|
|
29
|
-
For a detailed understanding of `admin`, its features, and how to use them, refer to our [Documentation](https://apidocs.softpro.ua/opengis/plugin/).
|
|
1
|
+
# admin
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@opengis/admin)
|
|
4
|
+
[](http://standardjs.com/)
|
|
5
|
+
|
|
6
|
+
It standardizes the entire web-site administration
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm i @opengis/admin
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Publish
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm run build
|
|
18
|
+
npm publish
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```js
|
|
24
|
+
fastify.register(import('@opengis/admin'), config);
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Documenation
|
|
28
|
+
|
|
29
|
+
For a detailed understanding of `admin`, its features, and how to use them, refer to our [Documentation](https://apidocs.softpro.ua/opengis/plugin/).
|
package/config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { readFile } from 'fs/promises';
|
|
2
|
-
import fs from 'fs';
|
|
3
|
-
const config = fs.existsSync('config.json') ? JSON.parse(await readFile('config.json')) : {};
|
|
4
|
-
|
|
1
|
+
import { readFile } from 'fs/promises';
|
|
2
|
+
import fs from 'fs';
|
|
3
|
+
const config = fs.existsSync('config.json') ? JSON.parse(await readFile('config.json')) : {};
|
|
4
|
+
|
|
5
5
|
export default config;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { openBlock as e, createElementBlock as t, createElementVNode as n } from "vue";
|
|
2
|
-
import { _ as r } from "./import-file-
|
|
2
|
+
import { _ as r } from "./import-file-REG5YZVe.js";
|
|
3
3
|
const l = {}, s = {
|
|
4
4
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
5
|
viewBox: "0 0 24 24",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as d, u as h, a as i } from "./import-file-
|
|
1
|
+
import { _ as d, u as h, a as i } from "./import-file-REG5YZVe.js";
|
|
2
2
|
import { resolveComponent as p, openBlock as m, createElementBlock as g, createElementVNode as n, createBlock as f, createCommentVNode as x } from "vue";
|
|
3
3
|
const w = {
|
|
4
4
|
data() {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as k, b as Ie, a as V, c as Te, d as Ve, e as De, f as Fe, I as Me, u as ge, s as je } from "./import-file-
|
|
1
|
+
import { _ as k, b as Ie, a as V, c as Te, d as Ve, e as De, f as Fe, I as Me, u as ge, s as je } from "./import-file-REG5YZVe.js";
|
|
2
2
|
import { openBlock as l, createElementBlock as a, createTextVNode as D, toDisplayString as A, createCommentVNode as w, createStaticVNode as j, Fragment as $, createElementVNode as r, resolveComponent as h, createVNode as x, withCtx as C, createBlock as _, withModifiers as qe, renderList as T, normalizeClass as I, withDirectives as z, vModelCheckbox as Be, resolveDynamicComponent as B, Transition as P, renderSlot as ze, vShow as _e, getCurrentInstance as Pe, ref as xe, normalizeStyle as ye } from "vue";
|
|
3
|
-
import { I as Le } from "./IconChevronDown-
|
|
3
|
+
import { I as Le } from "./IconChevronDown-DWLdkAUG.js";
|
|
4
4
|
const Ue = {
|
|
5
5
|
data() {
|
|
6
6
|
return {
|
|
@@ -745,7 +745,7 @@ function mn(t, e, s, i, n, o) {
|
|
|
745
745
|
])
|
|
746
746
|
]);
|
|
747
747
|
}
|
|
748
|
-
const gn = /* @__PURE__ */ k(dn, [["render", mn], ["__scopeId", "data-v-
|
|
748
|
+
const gn = /* @__PURE__ */ k(dn, [["render", mn], ["__scopeId", "data-v-e1f274c9"]]), xn = {
|
|
749
749
|
components: {
|
|
750
750
|
AdminComponentIs: ve,
|
|
751
751
|
AdminTree: gn,
|
|
@@ -1504,7 +1504,7 @@ function Vs(t, e, s, i, n, o) {
|
|
|
1504
1504
|
])
|
|
1505
1505
|
]);
|
|
1506
1506
|
}
|
|
1507
|
-
const Ds = /* @__PURE__ */ k(as, [["render", Vs], ["__scopeId", "data-v-
|
|
1507
|
+
const Ds = /* @__PURE__ */ k(as, [["render", Vs], ["__scopeId", "data-v-33658824"]]), Fs = {
|
|
1508
1508
|
components: { AdminTable: Ds },
|
|
1509
1509
|
data() {
|
|
1510
1510
|
return {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as w, I as Q, u as B, s as F, V as R, a as O } from "./import-file-
|
|
1
|
+
import { _ as w, I as Q, u as B, s as F, V as R, a as O } from "./import-file-REG5YZVe.js";
|
|
2
2
|
import { openBlock as s, createElementBlock as r, createElementVNode as t, createStaticVNode as q, resolveComponent as v, normalizeClass as E, createTextVNode as L, toDisplayString as V, createVNode as c, Transition as T, withCtx as M, withDirectives as G, Fragment as N, renderList as S, vShow as J, ref as D, createCommentVNode as H, getCurrentInstance as K, watch as W, onBeforeUnmount as X, createBlock as Y, withModifiers as ee } from "vue";
|
|
3
|
-
import { I as te } from "./IconChevronDown-
|
|
3
|
+
import { I as te } from "./IconChevronDown-DWLdkAUG.js";
|
|
4
4
|
const oe = {}, ne = {
|
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6
6
|
viewBox: "0 0 24 24",
|
|
@@ -630,7 +630,7 @@ function It(o, e, n, l, a, i) {
|
|
|
630
630
|
])
|
|
631
631
|
]);
|
|
632
632
|
}
|
|
633
|
-
const Dt = /* @__PURE__ */ w(Mt, [["render", It], ["__scopeId", "data-v-
|
|
633
|
+
const Dt = /* @__PURE__ */ w(Mt, [["render", It], ["__scopeId", "data-v-36fd7ac9"]]);
|
|
634
634
|
export {
|
|
635
635
|
Dt as default
|
|
636
636
|
};
|
package/dist/admin.js
CHANGED