@sankhyalabs/sankhyablocks 2.1.2 → 2.1.4
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/AuthorizationConfig-79ffae4b.js +7 -0
- package/dist/cjs/{form-config-fetcher-2de7c16a.js → ConfigStorage-c112de1d.js} +101 -1
- package/dist/cjs/{SnkMessageBuilder-89482d28.js → SnkMessageBuilder-61f00e7f.js} +33 -5
- package/dist/cjs/{constants-9056ca9e.js → constants-a47a5190.js} +15 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/snk-application.cjs.entry.js +32 -65
- package/dist/cjs/snk-config-options.cjs.entry.js +1 -1
- package/dist/cjs/{snk-field-config_2.cjs.entry.js → snk-configurator_3.cjs.entry.js} +134 -13
- package/dist/cjs/snk-crud.cjs.entry.js +23 -6
- package/dist/cjs/snk-data-unit.cjs.entry.js +1 -1
- package/dist/cjs/{snk-configurator_6.cjs.entry.js → snk-filter-bar_7.cjs.entry.js} +528 -198
- package/dist/cjs/snk-form-config.cjs.entry.js +30 -24
- package/dist/cjs/snk-form.cjs.entry.js +30 -17
- package/dist/cjs/snk-tab-config.cjs.entry.js +1 -1
- package/dist/cjs/{taskbar-elements-90350a55.js → taskbar-elements-a0b857c0.js} +5 -9
- package/dist/collection/collection-manifest.json +3 -2
- package/dist/collection/components/snk-application/snk-application.js +4 -3
- package/dist/collection/components/snk-configurator/AuthorizationConfig.js +5 -0
- package/dist/collection/components/snk-configurator/snk-configurator.css +124 -0
- package/dist/collection/components/snk-configurator/snk-configurator.js +126 -181
- package/dist/collection/components/snk-crud/snk-crud.js +23 -5
- package/dist/collection/components/snk-form/snk-form.js +37 -54
- package/dist/collection/components/snk-form/subcomponents/snk-form-config/snk-form-config.js +47 -28
- package/dist/collection/components/snk-grid/snk-grid.js +69 -20
- package/dist/collection/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.css +166 -0
- package/dist/collection/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.js +605 -0
- package/dist/collection/components/snk-grid/subcomponents/snk-select-box/snk-select-box.css +9 -0
- package/dist/collection/components/snk-grid/subcomponents/snk-select-box/snk-select-box.js +70 -0
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +5 -9
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +39 -11
- package/dist/collection/lib/configs/ConfigStorage.js +15 -15
- package/dist/collection/lib/http/data-fetcher/fetchers/dataunit-fetcher.js +1 -0
- package/dist/collection/lib/message/SnkMessageBuilder.js +5 -3
- package/dist/collection/lib/message/resources/snk-configurator.msg.js +0 -3
- package/dist/collection/lib/message/resources/snk-form.msg.js +3 -0
- package/dist/collection/lib/message/resources/snk-grid.msg.js +26 -0
- package/dist/collection/lib/utils/constants.js +14 -0
- package/dist/components/AuthorizationConfig.js +7 -0
- package/dist/components/{form-config-fetcher.js → ConfigStorage.js} +100 -2
- package/dist/components/SnkMessageBuilder.js +33 -5
- package/dist/components/constants.js +15 -1
- package/dist/components/index.d.ts +2 -1
- package/dist/components/index.js +2 -1
- package/dist/components/snk-application2.js +4 -37
- package/dist/components/snk-configurator2.js +63 -165
- package/dist/components/snk-crud.js +53 -29
- package/dist/components/snk-form-config2.js +25 -19
- package/dist/components/snk-form2.js +33 -32
- package/dist/components/{snk-config-modal.d.ts → snk-grid-config.d.ts} +4 -4
- package/dist/components/snk-grid-config.js +6 -0
- package/dist/components/snk-grid-config2.js +497 -0
- package/dist/components/snk-grid2.js +65 -27
- package/dist/components/snk-select-box.d.ts +11 -0
- package/dist/components/snk-select-box.js +6 -0
- package/dist/components/snk-select-box2.js +38 -0
- package/dist/components/snk-taskbar2.js +45 -33
- package/dist/esm/AuthorizationConfig-dcbd207a.js +7 -0
- package/dist/esm/{form-config-fetcher-96c6c2dc.js → ConfigStorage-99025655.js} +100 -2
- package/dist/esm/{SnkMessageBuilder-a27fc561.js → SnkMessageBuilder-f5ef87df.js} +33 -5
- package/dist/esm/{constants-c6039d3d.js → constants-babe1a08.js} +15 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/snk-application.entry.js +5 -38
- package/dist/esm/snk-config-options.entry.js +1 -1
- package/dist/esm/{snk-field-config_2.entry.js → snk-configurator_3.entry.js} +134 -14
- package/dist/esm/snk-crud.entry.js +23 -6
- package/dist/esm/snk-data-unit.entry.js +1 -1
- package/dist/esm/{snk-configurator_6.entry.js → snk-filter-bar_7.entry.js} +529 -200
- package/dist/esm/snk-form-config.entry.js +25 -19
- package/dist/esm/snk-form.entry.js +30 -17
- package/dist/esm/snk-tab-config.entry.js +1 -1
- package/dist/esm/{taskbar-elements-0f41cd77.js → taskbar-elements-4d6584cd.js} +5 -9
- package/dist/sankhyablocks/p-105cd4a8.entry.js +1 -0
- package/dist/sankhyablocks/p-4131d41e.entry.js +1 -0
- package/dist/sankhyablocks/{p-8706fe65.entry.js → p-43aff8f5.entry.js} +1 -1
- package/dist/sankhyablocks/p-53f33e9d.entry.js +1 -0
- package/dist/sankhyablocks/p-639b8f6e.entry.js +76 -0
- package/dist/sankhyablocks/{p-a5b26df2.js → p-6673c77c.js} +1 -1
- package/dist/sankhyablocks/p-6ba8f415.js +26 -0
- package/dist/sankhyablocks/{p-2517529d.js → p-877bd6cf.js} +1 -1
- package/dist/sankhyablocks/p-87896198.entry.js +1 -0
- package/dist/sankhyablocks/p-bd6d4a83.js +1 -0
- package/dist/sankhyablocks/p-cae38f51.entry.js +1 -0
- package/dist/sankhyablocks/{p-f37cdeb5.entry.js → p-cd03ea9e.entry.js} +1 -1
- package/dist/sankhyablocks/p-dc36cfbf.js +1 -0
- package/dist/sankhyablocks/{p-92782503.entry.js → p-eb94df0b.entry.js} +1 -1
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-application/snk-application.d.ts +0 -1
- package/dist/types/components/snk-configurator/AuthorizationConfig.d.ts +4 -0
- package/dist/types/components/snk-configurator/snk-configurator.d.ts +21 -24
- package/dist/types/components/snk-crud/snk-crud.d.ts +6 -0
- package/dist/types/components/snk-form/snk-form.d.ts +6 -9
- package/dist/types/components/snk-form/subcomponents/snk-form-config/snk-form-config.d.ts +7 -3
- package/dist/types/components/snk-grid/snk-grid.d.ts +13 -3
- package/dist/types/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.d.ts +66 -0
- package/dist/types/components/snk-grid/subcomponents/snk-select-box/snk-select-box.d.ts +7 -0
- package/dist/types/components/snk-taskbar/elements/taskbar-elements.d.ts +3 -4
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +3 -1
- package/dist/types/components.d.ts +104 -74
- package/dist/types/lib/configs/ConfigStorage.d.ts +3 -3
- package/dist/types/lib/message/resources/snk-configurator.msg.d.ts +0 -1
- package/dist/types/lib/message/resources/snk-grid.msg.d.ts +2 -0
- package/dist/types/lib/utils/constants.d.ts +14 -0
- package/package.json +1 -1
- package/react/components.d.ts +2 -1
- package/react/components.js +2 -1
- package/react/components.js.map +1 -1
- package/dist/cjs/configurableElementsStorage-93459c72.js +0 -20
- package/dist/cjs/snk-config-modal.cjs.entry.js +0 -62
- package/dist/collection/components/snk-configurator/subcomponents/configModalProvider/configurableElementsStorage.js +0 -16
- package/dist/collection/components/snk-configurator/subcomponents/snk-config-modal/snk-config-modal.css +0 -122
- package/dist/collection/components/snk-configurator/subcomponents/snk-config-modal/snk-config-modal.js +0 -137
- package/dist/components/snk-config-modal.js +0 -6
- package/dist/components/snk-config-modal2.js +0 -91
- package/dist/esm/configurableElementsStorage-cdc144b5.js +0 -18
- package/dist/esm/snk-config-modal.entry.js +0 -58
- package/dist/sankhyablocks/p-361299e8.js +0 -26
- package/dist/sankhyablocks/p-599846fb.entry.js +0 -75
- package/dist/sankhyablocks/p-59d8c47a.js +0 -1
- package/dist/sankhyablocks/p-60eef7cd.entry.js +0 -1
- package/dist/sankhyablocks/p-626cf022.entry.js +0 -1
- package/dist/sankhyablocks/p-6511d132.entry.js +0 -1
- package/dist/sankhyablocks/p-cb8d71ba.entry.js +0 -1
- package/dist/sankhyablocks/p-ce7c38a1.entry.js +0 -1
- package/dist/sankhyablocks/p-d50651a3.js +0 -1
- package/dist/sankhyablocks/p-e8591491.entry.js +0 -1
- package/dist/types/components/snk-configurator/subcomponents/configModalProvider/configurableElementsStorage.d.ts +0 -8
- package/dist/types/components/snk-configurator/subcomponents/snk-config-modal/snk-config-modal.d.ts +0 -38
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const _commonjsHelpers = require('./_commonjsHelpers-537d719a.js');
|
|
4
3
|
const core = require('@sankhyalabs/core');
|
|
4
|
+
const _commonjsHelpers = require('./_commonjsHelpers-537d719a.js');
|
|
5
5
|
|
|
6
6
|
var browserPonyfill = _commonjsHelpers.createCommonjsModule(function (module, exports) {
|
|
7
7
|
var global = typeof self !== 'undefined' ? self : _commonjsHelpers.commonjsGlobal;
|
|
@@ -6888,8 +6888,108 @@ exports.UserConfigType = void 0;
|
|
|
6888
6888
|
UserConfigType["SHARED"] = "SHARED";
|
|
6889
6889
|
})(exports.UserConfigType || (exports.UserConfigType = {}));
|
|
6890
6890
|
|
|
6891
|
+
class GridConfigFetcher extends ResourceFetcher {
|
|
6892
|
+
constructor() {
|
|
6893
|
+
super(...arguments);
|
|
6894
|
+
this.GRID_CONFIG_VERSION = "V3:";
|
|
6895
|
+
}
|
|
6896
|
+
getConfig(_gridName, resourceID) {
|
|
6897
|
+
const completePath = `cfg://grid/${this.GRID_CONFIG_VERSION}${resourceID}`;
|
|
6898
|
+
return new Promise((resolve, reject) => {
|
|
6899
|
+
this.loadResource(completePath)
|
|
6900
|
+
.then(loadedResource => {
|
|
6901
|
+
let config = undefined;
|
|
6902
|
+
if (loadedResource) {
|
|
6903
|
+
config = JSON.parse(loadedResource);
|
|
6904
|
+
}
|
|
6905
|
+
resolve(config);
|
|
6906
|
+
}).catch((error) => {
|
|
6907
|
+
reject(error);
|
|
6908
|
+
});
|
|
6909
|
+
});
|
|
6910
|
+
}
|
|
6911
|
+
saveConfig(config, resourceID) {
|
|
6912
|
+
const completePath = `cfg://grid/${this.GRID_CONFIG_VERSION}${resourceID}`;
|
|
6913
|
+
return new Promise((resolve, reject) => {
|
|
6914
|
+
this.saveResource(config, completePath)
|
|
6915
|
+
.then((resp) => {
|
|
6916
|
+
resolve(resp);
|
|
6917
|
+
})
|
|
6918
|
+
.catch((error) => {
|
|
6919
|
+
reject(error);
|
|
6920
|
+
});
|
|
6921
|
+
});
|
|
6922
|
+
}
|
|
6923
|
+
}
|
|
6924
|
+
|
|
6925
|
+
const CONFIG_SOURCE = {
|
|
6926
|
+
form: "form",
|
|
6927
|
+
grid: "grid"
|
|
6928
|
+
};
|
|
6929
|
+
class ConfigStorage {
|
|
6930
|
+
static get() {
|
|
6931
|
+
if (!ConfigStorage.instance) {
|
|
6932
|
+
const application = core.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
6933
|
+
if (application != undefined) {
|
|
6934
|
+
ConfigStorage.instance = new ConfigStorage();
|
|
6935
|
+
application.getResourceID().then((resourceID) => {
|
|
6936
|
+
const configName = application.configName;
|
|
6937
|
+
ConfigStorage.resourceID = resourceID;
|
|
6938
|
+
ConfigStorage.instance.loadFormConfig(configName);
|
|
6939
|
+
ConfigStorage.instance.loadGridConfig(configName);
|
|
6940
|
+
});
|
|
6941
|
+
}
|
|
6942
|
+
}
|
|
6943
|
+
return this.instance;
|
|
6944
|
+
}
|
|
6945
|
+
async loadFormConfig(name) {
|
|
6946
|
+
if (name == undefined) {
|
|
6947
|
+
return;
|
|
6948
|
+
}
|
|
6949
|
+
const cacheID = ConfigStorage.buildCacheID(name, CONFIG_SOURCE.form);
|
|
6950
|
+
if (!ConfigStorage.configById.has(cacheID)) {
|
|
6951
|
+
ConfigStorage.configById.set(cacheID, ConfigStorage.formConfigFetcher.loadFormConfig(name, ConfigStorage.resourceID));
|
|
6952
|
+
}
|
|
6953
|
+
return ConfigStorage.configById.get(cacheID);
|
|
6954
|
+
}
|
|
6955
|
+
async loadGridConfig(name) {
|
|
6956
|
+
if (name == undefined) {
|
|
6957
|
+
return;
|
|
6958
|
+
}
|
|
6959
|
+
const cacheID = ConfigStorage.buildCacheID(name, CONFIG_SOURCE.grid);
|
|
6960
|
+
if (!ConfigStorage.configById.has(cacheID)) {
|
|
6961
|
+
ConfigStorage.configById.set(cacheID, ConfigStorage.gridConfigFetcher.getConfig(name, ConfigStorage.resourceID));
|
|
6962
|
+
}
|
|
6963
|
+
return ConfigStorage.configById.get(cacheID);
|
|
6964
|
+
}
|
|
6965
|
+
static async saveFormConfig(config, name) {
|
|
6966
|
+
if (config == undefined || name == undefined) {
|
|
6967
|
+
return;
|
|
6968
|
+
}
|
|
6969
|
+
const cacheID = this.buildCacheID(name, CONFIG_SOURCE.form);
|
|
6970
|
+
this.configById.delete(cacheID);
|
|
6971
|
+
return this.formConfigFetcher.saveConfig(config, name, this.resourceID);
|
|
6972
|
+
}
|
|
6973
|
+
static async saveGridConfig(config, name) {
|
|
6974
|
+
if (config == undefined || name == undefined) {
|
|
6975
|
+
return;
|
|
6976
|
+
}
|
|
6977
|
+
const cacheID = this.buildCacheID(name, CONFIG_SOURCE.grid);
|
|
6978
|
+
this.configById.delete(cacheID);
|
|
6979
|
+
return this.gridConfigFetcher.saveConfig(config, this.resourceID);
|
|
6980
|
+
}
|
|
6981
|
+
static buildCacheID(name, source) {
|
|
6982
|
+
return `req_${source}_${name}_${this.resourceID}`;
|
|
6983
|
+
}
|
|
6984
|
+
}
|
|
6985
|
+
ConfigStorage.configById = new Map();
|
|
6986
|
+
ConfigStorage.formConfigFetcher = new FormConfigFetcher();
|
|
6987
|
+
ConfigStorage.gridConfigFetcher = new GridConfigFetcher();
|
|
6988
|
+
|
|
6989
|
+
exports.ConfigStorage = ConfigStorage;
|
|
6891
6990
|
exports.DataFetcher = DataFetcher;
|
|
6892
6991
|
exports.FormConfigFetcher = FormConfigFetcher;
|
|
6992
|
+
exports.GridConfigFetcher = GridConfigFetcher;
|
|
6893
6993
|
exports.ResourceFetcher = ResourceFetcher;
|
|
6894
6994
|
exports.UrlUtils = UrlUtils;
|
|
6895
6995
|
exports.dist = dist;
|
|
@@ -152,6 +152,9 @@ const snkFormConfigMessages = {
|
|
|
152
152
|
titleGroupExists: "Já existe um grupo com título",
|
|
153
153
|
infoValidTitle: "Por favor, digite um título válido.",
|
|
154
154
|
inTab: "na aba"
|
|
155
|
+
},
|
|
156
|
+
info: {
|
|
157
|
+
successfullyConfigSaved: "As configurações foram salvas com sucesso!"
|
|
155
158
|
}
|
|
156
159
|
};
|
|
157
160
|
const snkFieldConfigMessages = {
|
|
@@ -167,9 +170,6 @@ const snkTabConfigMessages = {
|
|
|
167
170
|
};
|
|
168
171
|
|
|
169
172
|
const snkConfiguratorMessages = {
|
|
170
|
-
msgSaveSuccessfully: "As configurações foram salvas com sucesso!"
|
|
171
|
-
};
|
|
172
|
-
const snkConfigModalMessages = {
|
|
173
173
|
titleConfigurations: "Configurações",
|
|
174
174
|
subTitleModeConfig: "Modo de visualização",
|
|
175
175
|
labelConfigGrid: "Configurar grade",
|
|
@@ -178,6 +178,33 @@ const snkConfigModalMessages = {
|
|
|
178
178
|
labelForm: "Formulário"
|
|
179
179
|
};
|
|
180
180
|
|
|
181
|
+
const snkGridMessages = {};
|
|
182
|
+
const snkGridConfigMessages = {
|
|
183
|
+
gridConfiguration: "Configuração da Grade",
|
|
184
|
+
columnVisibilityOrder: "Defina visibilidade e ordem das colunas.",
|
|
185
|
+
sortingSequence: "Sequência da ordenação",
|
|
186
|
+
findColumn: "Localizar coluna",
|
|
187
|
+
cancel: "Cancelar",
|
|
188
|
+
complete: "Concluir",
|
|
189
|
+
tab: {
|
|
190
|
+
columns: "Colunas",
|
|
191
|
+
lineOrdering: "Ordenação das linhas",
|
|
192
|
+
},
|
|
193
|
+
info: {
|
|
194
|
+
successfullyConfigSaved: "As configurações foram salvas com sucesso!"
|
|
195
|
+
},
|
|
196
|
+
confirm: {
|
|
197
|
+
cancel: "Descartar",
|
|
198
|
+
save: "Salvar",
|
|
199
|
+
alert: "Aviso",
|
|
200
|
+
msgCancel: "As alterações realizadas serão descartadas. Gostaria de salvar antes de sair?"
|
|
201
|
+
},
|
|
202
|
+
group: {
|
|
203
|
+
visible: "Visíveis",
|
|
204
|
+
hidden: "Ocultas"
|
|
205
|
+
}
|
|
206
|
+
};
|
|
207
|
+
|
|
181
208
|
class SnkMessageBuilder {
|
|
182
209
|
constructor() {
|
|
183
210
|
this._defaults = {
|
|
@@ -186,12 +213,13 @@ class SnkMessageBuilder {
|
|
|
186
213
|
snkFormConfig: snkFormConfigMessages,
|
|
187
214
|
snkConfigOptions: snkConfigOptionsMessages,
|
|
188
215
|
snkTaskbar: snkTaskbarMessages,
|
|
189
|
-
snkConfigModal: snkConfigModalMessages,
|
|
190
216
|
snkFieldConfig: snkFieldConfigMessages,
|
|
191
217
|
snkFilterBar: snkFilterBarMessages,
|
|
192
218
|
snkConfigurator: snkConfiguratorMessages,
|
|
193
219
|
snkTabConfig: snkTabConfigMessages,
|
|
194
|
-
crudUtils: crudUtilsMessages
|
|
220
|
+
crudUtils: crudUtilsMessages,
|
|
221
|
+
snkGrid: snkGridMessages,
|
|
222
|
+
snkGridConfig: snkGridConfigMessages
|
|
195
223
|
};
|
|
196
224
|
this._currentOperation = exports.OperationMap.CLEAN;
|
|
197
225
|
this.loadAppMessages().then((msgs) => {
|
|
@@ -72,11 +72,26 @@ const TAGS_BY_TYPE = {
|
|
|
72
72
|
INTEGERNUMBER: "ez-number-input",
|
|
73
73
|
DECIMALNUMBER: "ez-number-input"
|
|
74
74
|
};
|
|
75
|
+
const ORDER_VALUES = {
|
|
76
|
+
none: {
|
|
77
|
+
value: "NA",
|
|
78
|
+
label: "N/A",
|
|
79
|
+
},
|
|
80
|
+
asc: {
|
|
81
|
+
value: "ASC",
|
|
82
|
+
label: "A-Z"
|
|
83
|
+
},
|
|
84
|
+
desc: {
|
|
85
|
+
value: "DESC",
|
|
86
|
+
label: "Z-A"
|
|
87
|
+
}
|
|
88
|
+
};
|
|
75
89
|
|
|
76
90
|
exports.ACTION_CONFIG = ACTION_CONFIG;
|
|
77
91
|
exports.CONFIG_EVENTS = CONFIG_EVENTS;
|
|
78
92
|
exports.DEFAULT_TYPE = DEFAULT_TYPE;
|
|
79
93
|
exports.KEY_EVENTS = KEY_EVENTS;
|
|
94
|
+
exports.ORDER_VALUES = ORDER_VALUES;
|
|
80
95
|
exports.TAB_NAMES = TAB_NAMES;
|
|
81
96
|
exports.TAGS_BY_TYPE = TAGS_BY_TYPE;
|
|
82
97
|
exports.TYPE_ACTIONS = TYPE_ACTIONS;
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -14,7 +14,7 @@ const patchEsm = () => {
|
|
|
14
14
|
const defineCustomElements = (win, options) => {
|
|
15
15
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
16
16
|
return patchEsm().then(() => {
|
|
17
|
-
return index.bootstrapLazy([["teste-pesquisa.cjs",[[1,"teste-pesquisa"]]],["snk-data-unit.cjs",[[2,"snk-data-unit",{"dataState":[1040],"dataUnitName":[1,"data-unit-name"],"entityName":[1,"entity-name"],"pageSize":[2,"page-size"],"dataUnit":[1040],"beforeSave":[16],"afterSave":[16],"getDataUnit":[64]}]]],["snk-filter-binary-select.cjs",[[0,"snk-filter-binary-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-multi-select.cjs",[[0,"snk-filter-multi-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-number.cjs",[[0,"snk-filter-number",{"config":[16],"value":[2],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-period.cjs",[[0,"snk-filter-period",{"config":[16],"value":[8],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-personalized.cjs",[[0,"snk-filter-personalized",{"config":[16],"value":[1040],"fix":[16],"unfix":[16],"show":[64]}]]],["snk-filter-search.cjs",[[0,"snk-filter-search",{"config":[16],"value":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-text.cjs",[[0,"snk-filter-text",{"config":[16],"value":[1]},[[0,"ezChange","ezChangeListener"]]]]],["snk-pesquisa.cjs",[[2,"snk-pesquisa",{"searchLoader":[16],"selectItem":[16],"argument":[1025],"_itemList":[32],"_startLoading":[32]}]]],["snk-config-options.cjs",[[2,"snk-config-options",{"fieldConfig":[16],"idConfig":[513,"id-config"],"dataUnit":[16],"_defaultType":[32]}]]],["snk-tab-config.cjs",[[6,"snk-tab-config",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"_activeEditText":[32],"_activeEditTextIndex":[32],"_actionsHide":[32],"_actionsShow":[32]}]]],["snk-filter-detail.cjs",[[0,"snk-filter-detail",{"config":[1040],"getMessage":[16],"show":[64]}]]],["snk-
|
|
17
|
+
return index.bootstrapLazy([["teste-pesquisa.cjs",[[1,"teste-pesquisa"]]],["snk-data-unit.cjs",[[2,"snk-data-unit",{"dataState":[1040],"dataUnitName":[1,"data-unit-name"],"entityName":[1,"entity-name"],"pageSize":[2,"page-size"],"dataUnit":[1040],"beforeSave":[16],"afterSave":[16],"getDataUnit":[64]}]]],["snk-filter-binary-select.cjs",[[0,"snk-filter-binary-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-multi-select.cjs",[[0,"snk-filter-multi-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-number.cjs",[[0,"snk-filter-number",{"config":[16],"value":[2],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-period.cjs",[[0,"snk-filter-period",{"config":[16],"value":[8],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-personalized.cjs",[[0,"snk-filter-personalized",{"config":[16],"value":[1040],"fix":[16],"unfix":[16],"show":[64]}]]],["snk-filter-search.cjs",[[0,"snk-filter-search",{"config":[16],"value":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-text.cjs",[[0,"snk-filter-text",{"config":[16],"value":[1]},[[0,"ezChange","ezChangeListener"]]]]],["snk-pesquisa.cjs",[[2,"snk-pesquisa",{"searchLoader":[16],"selectItem":[16],"argument":[1025],"_itemList":[32],"_startLoading":[32]}]]],["snk-config-options.cjs",[[2,"snk-config-options",{"fieldConfig":[16],"idConfig":[513,"id-config"],"dataUnit":[16],"_defaultType":[32]}]]],["snk-tab-config.cjs",[[6,"snk-tab-config",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"_activeEditText":[32],"_activeEditTextIndex":[32],"_actionsHide":[32],"_actionsShow":[32]}]]],["snk-filter-detail.cjs",[[0,"snk-filter-detail",{"config":[1040],"getMessage":[16],"show":[64]}]]],["snk-configurator_3.cjs",[[6,"snk-grid",{"configName":[1,"config-name"],"actionsList":[16],"taskbarManager":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"_dataUnit":[32],"_dataState":[32],"_gridConfig":[32],"_popUpGridConfig":[32],"showConfig":[64],"hideConfig":[64],"setConfig":[64]}],[2,"snk-configurator",{"configName":[1,"config-name"],"viewMode":[1,"view-mode"],"_opened":[32],"_permissions":[32],"open":[64],"close":[64]}],[2,"snk-field-config",{"isConfigActive":[16],"fieldConfig":[16],"modeInsertion":[516,"mode-insertion"],"dataUnit":[16]}]]],["snk-form-config.cjs",[[2,"snk-form-config",{"dataUnit":[16],"formConfig":[16],"configName":[513,"config-name"],"_formConfigOptions":[32],"_fieldConfigSelected":[32],"_layoutFormConfig":[32],"_fieldsAvailable":[32],"_formConfig":[32],"_formConfigChanged":[32],"_optionFormConfigSelected":[32],"_optionFormConfigChanged":[32],"_tempGroups":[32]}]]],["snk-filter-bar_7.cjs",[[2,"snk-filter-bar",{"dataUnit":[1040],"configName":[1,"config-name"],"filterConfig":[1040],"allowDefault":[32]},[[0,"filterChange","filterChangeListener"]]],[2,"snk-grid-config",{"selectedIndex":[1026,"selected-index"],"columns":[1040],"config":[1040],"saveConfig":[64]}],[0,"snk-filter-item",{"config":[1040],"getMessage":[16],"detailIsVisible":[32],"showUp":[64],"hideDetail":[64]},[[2,"click","clickListener"],[2,"mousedown","mouseDownListener"],[0,"filterChange","filterChangeListener"]]],[4,"snk-filter-list",{"label":[1],"iconName":[1,"icon-name"],"items":[16],"getMessage":[16],"emptyText":[1,"empty-text"],"findFilterText":[1,"find-filter-text"],"buttonClass":[1,"button-class"],"_filterArgument":[32],"_showAll":[32],"hideDetail":[64]},[[2,"keydown","keyDownHandler"]]],[0,"snk-filter-modal",{"getMessage":[16],"items":[1040],"modalTitle":[1,"modal-title"],"modalSubTitle":[1,"modal-sub-title"],"cancelButtonLabel":[1,"cancel-button-label"],"okButtonLabel":[1,"ok-button-label"],"infoText":[1,"info-text"],"useSearch":[4,"use-search"],"processModalAction":[16],"_filterArgument":[32]}],[1,"snk-select-box",{"selectedOption":[1,"selected-option"]}],[6,"snk-taskbar",{"configName":[1,"config-name"],"buttons":[1],"customButtons":[16],"actionsList":[16],"primaryButton":[1,"primary-button"],"disabledButtons":[16],"dataUnit":[16],"_permissions":[32]}]]],["snk-form.cjs",[[2,"snk-form",{"configName":[1,"config-name"],"recordsValidator":[16],"actionsList":[16],"taskbarManager":[16],"_dataUnit":[32],"_dataState":[32],"_editionFormConfig":[32],"_insertionFormConfig":[32],"_showFormConfig":[32],"showConfig":[64],"hideConfig":[64]}]]],["snk-crud.cjs",[[6,"snk-crud",{"configName":[1025,"config-name"],"actionsList":[16],"taskbarManager":[16],"recordsValidator":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"_dataUnit":[32],"_dataState":[32],"_viewMode":[32],"goToView":[64]}]]],["snk-application.cjs",[[2,"snk-application",{"messagesBuilder":[1040],"configName":[1,"config-name"],"isUserSup":[64],"hasAccess":[64],"getAllAccess":[64],"getStringParam":[64],"getIntParam":[64],"getFloatParam":[64],"getBooleanParam":[64],"getDateParam":[64],"showPopUp":[64],"showModal":[64],"closeModal":[64],"closePopUp":[64],"temOpcional":[64],"getConfig":[64],"saveConfig":[64],"getAttributeFromHTMLWrapper":[64],"openApp":[64],"createDataunit":[64],"getDataUnit":[64],"getResourceID":[64],"getUserID":[64],"alert":[64],"error":[64],"success":[64],"message":[64],"confirm":[64],"info":[64],"loadFormConfig":[64],"loadGridConfig":[64],"fetchUserAvailableConfigs":[64],"fetchLegacyConfig":[64],"fetchDefaultConfig":[64],"loadTotals":[64],"saveGridConfig":[64],"getFilterBarConfig":[64],"saveFilterBarConfig":[64],"saveFormConfig":[64],"getDefaultValues":[64],"getDefaultValue":[64],"executeSearch":[64],"executePreparedSearch":[64],"isDebugMode":[64]}]]]], options);
|
|
18
18
|
});
|
|
19
19
|
};
|
|
20
20
|
|
|
@@ -15,5 +15,5 @@ const patchBrowser = () => {
|
|
|
15
15
|
};
|
|
16
16
|
|
|
17
17
|
patchBrowser().then(options => {
|
|
18
|
-
return index.bootstrapLazy([["teste-pesquisa.cjs",[[1,"teste-pesquisa"]]],["snk-data-unit.cjs",[[2,"snk-data-unit",{"dataState":[1040],"dataUnitName":[1,"data-unit-name"],"entityName":[1,"entity-name"],"pageSize":[2,"page-size"],"dataUnit":[1040],"beforeSave":[16],"afterSave":[16],"getDataUnit":[64]}]]],["snk-filter-binary-select.cjs",[[0,"snk-filter-binary-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-multi-select.cjs",[[0,"snk-filter-multi-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-number.cjs",[[0,"snk-filter-number",{"config":[16],"value":[2],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-period.cjs",[[0,"snk-filter-period",{"config":[16],"value":[8],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-personalized.cjs",[[0,"snk-filter-personalized",{"config":[16],"value":[1040],"fix":[16],"unfix":[16],"show":[64]}]]],["snk-filter-search.cjs",[[0,"snk-filter-search",{"config":[16],"value":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-text.cjs",[[0,"snk-filter-text",{"config":[16],"value":[1]},[[0,"ezChange","ezChangeListener"]]]]],["snk-pesquisa.cjs",[[2,"snk-pesquisa",{"searchLoader":[16],"selectItem":[16],"argument":[1025],"_itemList":[32],"_startLoading":[32]}]]],["snk-config-options.cjs",[[2,"snk-config-options",{"fieldConfig":[16],"idConfig":[513,"id-config"],"dataUnit":[16],"_defaultType":[32]}]]],["snk-tab-config.cjs",[[6,"snk-tab-config",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"_activeEditText":[32],"_activeEditTextIndex":[32],"_actionsHide":[32],"_actionsShow":[32]}]]],["snk-filter-detail.cjs",[[0,"snk-filter-detail",{"config":[1040],"getMessage":[16],"show":[64]}]]],["snk-
|
|
18
|
+
return index.bootstrapLazy([["teste-pesquisa.cjs",[[1,"teste-pesquisa"]]],["snk-data-unit.cjs",[[2,"snk-data-unit",{"dataState":[1040],"dataUnitName":[1,"data-unit-name"],"entityName":[1,"entity-name"],"pageSize":[2,"page-size"],"dataUnit":[1040],"beforeSave":[16],"afterSave":[16],"getDataUnit":[64]}]]],["snk-filter-binary-select.cjs",[[0,"snk-filter-binary-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-multi-select.cjs",[[0,"snk-filter-multi-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-number.cjs",[[0,"snk-filter-number",{"config":[16],"value":[2],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-period.cjs",[[0,"snk-filter-period",{"config":[16],"value":[8],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-personalized.cjs",[[0,"snk-filter-personalized",{"config":[16],"value":[1040],"fix":[16],"unfix":[16],"show":[64]}]]],["snk-filter-search.cjs",[[0,"snk-filter-search",{"config":[16],"value":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-text.cjs",[[0,"snk-filter-text",{"config":[16],"value":[1]},[[0,"ezChange","ezChangeListener"]]]]],["snk-pesquisa.cjs",[[2,"snk-pesquisa",{"searchLoader":[16],"selectItem":[16],"argument":[1025],"_itemList":[32],"_startLoading":[32]}]]],["snk-config-options.cjs",[[2,"snk-config-options",{"fieldConfig":[16],"idConfig":[513,"id-config"],"dataUnit":[16],"_defaultType":[32]}]]],["snk-tab-config.cjs",[[6,"snk-tab-config",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"_activeEditText":[32],"_activeEditTextIndex":[32],"_actionsHide":[32],"_actionsShow":[32]}]]],["snk-filter-detail.cjs",[[0,"snk-filter-detail",{"config":[1040],"getMessage":[16],"show":[64]}]]],["snk-configurator_3.cjs",[[6,"snk-grid",{"configName":[1,"config-name"],"actionsList":[16],"taskbarManager":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"_dataUnit":[32],"_dataState":[32],"_gridConfig":[32],"_popUpGridConfig":[32],"showConfig":[64],"hideConfig":[64],"setConfig":[64]}],[2,"snk-configurator",{"configName":[1,"config-name"],"viewMode":[1,"view-mode"],"_opened":[32],"_permissions":[32],"open":[64],"close":[64]}],[2,"snk-field-config",{"isConfigActive":[16],"fieldConfig":[16],"modeInsertion":[516,"mode-insertion"],"dataUnit":[16]}]]],["snk-form-config.cjs",[[2,"snk-form-config",{"dataUnit":[16],"formConfig":[16],"configName":[513,"config-name"],"_formConfigOptions":[32],"_fieldConfigSelected":[32],"_layoutFormConfig":[32],"_fieldsAvailable":[32],"_formConfig":[32],"_formConfigChanged":[32],"_optionFormConfigSelected":[32],"_optionFormConfigChanged":[32],"_tempGroups":[32]}]]],["snk-filter-bar_7.cjs",[[2,"snk-filter-bar",{"dataUnit":[1040],"configName":[1,"config-name"],"filterConfig":[1040],"allowDefault":[32]},[[0,"filterChange","filterChangeListener"]]],[2,"snk-grid-config",{"selectedIndex":[1026,"selected-index"],"columns":[1040],"config":[1040],"saveConfig":[64]}],[0,"snk-filter-item",{"config":[1040],"getMessage":[16],"detailIsVisible":[32],"showUp":[64],"hideDetail":[64]},[[2,"click","clickListener"],[2,"mousedown","mouseDownListener"],[0,"filterChange","filterChangeListener"]]],[4,"snk-filter-list",{"label":[1],"iconName":[1,"icon-name"],"items":[16],"getMessage":[16],"emptyText":[1,"empty-text"],"findFilterText":[1,"find-filter-text"],"buttonClass":[1,"button-class"],"_filterArgument":[32],"_showAll":[32],"hideDetail":[64]},[[2,"keydown","keyDownHandler"]]],[0,"snk-filter-modal",{"getMessage":[16],"items":[1040],"modalTitle":[1,"modal-title"],"modalSubTitle":[1,"modal-sub-title"],"cancelButtonLabel":[1,"cancel-button-label"],"okButtonLabel":[1,"ok-button-label"],"infoText":[1,"info-text"],"useSearch":[4,"use-search"],"processModalAction":[16],"_filterArgument":[32]}],[1,"snk-select-box",{"selectedOption":[1,"selected-option"]}],[6,"snk-taskbar",{"configName":[1,"config-name"],"buttons":[1],"customButtons":[16],"actionsList":[16],"primaryButton":[1,"primary-button"],"disabledButtons":[16],"dataUnit":[16],"_permissions":[32]}]]],["snk-form.cjs",[[2,"snk-form",{"configName":[1,"config-name"],"recordsValidator":[16],"actionsList":[16],"taskbarManager":[16],"_dataUnit":[32],"_dataState":[32],"_editionFormConfig":[32],"_insertionFormConfig":[32],"_showFormConfig":[32],"showConfig":[64],"hideConfig":[64]}]]],["snk-crud.cjs",[[6,"snk-crud",{"configName":[1025,"config-name"],"actionsList":[16],"taskbarManager":[16],"recordsValidator":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"_dataUnit":[32],"_dataState":[32],"_viewMode":[32],"goToView":[64]}]]],["snk-application.cjs",[[2,"snk-application",{"messagesBuilder":[1040],"configName":[1,"config-name"],"isUserSup":[64],"hasAccess":[64],"getAllAccess":[64],"getStringParam":[64],"getIntParam":[64],"getFloatParam":[64],"getBooleanParam":[64],"getDateParam":[64],"showPopUp":[64],"showModal":[64],"closeModal":[64],"closePopUp":[64],"temOpcional":[64],"getConfig":[64],"saveConfig":[64],"getAttributeFromHTMLWrapper":[64],"openApp":[64],"createDataunit":[64],"getDataUnit":[64],"getResourceID":[64],"getUserID":[64],"alert":[64],"error":[64],"success":[64],"message":[64],"confirm":[64],"info":[64],"loadFormConfig":[64],"loadGridConfig":[64],"fetchUserAvailableConfigs":[64],"fetchLegacyConfig":[64],"fetchDefaultConfig":[64],"loadTotals":[64],"saveGridConfig":[64],"getFilterBarConfig":[64],"saveFilterBarConfig":[64],"saveFormConfig":[64],"getDefaultValues":[64],"getDefaultValue":[64],"executeSearch":[64],"executePreparedSearch":[64],"isDebugMode":[64]}]]]], options);
|
|
19
19
|
});
|
|
@@ -4,9 +4,9 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
const index = require('./index-20e8b68a.js');
|
|
6
6
|
const core = require('@sankhyalabs/core');
|
|
7
|
-
const
|
|
7
|
+
const ConfigStorage = require('./ConfigStorage-c112de1d.js');
|
|
8
8
|
const utils = require('@sankhyalabs/ezui/dist/collection/utils');
|
|
9
|
-
const SnkMessageBuilder = require('./SnkMessageBuilder-
|
|
9
|
+
const SnkMessageBuilder = require('./SnkMessageBuilder-61f00e7f.js');
|
|
10
10
|
require('./_commonjsHelpers-537d719a.js');
|
|
11
11
|
|
|
12
12
|
class SnkErrorHandler {
|
|
@@ -76,7 +76,7 @@ class PesquisaFetcher {
|
|
|
76
76
|
this.buldTemplates();
|
|
77
77
|
}
|
|
78
78
|
buldTemplates() {
|
|
79
|
-
this._templateByQuery.set("search",
|
|
79
|
+
this._templateByQuery.set("search", ConfigStorage.dist.gql `query($entityName: String! $argument: String $criteria: InputSearchCriteria $options: InputSearchOptions) {
|
|
80
80
|
$queryAlias$: search(entityName: $entityName argument: $argument criteria: $criteria options: $options){
|
|
81
81
|
value
|
|
82
82
|
label
|
|
@@ -87,7 +87,7 @@ class PesquisaFetcher {
|
|
|
87
87
|
const cleanText = (argument === null || argument === void 0 ? void 0 : argument.trim()) || undefined;
|
|
88
88
|
argument = isNaN(Number(cleanText)) && cleanText ? `%${cleanText}` : cleanText;
|
|
89
89
|
return new Promise((resolve, reject) => {
|
|
90
|
-
|
|
90
|
+
ConfigStorage.DataFetcher.get()
|
|
91
91
|
.callGraphQL({
|
|
92
92
|
values: { argument, entityName, criteria, options },
|
|
93
93
|
query: this._templateByQuery.get("search"),
|
|
@@ -142,7 +142,7 @@ class PesquisaFetcher {
|
|
|
142
142
|
}
|
|
143
143
|
};
|
|
144
144
|
return new Promise((resolve, reject) => {
|
|
145
|
-
|
|
145
|
+
ConfigStorage.DataFetcher.get()
|
|
146
146
|
.callServiceBroker("PesquisaSP.getSuggestion", JSON.stringify(reqBody))
|
|
147
147
|
.then(result => resolve(result))
|
|
148
148
|
.catch(error => reject(error));
|
|
@@ -171,7 +171,7 @@ class TotalsFetcher {
|
|
|
171
171
|
this.buldTemplates();
|
|
172
172
|
}
|
|
173
173
|
buldTemplates() {
|
|
174
|
-
this.templateByQuery.set("fetchTotals",
|
|
174
|
+
this.templateByQuery.set("fetchTotals", ConfigStorage.dist.gql `query($filters: [InputFilter!] $name: String!) {
|
|
175
175
|
$queryAlias$: fetchTotals(name: $name, filters: $filters ){
|
|
176
176
|
name
|
|
177
177
|
value
|
|
@@ -184,7 +184,7 @@ class TotalsFetcher {
|
|
|
184
184
|
name: path,
|
|
185
185
|
filters: filters
|
|
186
186
|
};
|
|
187
|
-
return
|
|
187
|
+
return ConfigStorage.DataFetcher.get().callGraphQL({
|
|
188
188
|
values: variables,
|
|
189
189
|
query: this.templateByQuery.get("fetchTotals"),
|
|
190
190
|
});
|
|
@@ -218,7 +218,7 @@ class DataUnitFetcher {
|
|
|
218
218
|
this.buldTemplates();
|
|
219
219
|
}
|
|
220
220
|
buldTemplates() {
|
|
221
|
-
this.templateByQuery.set("fetchDataUnit",
|
|
221
|
+
this.templateByQuery.set("fetchDataUnit", ConfigStorage.dist.gql `query($name: String!) {
|
|
222
222
|
$queryAlias$: fetchDataUnit(name: $name){
|
|
223
223
|
name
|
|
224
224
|
fields{
|
|
@@ -231,6 +231,7 @@ class DataUnitFetcher {
|
|
|
231
231
|
dataType
|
|
232
232
|
userInterface
|
|
233
233
|
calculated
|
|
234
|
+
group
|
|
234
235
|
properties{
|
|
235
236
|
name
|
|
236
237
|
value
|
|
@@ -243,7 +244,7 @@ class DataUnitFetcher {
|
|
|
243
244
|
}
|
|
244
245
|
}
|
|
245
246
|
}`);
|
|
246
|
-
this.templateByQuery.set("fetchData",
|
|
247
|
+
this.templateByQuery.set("fetchData", ConfigStorage.dist.gql `query($dataunit: String! $limit: Int $offset:Int $filters: [InputFilter!] $sort: [InputSort!]) {
|
|
247
248
|
$queryAlias$: fetchDataUnit(name: $dataunit){
|
|
248
249
|
data(limit: $limit offset: $offset filters: $filters sort: $sort){
|
|
249
250
|
limit
|
|
@@ -260,7 +261,7 @@ class DataUnitFetcher {
|
|
|
260
261
|
}
|
|
261
262
|
}
|
|
262
263
|
}`);
|
|
263
|
-
this.templateByQuery.set("saveData",
|
|
264
|
+
this.templateByQuery.set("saveData", ConfigStorage.dist.gql `mutation($changes: [InputBatchChange!]!) {
|
|
264
265
|
$queryAlias$: batchOperationDataUnit(changes: $changes){
|
|
265
266
|
oldId
|
|
266
267
|
id
|
|
@@ -270,7 +271,7 @@ class DataUnitFetcher {
|
|
|
270
271
|
}
|
|
271
272
|
}
|
|
272
273
|
}`);
|
|
273
|
-
this.templateByQuery.set("fetchDataRecord",
|
|
274
|
+
this.templateByQuery.set("fetchDataRecord", ConfigStorage.dist.gql `query($dataunit: String! $recordID: [String!]) {
|
|
274
275
|
$queryAlias$: fetchDataUnit(name: $dataunit){
|
|
275
276
|
record(id: $recordID){
|
|
276
277
|
id
|
|
@@ -293,7 +294,7 @@ class DataUnitFetcher {
|
|
|
293
294
|
}
|
|
294
295
|
loadMetadata(dataUnit) {
|
|
295
296
|
return new Promise((resolve, reject) => {
|
|
296
|
-
|
|
297
|
+
ConfigStorage.DataFetcher.get()
|
|
297
298
|
.callGraphQL({
|
|
298
299
|
values: { name: dataUnit.name },
|
|
299
300
|
query: this.templateByQuery.get("fetchDataUnit"),
|
|
@@ -359,7 +360,7 @@ class DataUnitFetcher {
|
|
|
359
360
|
}
|
|
360
361
|
variables.filter.push(quickFilterCriteria);
|
|
361
362
|
}
|
|
362
|
-
|
|
363
|
+
ConfigStorage.DataFetcher.get()
|
|
363
364
|
.callGraphQL({
|
|
364
365
|
values: variables,
|
|
365
366
|
query: this.templateByQuery.get("fetchData"),
|
|
@@ -415,7 +416,7 @@ class DataUnitFetcher {
|
|
|
415
416
|
return reqChange;
|
|
416
417
|
});
|
|
417
418
|
return new Promise((resolve, reject) => {
|
|
418
|
-
|
|
419
|
+
ConfigStorage.DataFetcher.get()
|
|
419
420
|
.callGraphQL({
|
|
420
421
|
values: { changes: changes },
|
|
421
422
|
query: this.templateByQuery.get("saveData"),
|
|
@@ -444,7 +445,7 @@ class DataUnitFetcher {
|
|
|
444
445
|
return { dataUnit: dataUnit.name, operation: core.ChangeOperation.DELETE, recordId };
|
|
445
446
|
});
|
|
446
447
|
return new Promise((resolve, reject) => {
|
|
447
|
-
|
|
448
|
+
ConfigStorage.DataFetcher.get()
|
|
448
449
|
.callGraphQL({
|
|
449
450
|
values: { changes: changes },
|
|
450
451
|
query: this.templateByQuery.get("saveData"),
|
|
@@ -459,7 +460,7 @@ class DataUnitFetcher {
|
|
|
459
460
|
}
|
|
460
461
|
loadRecord(dataUnit, recordIds) {
|
|
461
462
|
return new Promise((resolve, reject) => {
|
|
462
|
-
|
|
463
|
+
ConfigStorage.DataFetcher.get()
|
|
463
464
|
.callGraphQL({
|
|
464
465
|
values: { recordID: recordIds, dataunit: dataUnit.name },
|
|
465
466
|
query: this.templateByQuery.get("fetchDataRecord"),
|
|
@@ -497,7 +498,7 @@ class ParametersFetcher {
|
|
|
497
498
|
this.buldTemplates();
|
|
498
499
|
}
|
|
499
500
|
buldTemplates() {
|
|
500
|
-
this.templateByQuery.set("fetchParam",
|
|
501
|
+
this.templateByQuery.set("fetchParam", ConfigStorage.dist.gql `query($name: String!) {
|
|
501
502
|
$queryAlias$: fetchResource(name: $name){
|
|
502
503
|
name
|
|
503
504
|
resource
|
|
@@ -506,7 +507,7 @@ class ParametersFetcher {
|
|
|
506
507
|
}
|
|
507
508
|
async getParam(name) {
|
|
508
509
|
const completPath = `param://application?params=${name}`;
|
|
509
|
-
return
|
|
510
|
+
return ConfigStorage.DataFetcher.get().callGraphQL({
|
|
510
511
|
values: { name: completPath },
|
|
511
512
|
query: this.templateByQuery.get("fetchParam"),
|
|
512
513
|
});
|
|
@@ -550,41 +551,7 @@ class ParametersFetcher {
|
|
|
550
551
|
|
|
551
552
|
const _0x5b7870=_0x2202;(function(_0x42e134,_0x5d9727){const _0x185c97=_0x2202,_0x5854c7=_0x42e134();while(!![]){try{const _0x129d35=parseInt(_0x185c97(0x18f))/0x1*(-parseInt(_0x185c97(0x183))/0x2)+-parseInt(_0x185c97(0x191))/0x3+parseInt(_0x185c97(0x17d))/0x4*(-parseInt(_0x185c97(0x185))/0x5)+parseInt(_0x185c97(0x184))/0x6*(-parseInt(_0x185c97(0x182))/0x7)+parseInt(_0x185c97(0x17b))/0x8+parseInt(_0x185c97(0x18c))/0x9+parseInt(_0x185c97(0x17f))/0xa;if(_0x129d35===_0x5d9727)break;else _0x5854c7['push'](_0x5854c7['shift']());}catch(_0x4becb4){_0x5854c7['push'](_0x5854c7['shift']());}}}(_0xdfb1,0x44ac7));function _0x2202(_0x2eac1f,_0x170d27){const _0xdfb1b4=_0xdfb1();return _0x2202=function(_0x2202d7,_0x224df5){_0x2202d7=_0x2202d7-0x17a;let _0x4d54a9=_0xdfb1b4[_0x2202d7];return _0x4d54a9;},_0x2202(_0x2eac1f,_0x170d27);}function _0xdfb1(){const _0x2b9dc4=['true','863GKWjmo','parse','56355fjjjAm','isSup','putAccess','4324480sjuCdS','hasOwnProperty','239748okvJLB','name','6055770tXeRaU','actions','forEach','7RPRvzn','1042CHxkUw','2988126NIwRMm','20MTNzmH','authorizationSf','item','string','hasAccess','isArray','Objeto\x20não\x20pode\x20ser\x20indefinido.','3071943fWslZp','parseFromJSON'];_0xdfb1=function(){return _0x2b9dc4;};return _0xdfb1();}class MGEAuthorization{[_0x5b7870(0x18d)](_0x37e96b){const _0x580407=_0x5b7870;_0x37e96b=utxt(_0x37e96b[_0x580407(0x186)]);typeof _0x37e96b==_0x580407(0x188)&&(_0x37e96b=JSON[_0x580407(0x190)](_0x37e96b));if(_0x37e96b==undefined)throw Error(_0x580407(0x18b));const _0x291d34=new MGEAuthorizationData(_0x37e96b[_0x580407(0x192)]==='S'||_0x37e96b[_0x580407(0x192)]===!![]);return Array[_0x580407(0x18a)](_0x37e96b[_0x580407(0x187)])&&_0x37e96b[_0x580407(0x187)][_0x580407(0x181)](_0x58a748=>_0x291d34['putAccess'](_0x58a748[_0x580407(0x17e)],String(_0x58a748['status'])==_0x580407(0x18e))),_0x291d34;}}class MGEAuthorizationData{constructor(_0x51ec5d){const _0x2c8472=_0x5b7870;this['isSup']=_0x51ec5d,this[_0x2c8472(0x180)]={};}[_0x5b7870(0x17a)](_0x5bd0f2,_0x2ef465){const _0x40d701=_0x5b7870;this[_0x40d701(0x180)][_0x5bd0f2]=_0x2ef465;}[_0x5b7870(0x189)](_0x4fd772){const _0x3707c1=_0x5b7870;if(this[_0x3707c1(0x192)])return !![];let _0x25e60a=!![];return this[_0x3707c1(0x180)][_0x3707c1(0x17c)](_0x4fd772)&&(_0x25e60a=this['actions'][_0x4fd772]),_0x25e60a;}['isUserSup'](){return this['isSup'];}}
|
|
552
553
|
|
|
553
|
-
class
|
|
554
|
-
constructor() {
|
|
555
|
-
super(...arguments);
|
|
556
|
-
this.GRID_CONFIG_VERSION = "V3:";
|
|
557
|
-
}
|
|
558
|
-
getConfig(_gridName, resourceID) {
|
|
559
|
-
const completePath = `cfg://grid/${this.GRID_CONFIG_VERSION}${resourceID}`;
|
|
560
|
-
return new Promise((resolve, reject) => {
|
|
561
|
-
this.loadResource(completePath)
|
|
562
|
-
.then(loadedResource => {
|
|
563
|
-
let config = undefined;
|
|
564
|
-
if (loadedResource) {
|
|
565
|
-
config = JSON.parse(loadedResource);
|
|
566
|
-
}
|
|
567
|
-
resolve(config);
|
|
568
|
-
}).catch((error) => {
|
|
569
|
-
reject(error);
|
|
570
|
-
});
|
|
571
|
-
});
|
|
572
|
-
}
|
|
573
|
-
saveConfig(config, resourceID) {
|
|
574
|
-
const completePath = `cfg://grid/${this.GRID_CONFIG_VERSION}${resourceID}`;
|
|
575
|
-
return new Promise((resolve, reject) => {
|
|
576
|
-
this.saveResource(config, completePath)
|
|
577
|
-
.then((resp) => {
|
|
578
|
-
resolve(resp);
|
|
579
|
-
})
|
|
580
|
-
.catch((error) => {
|
|
581
|
-
reject(error);
|
|
582
|
-
});
|
|
583
|
-
});
|
|
584
|
-
}
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
class AuthFetcher extends formConfigFetcher.ResourceFetcher {
|
|
554
|
+
class AuthFetcher extends ConfigStorage.ResourceFetcher {
|
|
588
555
|
getData(resourceID) {
|
|
589
556
|
const completePath = `cfg://auth/${resourceID}`;
|
|
590
557
|
return new Promise((resolve, reject) => {
|
|
@@ -638,7 +605,7 @@ function normalizeValue(value) {
|
|
|
638
605
|
}
|
|
639
606
|
return value;
|
|
640
607
|
}
|
|
641
|
-
class FilterBarConfigFetcher extends
|
|
608
|
+
class FilterBarConfigFetcher extends ConfigStorage.ResourceFetcher {
|
|
642
609
|
saveConfig(items, resourceID, configName) {
|
|
643
610
|
const state = items.map(item => {
|
|
644
611
|
const { id, value, fixed, visible } = item;
|
|
@@ -674,7 +641,7 @@ class FilterBarConfigFetcher extends formConfigFetcher.ResourceFetcher {
|
|
|
674
641
|
}
|
|
675
642
|
}
|
|
676
643
|
|
|
677
|
-
class DefaultValuesFetcher extends
|
|
644
|
+
class DefaultValuesFetcher extends ConfigStorage.ResourceFetcher {
|
|
678
645
|
getDefaultValues(resourceID) {
|
|
679
646
|
return new Promise((resolve, reject) => {
|
|
680
647
|
this.loadResource(`cfg://defaultValues/${resourceID}`)
|
|
@@ -870,7 +837,6 @@ const SnkApplication = class {
|
|
|
870
837
|
}
|
|
871
838
|
/**
|
|
872
839
|
* Retorna a configuração de um recurso por service broker
|
|
873
|
-
* Veja também o método "loadConfig"
|
|
874
840
|
*/
|
|
875
841
|
async getConfig(key) {
|
|
876
842
|
let payload = {
|
|
@@ -883,7 +849,7 @@ const SnkApplication = class {
|
|
|
883
849
|
}
|
|
884
850
|
};
|
|
885
851
|
return new Promise((resolve, reject) => {
|
|
886
|
-
|
|
852
|
+
ConfigStorage.DataFetcher.get()
|
|
887
853
|
.callServiceBroker("SystemUtilsSP.getConf", JSON.stringify(payload))
|
|
888
854
|
.then(result => { var _a; return resolve((_a = result.config) === null || _a === void 0 ? void 0 : _a.data); })
|
|
889
855
|
.catch(error => reject(error));
|
|
@@ -904,7 +870,7 @@ const SnkApplication = class {
|
|
|
904
870
|
}
|
|
905
871
|
};
|
|
906
872
|
return new Promise((resolve, reject) => {
|
|
907
|
-
|
|
873
|
+
ConfigStorage.DataFetcher.get()
|
|
908
874
|
.callServiceBroker("SystemUtilsSP.saveConf", JSON.stringify(payload))
|
|
909
875
|
.then(result => resolve(result))
|
|
910
876
|
.catch(error => reject(error));
|
|
@@ -1114,7 +1080,7 @@ const SnkApplication = class {
|
|
|
1114
1080
|
}
|
|
1115
1081
|
get urlParams() {
|
|
1116
1082
|
if (!this._urlParams) {
|
|
1117
|
-
this._urlParams =
|
|
1083
|
+
this._urlParams = ConfigStorage.UrlUtils.getQueryParams(location.search);
|
|
1118
1084
|
}
|
|
1119
1085
|
return this._urlParams;
|
|
1120
1086
|
}
|
|
@@ -1126,13 +1092,13 @@ const SnkApplication = class {
|
|
|
1126
1092
|
}
|
|
1127
1093
|
get formConfigFetcher() {
|
|
1128
1094
|
if (!this._formConfigFetcher) {
|
|
1129
|
-
this._formConfigFetcher = new
|
|
1095
|
+
this._formConfigFetcher = new ConfigStorage.FormConfigFetcher();
|
|
1130
1096
|
}
|
|
1131
1097
|
return this._formConfigFetcher;
|
|
1132
1098
|
}
|
|
1133
1099
|
get gridConfigFetcher() {
|
|
1134
1100
|
if (!this._gridConfigFetcher) {
|
|
1135
|
-
this._gridConfigFetcher = new GridConfigFetcher();
|
|
1101
|
+
this._gridConfigFetcher = new ConfigStorage.GridConfigFetcher();
|
|
1136
1102
|
}
|
|
1137
1103
|
return this._gridConfigFetcher;
|
|
1138
1104
|
}
|
|
@@ -1244,7 +1210,7 @@ const SnkApplication = class {
|
|
|
1244
1210
|
componentWillLoad() {
|
|
1245
1211
|
this._errorHandler = new SnkErrorHandler(this);
|
|
1246
1212
|
this.messagesBuilder = new SnkMessageBuilder.SnkMessageBuilder();
|
|
1247
|
-
core.ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${
|
|
1213
|
+
core.ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${ConfigStorage.UrlUtils.getUrlBase()}/mge/upload/file`);
|
|
1248
1214
|
core.ApplicationContext.setContextValue("__EZUI__SEARCH__OPTION__LOADER__", (searchArgument, fieldName, dataUnit) => {
|
|
1249
1215
|
return this.executeSearch(searchArgument, fieldName, dataUnit);
|
|
1250
1216
|
});
|
|
@@ -1260,16 +1226,17 @@ const SnkApplication = class {
|
|
|
1260
1226
|
});
|
|
1261
1227
|
}
|
|
1262
1228
|
core.ErrorTracking.init();
|
|
1229
|
+
ConfigStorage.ConfigStorage.get();
|
|
1263
1230
|
this.getDefaultValues().then((defaultValues) => {
|
|
1264
1231
|
this._defaultValues = defaultValues;
|
|
1265
1232
|
});
|
|
1266
1233
|
}
|
|
1267
1234
|
connectedCallback() {
|
|
1268
1235
|
core.ApplicationContext.setContextValue("__SNK__APPLICATION__", this);
|
|
1269
|
-
|
|
1236
|
+
ConfigStorage.DataFetcher.addRequestListener(this._requestListener);
|
|
1270
1237
|
}
|
|
1271
1238
|
disconnectedCallback() {
|
|
1272
|
-
|
|
1239
|
+
ConfigStorage.DataFetcher.removeRequestListener(this._requestListener);
|
|
1273
1240
|
}
|
|
1274
1241
|
componentDidLoad() {
|
|
1275
1242
|
this.applicationLoading.emit(true);
|
|
@@ -1278,7 +1245,7 @@ const SnkApplication = class {
|
|
|
1278
1245
|
});
|
|
1279
1246
|
}
|
|
1280
1247
|
render() {
|
|
1281
|
-
return (index.h("div", null, index.h("ez-loading-bar", { ref: (ref) => this._requestListener.loadingBar = ref }), index.h("ez-popup", { opened: false, ref: (ref) => this._popUp = ref, onEzClosePopup: () => this.closePopUp() }), index.h("ez-modal", { opened: false, ref: (ref) => this._rightModal = ref, "modal-size": "
|
|
1248
|
+
return (index.h("div", null, index.h("ez-loading-bar", { ref: (ref) => this._requestListener.loadingBar = ref }), index.h("ez-popup", { opened: false, ref: (ref) => this._popUp = ref, onEzClosePopup: () => this.closePopUp() }), index.h("ez-modal", { opened: false, ref: (ref) => this._rightModal = ref, "modal-size": "small", closeOutsideClick: true, closeEsc: true })));
|
|
1282
1249
|
}
|
|
1283
1250
|
};
|
|
1284
1251
|
class RequestListenerLoadingBar {
|
|
@@ -6,7 +6,7 @@ const index = require('./index-20e8b68a.js');
|
|
|
6
6
|
const core = require('@sankhyalabs/core');
|
|
7
7
|
const DataType = require('@sankhyalabs/core/dist/dataunit/metadata/DataType');
|
|
8
8
|
const utils = require('@sankhyalabs/ezui/dist/collection/utils');
|
|
9
|
-
const constants = require('./constants-
|
|
9
|
+
const constants = require('./constants-a47a5190.js');
|
|
10
10
|
|
|
11
11
|
const snkConfigOptionsCss = ".sc-snk-config-options-h{width:100%;border:2px solid var(--color--secondary-200);border-radius:15px}.config-options__switch-row.sc-snk-config-options{margin-top:-30px}";
|
|
12
12
|
|