@sankhyalabs/sankhyablocks 8.2.0-dev.1 → 8.2.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/dist/cjs/{ConfigStorage-12397f18.js → ConfigStorage-e9d7fa82.js} +51 -163
- package/dist/cjs/{DataFetcher-f2da1f79.js → DataFetcher-39b63a1e.js} +29 -67
- package/dist/cjs/{SnkFormConfigManager-13f79e37.js → SnkFormConfigManager-2f8eccd9.js} +21 -19
- package/dist/cjs/{dataunit-fetcher-e72068c1.js → dataunit-fetcher-15a7cc88.js} +1 -1
- package/dist/cjs/filter-bar-config-fetcher-24548cec.js +155 -0
- package/dist/cjs/{form-config-fetcher-5d62ab62.js → form-config-fetcher-ab3ce222.js} +3 -66
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{pesquisa-fetcher-8c363096.js → pesquisa-fetcher-96c042aa.js} +1 -1
- package/dist/cjs/resource-fetcher-64102551.js +68 -0
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/snk-actions-button.cjs.entry.js +11 -18
- package/dist/cjs/snk-application.cjs.entry.js +73 -51
- package/dist/cjs/snk-attach.cjs.entry.js +13 -7
- package/dist/cjs/snk-configurator.cjs.entry.js +1 -2
- package/dist/cjs/snk-crud.cjs.entry.js +9 -28
- package/dist/cjs/snk-data-exporter.cjs.entry.js +2 -2
- package/dist/cjs/{snk-data-unit-80a00ae4.js → snk-data-unit-d5109a08.js} +6 -8
- package/dist/cjs/snk-data-unit.cjs.entry.js +1 -1
- package/dist/cjs/snk-detail-view.cjs.entry.js +25 -18
- package/dist/cjs/snk-entity-list.cjs.entry.js +4 -0
- package/dist/cjs/snk-filter-bar.cjs.entry.js +17 -14
- package/dist/cjs/snk-filter-detail.cjs.entry.js +15 -1
- package/dist/cjs/snk-filter-modal-item.cjs.entry.js +19 -5
- package/dist/cjs/snk-form-config.cjs.entry.js +17 -6
- package/dist/cjs/snk-form-view.cjs.entry.js +1 -6
- package/dist/cjs/snk-form.cjs.entry.js +8 -12
- package/dist/cjs/snk-grid-config.cjs.entry.js +6 -5
- package/dist/cjs/snk-grid.cjs.entry.js +20 -20
- package/dist/cjs/{snk-guides-viewer-a7cd6fda.js → snk-guides-viewer-8c9693aa.js} +9 -18
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +8 -8
- package/dist/cjs/snk-personalized-filter.cjs.entry.js +16 -13
- package/dist/cjs/snk-print-selector.cjs.entry.js +1 -1
- package/dist/cjs/snk-simple-crud.cjs.entry.js +80 -22
- package/dist/cjs/snk-taskbar.cjs.entry.js +1 -2
- package/dist/collection/components/snk-actions-button/actions/index.js +4 -3
- package/dist/collection/components/snk-actions-button/snk-actions-button.js +4 -8
- package/dist/collection/components/snk-application/snk-application.js +65 -60
- package/dist/collection/components/snk-configurator/snk-configurator.js +1 -19
- package/dist/collection/components/snk-crud/snk-crud.js +8 -63
- package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js +15 -65
- package/dist/collection/components/snk-crud/subcomponents/snk-form-view.js +1 -27
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +30 -66
- package/dist/collection/components/snk-data-unit/snk-data-unit.js +7 -42
- package/dist/collection/components/snk-entity-list/snk-entity-list.js +23 -0
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-detail.js +12 -2
- package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.js +1 -1
- package/dist/collection/components/snk-filter-bar/filter-modal/subcomponents/snk-filter-modal-item.js +16 -21
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +12 -28
- package/dist/collection/components/snk-form/SnkFormConfigManager.js +19 -17
- package/dist/collection/components/snk-form/snk-form.js +2 -46
- package/dist/collection/components/snk-form/subcomponents/snk-form-config/snk-form-config.js +15 -5
- package/dist/collection/components/snk-grid/snk-grid.js +16 -110
- package/dist/collection/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.js +1 -19
- package/dist/collection/components/snk-personalized-filter/snk-personalized-filter.js +12 -28
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +9 -43
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +1 -19
- package/dist/collection/lib/configs/ConfigStorage.js +44 -33
- package/dist/collection/lib/dataUnit/InMemoryLoader.js +59 -2
- package/dist/collection/lib/http/data-fetcher/DataFetcher.js +29 -38
- package/dist/collection/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.js +24 -0
- package/dist/collection/lib/index.js +0 -10
- package/dist/collection/lib/utils/urlutils.js +0 -29
- package/dist/components/ConfigStorage.js +48 -161
- package/dist/components/DataFetcher.js +29 -67
- package/dist/components/SnkFormConfigManager.js +19 -17
- package/dist/components/filter-bar-config-fetcher.js +153 -0
- package/dist/components/form-config-fetcher.js +2 -64
- package/dist/components/resource-fetcher.js +66 -0
- package/dist/components/snk-actions-button2.js +9 -23
- package/dist/components/snk-application2.js +154 -132
- package/dist/components/snk-attach2.js +8 -1
- package/dist/components/snk-configurator2.js +1 -3
- package/dist/components/snk-crud.js +7 -29
- package/dist/components/snk-data-unit2.js +6 -10
- package/dist/components/snk-detail-view2.js +23 -28
- package/dist/components/snk-entity-list.js +4 -0
- package/dist/components/snk-filter-bar2.js +12 -12
- package/dist/components/snk-filter-detail2.js +12 -2
- package/dist/components/snk-filter-modal-item2.js +16 -5
- package/dist/components/snk-form-config2.js +15 -5
- package/dist/components/snk-form-view2.js +1 -6
- package/dist/components/snk-form.js +2 -9
- package/dist/components/snk-grid-config2.js +2 -4
- package/dist/components/snk-grid2.js +16 -23
- package/dist/components/snk-personalized-filter2.js +11 -11
- package/dist/components/snk-simple-crud2.js +69 -12
- package/dist/components/snk-taskbar2.js +1 -3
- package/dist/esm/{ConfigStorage-932ab366.js → ConfigStorage-1090289a.js} +49 -162
- package/dist/esm/{DataFetcher-7e18aa30.js → DataFetcher-a4ed43e7.js} +29 -67
- package/dist/esm/{SnkFormConfigManager-bb9afc3f.js → SnkFormConfigManager-de537eca.js} +21 -19
- package/dist/esm/{dataunit-fetcher-91a4eb82.js → dataunit-fetcher-8d0bfa4a.js} +1 -1
- package/dist/esm/filter-bar-config-fetcher-2417b8cf.js +153 -0
- package/dist/esm/{form-config-fetcher-aaaa79a6.js → form-config-fetcher-4065db9a.js} +3 -65
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{pesquisa-fetcher-56b30fb4.js → pesquisa-fetcher-7460b876.js} +1 -1
- package/dist/esm/resource-fetcher-45a70066.js +66 -0
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/snk-actions-button.entry.js +11 -18
- package/dist/esm/snk-application.entry.js +71 -49
- package/dist/esm/snk-attach.entry.js +9 -3
- package/dist/esm/snk-configurator.entry.js +1 -2
- package/dist/esm/snk-crud.entry.js +9 -28
- package/dist/esm/snk-data-exporter.entry.js +2 -2
- package/dist/esm/{snk-data-unit-3ab57d1a.js → snk-data-unit-3a0bbfcb.js} +6 -8
- package/dist/esm/snk-data-unit.entry.js +1 -1
- package/dist/esm/snk-detail-view.entry.js +25 -18
- package/dist/esm/snk-entity-list.entry.js +4 -0
- package/dist/esm/snk-filter-bar.entry.js +17 -14
- package/dist/esm/snk-filter-detail.entry.js +16 -2
- package/dist/esm/snk-filter-modal-item.entry.js +20 -6
- package/dist/esm/snk-form-config.entry.js +18 -7
- package/dist/esm/snk-form-view.entry.js +1 -6
- package/dist/esm/snk-form.entry.js +8 -12
- package/dist/esm/snk-grid-config.entry.js +6 -5
- package/dist/esm/snk-grid.entry.js +20 -20
- package/dist/esm/{snk-guides-viewer-cc709b5f.js → snk-guides-viewer-a6d39c18.js} +9 -18
- package/dist/esm/snk-guides-viewer.entry.js +8 -8
- package/dist/esm/snk-personalized-filter.entry.js +16 -13
- package/dist/esm/snk-print-selector.entry.js +1 -1
- package/dist/esm/snk-simple-crud.entry.js +71 -13
- package/dist/esm/snk-taskbar.entry.js +1 -2
- package/dist/sankhyablocks/p-0fb83448.js +1 -0
- package/dist/sankhyablocks/p-15aba6fb.entry.js +11 -0
- package/dist/sankhyablocks/p-216f081a.entry.js +1 -0
- package/dist/sankhyablocks/p-21e7c08e.entry.js +1 -0
- package/dist/sankhyablocks/p-2861d44f.entry.js +1 -0
- package/dist/sankhyablocks/p-2d883fe9.entry.js +1 -0
- package/dist/sankhyablocks/{p-d13c00b6.entry.js → p-3d6f91c2.entry.js} +1 -1
- package/dist/sankhyablocks/{p-f8e6b97e.js → p-44e66c8d.js} +1 -1
- package/dist/sankhyablocks/p-4514fc6a.entry.js +1 -0
- package/dist/sankhyablocks/p-4f4cd005.entry.js +1 -0
- package/dist/sankhyablocks/p-50c13cc8.entry.js +1 -0
- package/dist/sankhyablocks/p-52c6b2e7.js +1 -0
- package/dist/sankhyablocks/p-5994af77.js +56 -0
- package/dist/sankhyablocks/p-5df17074.js +1 -0
- package/dist/sankhyablocks/p-6bb904bb.entry.js +1 -0
- package/dist/sankhyablocks/p-6f0795c8.entry.js +1 -0
- package/dist/sankhyablocks/p-7588f006.entry.js +1 -0
- package/dist/sankhyablocks/p-847e6c20.js +17 -0
- package/dist/sankhyablocks/p-9471cbc9.entry.js +1 -0
- package/dist/sankhyablocks/{p-14eac6fe.js → p-9d18017a.js} +1 -1
- package/dist/sankhyablocks/p-9edad923.js +1 -0
- package/dist/sankhyablocks/p-a42dd503.entry.js +1 -0
- package/dist/sankhyablocks/{p-2d333d22.js → p-b978da60.js} +1 -1
- package/dist/sankhyablocks/p-befbc9ee.entry.js +1 -0
- package/dist/sankhyablocks/p-c6380ea2.entry.js +1 -0
- package/dist/sankhyablocks/{p-03bb1aea.entry.js → p-c6feb995.entry.js} +1 -1
- package/dist/sankhyablocks/p-c945318c.entry.js +1 -0
- package/dist/sankhyablocks/p-ccbfb1cf.entry.js +1 -0
- package/dist/sankhyablocks/p-d7c7a289.entry.js +1 -0
- package/dist/sankhyablocks/p-de69b4b0.entry.js +1 -0
- package/dist/sankhyablocks/p-f3b7b69e.js +10 -0
- package/dist/sankhyablocks/p-f7eded3a.entry.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-actions-button/actions/index.d.ts +1 -2
- package/dist/types/components/snk-application/snk-application.d.ts +13 -8
- package/dist/types/components/snk-configurator/snk-configurator.d.ts +0 -4
- package/dist/types/components/snk-crud/snk-crud.d.ts +0 -10
- package/dist/types/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.d.ts +0 -13
- package/dist/types/components/snk-crud/subcomponents/snk-form-view.d.ts +0 -5
- package/dist/types/components/snk-crud/subcomponents/snk-guides-viewer.d.ts +2 -13
- package/dist/types/components/snk-data-unit/snk-data-unit.d.ts +0 -8
- package/dist/types/components/snk-entity-list/snk-entity-list.d.ts +4 -0
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-detail.d.ts +3 -0
- package/dist/types/components/snk-filter-bar/filter-modal/snk-filter-modal.d.ts +1 -1
- package/dist/types/components/snk-filter-bar/filter-modal/subcomponents/snk-filter-modal-item.d.ts +4 -5
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +0 -4
- package/dist/types/components/snk-form/SnkFormConfigManager.d.ts +4 -5
- package/dist/types/components/snk-form/snk-form.d.ts +1 -9
- package/dist/types/components/snk-form/subcomponents/snk-form-config/snk-form-config.d.ts +2 -0
- package/dist/types/components/snk-grid/snk-grid.d.ts +1 -18
- package/dist/types/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.d.ts +0 -4
- package/dist/types/components/snk-personalized-filter/snk-personalized-filter.d.ts +1 -5
- package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +0 -8
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +0 -4
- package/dist/types/components.d.ts +21 -189
- package/dist/types/lib/configs/ConfigStorage.d.ts +13 -11
- package/dist/types/lib/dataUnit/InMemoryLoader.d.ts +7 -0
- package/dist/types/lib/http/data-fetcher/DataFetcher.d.ts +1 -1
- package/dist/types/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.d.ts +1 -0
- package/dist/types/lib/index.d.ts +0 -11
- package/dist/types/lib/utils/urlutils.d.ts +0 -14
- package/package.json +2 -2
- package/dist/cjs/ISave-d68ce3cd.js +0 -8
- package/dist/cjs/ResourceIDUtils-5ff86aa7.js +0 -12
- package/dist/cjs/auth-fetcher-319a4cb2.js +0 -34
- package/dist/collection/lib/resourceid/ResourceIDUtils.js +0 -7
- package/dist/components/ResourceIDUtils.js +0 -10
- package/dist/components/auth-fetcher.js +0 -32
- package/dist/esm/ISave-4412b20c.js +0 -8
- package/dist/esm/ResourceIDUtils-a114189a.js +0 -10
- package/dist/esm/auth-fetcher-6d9664b7.js +0 -32
- package/dist/sankhyablocks/p-01739b21.entry.js +0 -1
- package/dist/sankhyablocks/p-05dbc70e.entry.js +0 -1
- package/dist/sankhyablocks/p-41e897f1.js +0 -56
- package/dist/sankhyablocks/p-48a40939.js +0 -1
- package/dist/sankhyablocks/p-611aa624.entry.js +0 -1
- package/dist/sankhyablocks/p-66bb8c20.entry.js +0 -1
- package/dist/sankhyablocks/p-688dcb4c.js +0 -1
- package/dist/sankhyablocks/p-6f154396.entry.js +0 -1
- package/dist/sankhyablocks/p-787071a8.js +0 -1
- package/dist/sankhyablocks/p-8481bb59.entry.js +0 -1
- package/dist/sankhyablocks/p-8818d8f6.entry.js +0 -1
- package/dist/sankhyablocks/p-93f6ca04.entry.js +0 -1
- package/dist/sankhyablocks/p-9a270401.entry.js +0 -1
- package/dist/sankhyablocks/p-9e7d65a4.js +0 -1
- package/dist/sankhyablocks/p-a52a6c9d.js +0 -26
- package/dist/sankhyablocks/p-b6003974.entry.js +0 -1
- package/dist/sankhyablocks/p-c555075c.entry.js +0 -1
- package/dist/sankhyablocks/p-d4f9ee17.entry.js +0 -1
- package/dist/sankhyablocks/p-d53a9169.entry.js +0 -1
- package/dist/sankhyablocks/p-d7638f45.entry.js +0 -11
- package/dist/sankhyablocks/p-e086cc2a.entry.js +0 -1
- package/dist/sankhyablocks/p-e64f3e17.entry.js +0 -1
- package/dist/sankhyablocks/p-ed41b38c.js +0 -1
- package/dist/sankhyablocks/p-ed705cbb.entry.js +0 -1
- package/dist/sankhyablocks/p-efc10705.entry.js +0 -1
- package/dist/sankhyablocks/p-f74fe358.js +0 -1
- package/dist/sankhyablocks/p-f91e0c5d.entry.js +0 -1
- package/dist/sankhyablocks/p-fa523d6b.entry.js +0 -1
- package/dist/types/lib/resourceid/ResourceIDUtils.d.ts +0 -3
@@ -0,0 +1,153 @@
|
|
1
|
+
import { F as FilterItemType } from './filter-item-type.enum.js';
|
2
|
+
import { R as ResourceFetcher } from './resource-fetcher.js';
|
3
|
+
|
4
|
+
var __rest = (undefined && undefined.__rest) || function (s, e) {
|
5
|
+
var t = {};
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
7
|
+
t[p] = s[p];
|
8
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
9
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
10
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
11
|
+
t[p[i]] = s[p[i]];
|
12
|
+
}
|
13
|
+
return t;
|
14
|
+
};
|
15
|
+
function normalizeValue(value, type) {
|
16
|
+
if (value == undefined) {
|
17
|
+
return value;
|
18
|
+
}
|
19
|
+
if (value instanceof Date) {
|
20
|
+
return value.toISOString();
|
21
|
+
}
|
22
|
+
if (typeof value === "object") {
|
23
|
+
if (value instanceof Array) {
|
24
|
+
return value.map(item => {
|
25
|
+
if (FilterItemType.MULTI_LIST === type) {
|
26
|
+
const values = __rest(item, ["label"]);
|
27
|
+
return normalizeValue(values);
|
28
|
+
}
|
29
|
+
return normalizeValue(item);
|
30
|
+
});
|
31
|
+
}
|
32
|
+
else {
|
33
|
+
const normalized = Object.assign({}, value);
|
34
|
+
Object.keys(value).forEach(prop => {
|
35
|
+
if (value[prop] !== undefined) {
|
36
|
+
normalized[prop] = normalizeValue(value[prop], type);
|
37
|
+
}
|
38
|
+
else {
|
39
|
+
delete normalized[prop];
|
40
|
+
}
|
41
|
+
});
|
42
|
+
return normalized;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
return value;
|
46
|
+
}
|
47
|
+
class FilterBarConfigFetcher extends ResourceFetcher {
|
48
|
+
normalize(items) {
|
49
|
+
return items.map(item => {
|
50
|
+
const { id, value, fixed, visible, type, groupedItems } = item;
|
51
|
+
const stateItem = { id };
|
52
|
+
if (value) {
|
53
|
+
stateItem["value"] = normalizeValue(value, type);
|
54
|
+
}
|
55
|
+
if (fixed) {
|
56
|
+
stateItem["fixed"] = fixed;
|
57
|
+
}
|
58
|
+
if (groupedItems) {
|
59
|
+
if (groupedItems.length === 0) {
|
60
|
+
return;
|
61
|
+
}
|
62
|
+
if (groupedItems.filter(item => item.visible).length > 0) {
|
63
|
+
stateItem["visible"] = true;
|
64
|
+
}
|
65
|
+
stateItem["groupedItems"] = this.normalize(groupedItems);
|
66
|
+
}
|
67
|
+
else {
|
68
|
+
if (visible) {
|
69
|
+
stateItem["visible"] = true;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
return stateItem;
|
73
|
+
}).filter(item => item != undefined);
|
74
|
+
}
|
75
|
+
saveConfig(items, resourceID, configName) {
|
76
|
+
return this.saveResource(this.normalize(items), this.getPath(resourceID, configName));
|
77
|
+
}
|
78
|
+
getConfig(resourceID, configName, urlParams) {
|
79
|
+
return new Promise((accept, reject) => {
|
80
|
+
this.loadResource(this.getPath(resourceID, configName, urlParams))
|
81
|
+
.then((configAsString) => {
|
82
|
+
let fieldsList;
|
83
|
+
if (configAsString) {
|
84
|
+
const filterBarConfig = JSON.parse(configAsString);
|
85
|
+
fieldsList = this.buildFieldList(filterBarConfig.items);
|
86
|
+
}
|
87
|
+
accept(fieldsList || []);
|
88
|
+
})
|
89
|
+
.catch((error) => {
|
90
|
+
reject(error);
|
91
|
+
});
|
92
|
+
});
|
93
|
+
}
|
94
|
+
saveEntityListConfig(item, resourceID, configName) {
|
95
|
+
return new Promise((accept, reject) => {
|
96
|
+
this.getConfig(resourceID, configName).then(config => {
|
97
|
+
const state = config.map(({ id, value, fixed, visible, type, groupedItems }) => {
|
98
|
+
return Object.assign(Object.assign(Object.assign(Object.assign({ id }, (value && { value: normalizeValue(value, type) })), (fixed && { fixed })), (visible && { visible: true })), { groupedItems });
|
99
|
+
});
|
100
|
+
const index = state.findIndex(({ id }) => id === item.id);
|
101
|
+
const newItem = { id: item.id, value: normalizeValue(item.value, item.type), fixed: item.fixed, visible: true };
|
102
|
+
if (index > -1) {
|
103
|
+
state[index] = newItem;
|
104
|
+
}
|
105
|
+
else {
|
106
|
+
state.push(newItem);
|
107
|
+
}
|
108
|
+
this.saveResource(state, this.getPath(resourceID, configName)).then(resp => {
|
109
|
+
accept(resp);
|
110
|
+
}).catch(exception => {
|
111
|
+
reject(exception);
|
112
|
+
});
|
113
|
+
}).catch(exception => {
|
114
|
+
reject(exception);
|
115
|
+
});
|
116
|
+
});
|
117
|
+
}
|
118
|
+
buildFieldList(items) {
|
119
|
+
return items.map(item => {
|
120
|
+
var _a, _b;
|
121
|
+
if (item.type === FilterItemType.MULTI_LIST) {
|
122
|
+
const multiListValue = item.value;
|
123
|
+
item.value = (_b = (_a = multiListValue === null || multiListValue === void 0 ? void 0 : multiListValue.elements) !== null && _a !== void 0 ? _a : multiListValue === null || multiListValue === void 0 ? void 0 : multiListValue.members) !== null && _b !== void 0 ? _b : multiListValue;
|
124
|
+
}
|
125
|
+
return item;
|
126
|
+
});
|
127
|
+
}
|
128
|
+
getPath(resourceID, name, urlParams) {
|
129
|
+
let path = `cfg://filter/FilterBarState:${resourceID}`;
|
130
|
+
if (name) {
|
131
|
+
path += `.${name}`;
|
132
|
+
}
|
133
|
+
if (urlParams) {
|
134
|
+
path += this.buildQueryString(urlParams);
|
135
|
+
}
|
136
|
+
return path;
|
137
|
+
}
|
138
|
+
buildQueryString(urlParams) {
|
139
|
+
let queryString = '?';
|
140
|
+
for (let key in urlParams) {
|
141
|
+
if (!urlParams.hasOwnProperty(key)) {
|
142
|
+
continue;
|
143
|
+
}
|
144
|
+
if (queryString.length > 1) {
|
145
|
+
queryString += '&';
|
146
|
+
}
|
147
|
+
queryString += key + '=' + urlParams[key];
|
148
|
+
}
|
149
|
+
return queryString;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
export { FilterBarConfigFetcher as F };
|
@@ -1,68 +1,6 @@
|
|
1
1
|
import { d as dist, D as DataFetcher } from './DataFetcher.js';
|
2
2
|
import { ObjectUtils } from '@sankhyalabs/core';
|
3
|
-
|
4
|
-
class ResourceFetcher {
|
5
|
-
constructor() {
|
6
|
-
this.templateByQuery = new Map();
|
7
|
-
this.buldTemplates();
|
8
|
-
}
|
9
|
-
buldTemplates() {
|
10
|
-
this.templateByQuery.set("fetchResource", dist.gql `query($name: String!) {
|
11
|
-
$queryAlias$: fetchResource(name: $name){
|
12
|
-
resource
|
13
|
-
}
|
14
|
-
}`);
|
15
|
-
this.templateByQuery.set("saveResource", dist.gql `mutation($resource: InputResource!) {
|
16
|
-
$queryAlias$: saveResource(resource: $resource){
|
17
|
-
name
|
18
|
-
resource
|
19
|
-
}
|
20
|
-
}`);
|
21
|
-
}
|
22
|
-
loadResource(name) {
|
23
|
-
if (ResourceFetcher._loadingResource.has(name)) {
|
24
|
-
return ResourceFetcher._loadingResource.get(name);
|
25
|
-
}
|
26
|
-
const promiseLoadResource = new Promise((resolve, reject) => {
|
27
|
-
DataFetcher.get()
|
28
|
-
.callGraphQL({
|
29
|
-
values: { name },
|
30
|
-
query: this.templateByQuery.get("fetchResource"),
|
31
|
-
})
|
32
|
-
.then((result) => {
|
33
|
-
resolve(result === null || result === void 0 ? void 0 : result.resource);
|
34
|
-
ResourceFetcher._loadingResource.delete(name);
|
35
|
-
})
|
36
|
-
.catch((error) => {
|
37
|
-
reject(error);
|
38
|
-
ResourceFetcher._loadingResource.delete(name);
|
39
|
-
});
|
40
|
-
});
|
41
|
-
ResourceFetcher._loadingResource.set(name, promiseLoadResource);
|
42
|
-
return promiseLoadResource;
|
43
|
-
}
|
44
|
-
saveResource(resource, name) {
|
45
|
-
return new Promise((resolve, reject) => {
|
46
|
-
DataFetcher.get()
|
47
|
-
.callGraphQL({
|
48
|
-
values: {
|
49
|
-
resource: {
|
50
|
-
name: name,
|
51
|
-
resource: JSON.stringify(resource)
|
52
|
-
}
|
53
|
-
},
|
54
|
-
query: this.templateByQuery.get("saveResource")
|
55
|
-
})
|
56
|
-
.then((resp) => {
|
57
|
-
resolve(resp);
|
58
|
-
})
|
59
|
-
.catch((error) => {
|
60
|
-
reject(error);
|
61
|
-
});
|
62
|
-
});
|
63
|
-
}
|
64
|
-
}
|
65
|
-
ResourceFetcher._loadingResource = new Map();
|
3
|
+
import { R as ResourceFetcher } from './resource-fetcher.js';
|
66
4
|
|
67
5
|
class FormConfigFetcher extends ResourceFetcher {
|
68
6
|
constructor() {
|
@@ -238,4 +176,4 @@ var UserConfigType;
|
|
238
176
|
UserConfigType["SHARED"] = "SHARED";
|
239
177
|
})(UserConfigType || (UserConfigType = {}));
|
240
178
|
|
241
|
-
export { FormConfigFetcher as F,
|
179
|
+
export { FormConfigFetcher as F, UserConfigType as U };
|
@@ -0,0 +1,66 @@
|
|
1
|
+
import { d as dist, D as DataFetcher } from './DataFetcher.js';
|
2
|
+
|
3
|
+
class ResourceFetcher {
|
4
|
+
constructor() {
|
5
|
+
this.templateByQuery = new Map();
|
6
|
+
this.buldTemplates();
|
7
|
+
}
|
8
|
+
buldTemplates() {
|
9
|
+
this.templateByQuery.set("fetchResource", dist.gql `query($name: String!) {
|
10
|
+
$queryAlias$: fetchResource(name: $name){
|
11
|
+
resource
|
12
|
+
}
|
13
|
+
}`);
|
14
|
+
this.templateByQuery.set("saveResource", dist.gql `mutation($resource: InputResource!) {
|
15
|
+
$queryAlias$: saveResource(resource: $resource){
|
16
|
+
name
|
17
|
+
resource
|
18
|
+
}
|
19
|
+
}`);
|
20
|
+
}
|
21
|
+
loadResource(name) {
|
22
|
+
if (ResourceFetcher._loadingResource.has(name)) {
|
23
|
+
return ResourceFetcher._loadingResource.get(name);
|
24
|
+
}
|
25
|
+
const promiseLoadResource = new Promise((resolve, reject) => {
|
26
|
+
DataFetcher.get()
|
27
|
+
.callGraphQL({
|
28
|
+
values: { name },
|
29
|
+
query: this.templateByQuery.get("fetchResource"),
|
30
|
+
})
|
31
|
+
.then((result) => {
|
32
|
+
resolve(result === null || result === void 0 ? void 0 : result.resource);
|
33
|
+
ResourceFetcher._loadingResource.delete(name);
|
34
|
+
})
|
35
|
+
.catch((error) => {
|
36
|
+
reject(error);
|
37
|
+
ResourceFetcher._loadingResource.delete(name);
|
38
|
+
});
|
39
|
+
});
|
40
|
+
ResourceFetcher._loadingResource.set(name, promiseLoadResource);
|
41
|
+
return promiseLoadResource;
|
42
|
+
}
|
43
|
+
saveResource(resource, name) {
|
44
|
+
return new Promise((resolve, reject) => {
|
45
|
+
DataFetcher.get()
|
46
|
+
.callGraphQL({
|
47
|
+
values: {
|
48
|
+
resource: {
|
49
|
+
name: name,
|
50
|
+
resource: JSON.stringify(resource)
|
51
|
+
}
|
52
|
+
},
|
53
|
+
query: this.templateByQuery.get("saveResource")
|
54
|
+
})
|
55
|
+
.then((resp) => {
|
56
|
+
resolve(resp);
|
57
|
+
})
|
58
|
+
.catch((error) => {
|
59
|
+
reject(error);
|
60
|
+
});
|
61
|
+
});
|
62
|
+
}
|
63
|
+
}
|
64
|
+
ResourceFetcher._loadingResource = new Map();
|
65
|
+
|
66
|
+
export { ResourceFetcher as R };
|
@@ -4,11 +4,6 @@ import { D as DataFetcher } from './DataFetcher.js';
|
|
4
4
|
import { P as ParamType } from './ParamType.js';
|
5
5
|
import './pesquisa-fetcher.js';
|
6
6
|
import './index2.js';
|
7
|
-
import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
8
|
-
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
9
|
-
import './filter-item-type.enum.js';
|
10
|
-
import './form-config-fetcher.js';
|
11
|
-
import { R as ResourceIDUtils } from './ResourceIDUtils.js';
|
12
7
|
|
13
8
|
const SERVICE_ACTION_EXECUTE_JAVA = 'ActionButtonsSP.executeJava';
|
14
9
|
class JavaExecutor {
|
@@ -158,26 +153,18 @@ var RefreshType;
|
|
158
153
|
RefreshType["ALL"] = "ALL";
|
159
154
|
})(RefreshType || (RefreshType = {}));
|
160
155
|
|
161
|
-
var SaveErrorsEnum;
|
162
|
-
(function (SaveErrorsEnum) {
|
163
|
-
SaveErrorsEnum["LINK_AND_FILE_AT_THE_SAME_TIME"] = "LINK_AND_FILE_AT_THE_SAME_TIME";
|
164
|
-
SaveErrorsEnum["ANY_LINK_OR_FILE_FILLED"] = "ANY_LINK_OR_FILE_FILLED";
|
165
|
-
SaveErrorsEnum["UNKNOWN"] = "UNKNOWN";
|
166
|
-
})(SaveErrorsEnum || (SaveErrorsEnum = {}));
|
167
|
-
|
168
156
|
const MASTER_ROW_PROPERTY = "__MASTER_ROW__";
|
169
157
|
const ENTITY_NAME_PROPERTY = '__ENTITY_NAME__';
|
170
158
|
const NUFIN_COLUMN = 'NUFIN';
|
171
159
|
const SERVICE_GET_CONFIGURATIONS = 'SystemUtilsSP.getConf';
|
172
160
|
class Actions {
|
173
|
-
constructor(actionsExecuteInterface, dataUnit
|
161
|
+
constructor(actionsExecuteInterface, dataUnit) {
|
174
162
|
var _a;
|
175
163
|
this._lastValuesCache = {};
|
176
164
|
this._actionsExecuteInterface = actionsExecuteInterface;
|
177
165
|
this._dataUnit = dataUnit;
|
178
166
|
this._selectedRows = ((_a = dataUnit === null || dataUnit === void 0 ? void 0 : dataUnit.getSelectionInfo()) === null || _a === void 0 ? void 0 : _a.isAllRecords()) ? [] : dataUnit === null || dataUnit === void 0 ? void 0 : dataUnit.getSelectionInfo().records;
|
179
167
|
this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
180
|
-
this._appResourceId = appResourceId;
|
181
168
|
}
|
182
169
|
apply(action, hasParamsToSave) {
|
183
170
|
this._application.closePopUp();
|
@@ -440,7 +427,9 @@ class Actions {
|
|
440
427
|
}
|
441
428
|
}
|
442
429
|
async buildResourceId(actionId) {
|
443
|
-
|
430
|
+
let appResId = '';
|
431
|
+
appResId = await this._application.getResourceID();
|
432
|
+
return appResId + '.actionconfig.' + actionId;
|
444
433
|
}
|
445
434
|
prepareAndExecute(execSource, executeAction) {
|
446
435
|
this.addRows(execSource);
|
@@ -599,7 +588,7 @@ const SnkActionsButton = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
599
588
|
this.handleClick = (evt) => {
|
600
589
|
const selectedAction = this._actions.find((action) => action.actionID == evt.detail.id);
|
601
590
|
const executor = new ExecutorFactory(selectedAction.type).executor;
|
602
|
-
const action = new Actions(executor, this._dataUnit
|
591
|
+
const action = new Actions(executor, this._dataUnit);
|
603
592
|
action.execute(Object.assign({}, selectedAction));
|
604
593
|
this._showDropdown = false;
|
605
594
|
};
|
@@ -657,15 +646,12 @@ const SnkActionsButton = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
657
646
|
document.addEventListener("scroll", this.positionDropdown.bind(this));
|
658
647
|
}
|
659
648
|
async componentWillLoad() {
|
649
|
+
var _a;
|
660
650
|
this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
651
|
+
this._resourceID = await this._application.getResourceID();
|
661
652
|
this._isOrderActions = await this._application.getBooleanParam('global.ordenar.acoes.personalizadas');
|
662
|
-
|
663
|
-
this._dataUnit = snkDataUnit === null || snkDataUnit === void 0 ? void 0 : snkDataUnit.dataUnit;
|
664
|
-
this._resourceID = snkDataUnit === null || snkDataUnit === void 0 ? void 0 : snkDataUnit.resourceID;
|
653
|
+
this._dataUnit = (_a = this._element.parentElement) === null || _a === void 0 ? void 0 : _a.dataUnit;
|
665
654
|
this._entityName = this._dataUnit.name.split('/')[2];
|
666
|
-
if (this._resourceID == undefined) {
|
667
|
-
this._resourceID = await ResourceIDUtils.getResourceID();
|
668
|
-
}
|
669
655
|
this.setEvents();
|
670
656
|
this.getActions().then(() => {
|
671
657
|
this.loadItems();
|
@@ -729,4 +715,4 @@ function defineCustomElement() {
|
|
729
715
|
} });
|
730
716
|
}
|
731
717
|
|
732
|
-
export { SnkActionsButton as S,
|
718
|
+
export { SnkActionsButton as S, defineCustomElement as d };
|