@sankhyalabs/sankhyablocks 8.1.0-rc.3 → 8.2.0-dev.1
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-73e7afff.js → ConfigStorage-12397f18.js} +163 -51
- package/dist/cjs/{DataFetcher-004811c6.js → DataFetcher-f2da1f79.js} +68 -30
- package/dist/cjs/ISave-d68ce3cd.js +8 -0
- package/dist/cjs/ResourceIDUtils-5ff86aa7.js +12 -0
- package/dist/cjs/{SnkFormConfigManager-d1f1a222.js → SnkFormConfigManager-13f79e37.js} +19 -21
- package/dist/cjs/{auth-fetcher-58237931.js → auth-fetcher-319a4cb2.js} +2 -2
- package/dist/cjs/{dataunit-fetcher-029eafbd.js → dataunit-fetcher-e72068c1.js} +1 -1
- package/dist/cjs/{form-config-fetcher-181767c9.js → form-config-fetcher-5d62ab62.js} +66 -3
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{pesquisa-fetcher-9a97994a.js → pesquisa-fetcher-8c363096.js} +1 -1
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/snk-actions-button.cjs.entry.js +18 -11
- package/dist/cjs/snk-application.cjs.entry.js +49 -44
- package/dist/cjs/snk-attach.cjs.entry.js +7 -13
- package/dist/cjs/snk-configurator.cjs.entry.js +2 -1
- package/dist/cjs/snk-crud.cjs.entry.js +25 -10
- package/dist/cjs/snk-data-exporter.cjs.entry.js +2 -2
- package/dist/cjs/{snk-data-unit-e89e07bd.js → snk-data-unit-80a00ae4.js} +4 -3
- package/dist/cjs/snk-data-unit.cjs.entry.js +1 -1
- package/dist/cjs/snk-detail-view.cjs.entry.js +14 -12
- package/dist/cjs/snk-entity-list.cjs.entry.js +0 -4
- package/dist/cjs/snk-filter-bar.cjs.entry.js +14 -17
- package/dist/cjs/snk-filter-detail.cjs.entry.js +1 -15
- package/dist/cjs/snk-filter-modal-item.cjs.entry.js +5 -19
- package/dist/cjs/snk-form-config.cjs.entry.js +6 -17
- package/dist/cjs/snk-form-view.cjs.entry.js +6 -1
- package/dist/cjs/snk-form.cjs.entry.js +12 -8
- package/dist/cjs/snk-grid-config.cjs.entry.js +5 -6
- package/dist/cjs/snk-grid.cjs.entry.js +17 -20
- package/dist/cjs/{snk-guides-viewer-27f87d90.js → snk-guides-viewer-a7cd6fda.js} +17 -7
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +8 -8
- package/dist/cjs/snk-personalized-filter.cjs.entry.js +13 -16
- package/dist/cjs/snk-print-selector.cjs.entry.js +1 -1
- package/dist/cjs/snk-simple-crud.cjs.entry.js +20 -72
- package/dist/cjs/snk-taskbar.cjs.entry.js +2 -1
- package/dist/collection/components/snk-actions-button/actions/index.js +3 -4
- package/dist/collection/components/snk-actions-button/snk-actions-button.js +8 -4
- package/dist/collection/components/snk-application/snk-application.js +60 -65
- package/dist/collection/components/snk-configurator/snk-configurator.js +19 -1
- package/dist/collection/components/snk-crud/snk-crud.js +40 -6
- package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js +42 -2
- package/dist/collection/components/snk-crud/subcomponents/snk-form-view.js +27 -1
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +47 -28
- package/dist/collection/components/snk-data-unit/snk-data-unit.js +21 -4
- package/dist/collection/components/snk-entity-list/snk-entity-list.js +0 -23
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-detail.js +2 -12
- 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 +21 -16
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +28 -12
- package/dist/collection/components/snk-form/SnkFormConfigManager.js +17 -19
- package/dist/collection/components/snk-form/snk-form.js +46 -2
- package/dist/collection/components/snk-form/subcomponents/snk-form-config/snk-form-config.js +5 -15
- package/dist/collection/components/snk-grid/snk-grid.js +51 -15
- package/dist/collection/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.js +19 -1
- package/dist/collection/components/snk-personalized-filter/snk-personalized-filter.js +28 -12
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +22 -0
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +19 -1
- package/dist/collection/lib/configs/ConfigStorage.js +33 -44
- package/dist/collection/lib/dataUnit/InMemoryLoader.js +2 -59
- package/dist/collection/lib/http/data-fetcher/DataFetcher.js +39 -30
- package/dist/collection/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.js +0 -24
- package/dist/collection/lib/index.js +10 -0
- package/dist/collection/lib/resourceid/ResourceIDUtils.js +7 -0
- package/dist/collection/lib/utils/urlutils.js +29 -0
- package/dist/components/ConfigStorage.js +161 -48
- package/dist/components/DataFetcher.js +68 -30
- package/dist/components/ResourceIDUtils.js +10 -0
- package/dist/components/SnkFormConfigManager.js +17 -19
- package/dist/components/auth-fetcher.js +1 -1
- package/dist/components/form-config-fetcher.js +64 -2
- package/dist/components/snk-actions-button2.js +23 -9
- package/dist/components/snk-application2.js +134 -128
- package/dist/components/snk-attach2.js +1 -8
- package/dist/components/snk-configurator2.js +3 -1
- package/dist/components/snk-crud.js +23 -6
- package/dist/components/snk-data-unit2.js +5 -3
- package/dist/components/snk-detail-view2.js +20 -8
- package/dist/components/snk-entity-list.js +0 -4
- package/dist/components/snk-filter-bar2.js +12 -12
- package/dist/components/snk-filter-detail2.js +2 -12
- package/dist/components/snk-filter-modal-item2.js +5 -16
- package/dist/components/snk-form-config2.js +5 -15
- package/dist/components/snk-form-view2.js +6 -1
- package/dist/components/snk-form.js +9 -2
- package/dist/components/snk-grid-config2.js +4 -2
- package/dist/components/snk-grid2.js +17 -16
- package/dist/components/snk-personalized-filter2.js +11 -11
- package/dist/components/snk-simple-crud2.js +8 -60
- package/dist/components/snk-taskbar2.js +3 -1
- package/dist/esm/{ConfigStorage-19a7260b.js → ConfigStorage-932ab366.js} +162 -49
- package/dist/esm/{DataFetcher-e0fc5549.js → DataFetcher-7e18aa30.js} +68 -30
- package/dist/esm/ISave-4412b20c.js +8 -0
- package/dist/esm/ResourceIDUtils-a114189a.js +10 -0
- package/dist/esm/{SnkFormConfigManager-1a42eb02.js → SnkFormConfigManager-bb9afc3f.js} +19 -21
- package/dist/esm/{auth-fetcher-83a946f8.js → auth-fetcher-6d9664b7.js} +1 -1
- package/dist/esm/{dataunit-fetcher-6a695723.js → dataunit-fetcher-91a4eb82.js} +1 -1
- package/dist/esm/{form-config-fetcher-9e167008.js → form-config-fetcher-aaaa79a6.js} +65 -3
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{pesquisa-fetcher-9118eb7a.js → pesquisa-fetcher-56b30fb4.js} +1 -1
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/snk-actions-button.entry.js +18 -11
- package/dist/esm/snk-application.entry.js +49 -44
- package/dist/esm/snk-attach.entry.js +3 -9
- package/dist/esm/snk-configurator.entry.js +2 -1
- package/dist/esm/snk-crud.entry.js +25 -10
- package/dist/esm/snk-data-exporter.entry.js +2 -2
- package/dist/esm/{snk-data-unit-8c4d944d.js → snk-data-unit-3ab57d1a.js} +4 -3
- package/dist/esm/snk-data-unit.entry.js +1 -1
- package/dist/esm/snk-detail-view.entry.js +14 -12
- package/dist/esm/snk-entity-list.entry.js +0 -4
- package/dist/esm/snk-filter-bar.entry.js +14 -17
- package/dist/esm/snk-filter-detail.entry.js +2 -16
- package/dist/esm/snk-filter-modal-item.entry.js +6 -20
- package/dist/esm/snk-form-config.entry.js +7 -18
- package/dist/esm/snk-form-view.entry.js +6 -1
- package/dist/esm/snk-form.entry.js +12 -8
- package/dist/esm/snk-grid-config.entry.js +5 -6
- package/dist/esm/snk-grid.entry.js +17 -20
- package/dist/esm/{snk-guides-viewer-c47cd45e.js → snk-guides-viewer-cc709b5f.js} +17 -7
- package/dist/esm/snk-guides-viewer.entry.js +8 -8
- package/dist/esm/snk-personalized-filter.entry.js +13 -16
- package/dist/esm/snk-print-selector.entry.js +1 -1
- package/dist/esm/snk-simple-crud.entry.js +10 -62
- package/dist/esm/snk-taskbar.entry.js +2 -1
- package/dist/sankhyablocks/p-01739b21.entry.js +1 -0
- package/dist/sankhyablocks/{p-e7e54737.entry.js → p-03bb1aea.entry.js} +1 -1
- package/dist/sankhyablocks/p-05dbc70e.entry.js +1 -0
- package/dist/sankhyablocks/{p-0a4c753d.js → p-14eac6fe.js} +1 -1
- package/dist/sankhyablocks/{p-2ac9c585.js → p-2d333d22.js} +1 -1
- package/dist/sankhyablocks/p-41e897f1.js +56 -0
- package/dist/sankhyablocks/p-48a40939.js +1 -0
- package/dist/sankhyablocks/p-611aa624.entry.js +1 -0
- package/dist/sankhyablocks/p-66bb8c20.entry.js +1 -0
- package/dist/sankhyablocks/p-688dcb4c.js +1 -0
- package/dist/sankhyablocks/p-6f154396.entry.js +1 -0
- package/dist/sankhyablocks/p-787071a8.js +1 -0
- package/dist/sankhyablocks/p-8481bb59.entry.js +1 -0
- package/dist/sankhyablocks/p-8818d8f6.entry.js +1 -0
- package/dist/sankhyablocks/p-93f6ca04.entry.js +1 -0
- package/dist/sankhyablocks/p-9a270401.entry.js +1 -0
- package/dist/sankhyablocks/p-9e7d65a4.js +1 -0
- package/dist/sankhyablocks/p-a52a6c9d.js +26 -0
- package/dist/sankhyablocks/p-b6003974.entry.js +1 -0
- package/dist/sankhyablocks/p-c555075c.entry.js +1 -0
- package/dist/sankhyablocks/{p-e5845241.entry.js → p-d13c00b6.entry.js} +1 -1
- package/dist/sankhyablocks/p-d4f9ee17.entry.js +1 -0
- package/dist/sankhyablocks/p-d53a9169.entry.js +1 -0
- package/dist/sankhyablocks/p-d7638f45.entry.js +11 -0
- package/dist/sankhyablocks/p-e086cc2a.entry.js +1 -0
- package/dist/sankhyablocks/p-e64f3e17.entry.js +1 -0
- package/dist/sankhyablocks/p-ed41b38c.js +1 -0
- package/dist/sankhyablocks/p-ed705cbb.entry.js +1 -0
- package/dist/sankhyablocks/p-efc10705.entry.js +1 -0
- package/dist/sankhyablocks/p-f74fe358.js +1 -0
- package/dist/sankhyablocks/{p-df8621b4.js → p-f8e6b97e.js} +1 -1
- package/dist/sankhyablocks/p-f91e0c5d.entry.js +1 -0
- package/dist/sankhyablocks/p-fa523d6b.entry.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-actions-button/actions/index.d.ts +2 -1
- package/dist/types/components/snk-application/snk-application.d.ts +8 -13
- package/dist/types/components/snk-configurator/snk-configurator.d.ts +4 -0
- package/dist/types/components/snk-crud/snk-crud.d.ts +5 -0
- package/dist/types/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.d.ts +8 -0
- package/dist/types/components/snk-crud/subcomponents/snk-form-view.d.ts +5 -0
- package/dist/types/components/snk-crud/subcomponents/snk-guides-viewer.d.ts +9 -2
- package/dist/types/components/snk-data-unit/snk-data-unit.d.ts +4 -0
- package/dist/types/components/snk-entity-list/snk-entity-list.d.ts +0 -4
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-detail.d.ts +0 -3
- 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 +5 -4
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +4 -0
- package/dist/types/components/snk-form/SnkFormConfigManager.d.ts +5 -4
- package/dist/types/components/snk-form/snk-form.d.ts +9 -1
- package/dist/types/components/snk-form/subcomponents/snk-form-config/snk-form-config.d.ts +0 -2
- package/dist/types/components/snk-grid/snk-grid.d.ts +5 -1
- package/dist/types/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.d.ts +4 -0
- package/dist/types/components/snk-personalized-filter/snk-personalized-filter.d.ts +5 -1
- package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +4 -0
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +4 -0
- package/dist/types/components.d.ts +125 -21
- package/dist/types/lib/configs/ConfigStorage.d.ts +11 -13
- package/dist/types/lib/dataUnit/InMemoryLoader.d.ts +0 -7
- 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 +0 -1
- package/dist/types/lib/index.d.ts +11 -0
- package/dist/types/lib/resourceid/ResourceIDUtils.d.ts +3 -0
- package/dist/types/lib/utils/urlutils.d.ts +14 -0
- package/package.json +2 -2
- package/dist/cjs/filter-bar-config-fetcher-2b8ed9d0.js +0 -155
- package/dist/cjs/resource-fetcher-c0332609.js +0 -68
- package/dist/components/filter-bar-config-fetcher.js +0 -153
- package/dist/components/resource-fetcher.js +0 -66
- package/dist/esm/filter-bar-config-fetcher-06e02851.js +0 -153
- package/dist/esm/resource-fetcher-768d5556.js +0 -66
- package/dist/sankhyablocks/p-0ed0fc02.entry.js +0 -1
- package/dist/sankhyablocks/p-216f081a.entry.js +0 -1
- package/dist/sankhyablocks/p-22c6fe1a.entry.js +0 -1
- package/dist/sankhyablocks/p-34a1357a.entry.js +0 -1
- package/dist/sankhyablocks/p-4721c3db.js +0 -1
- package/dist/sankhyablocks/p-564efc43.js +0 -1
- package/dist/sankhyablocks/p-6759adae.entry.js +0 -1
- package/dist/sankhyablocks/p-7b8b8ae9.js +0 -10
- package/dist/sankhyablocks/p-7e285d6c.entry.js +0 -11
- package/dist/sankhyablocks/p-815a42c0.entry.js +0 -1
- package/dist/sankhyablocks/p-8a41172a.entry.js +0 -1
- package/dist/sankhyablocks/p-8f8184ff.js +0 -56
- package/dist/sankhyablocks/p-976e56e9.js +0 -1
- package/dist/sankhyablocks/p-98f9d076.js +0 -17
- package/dist/sankhyablocks/p-bc735728.entry.js +0 -1
- package/dist/sankhyablocks/p-be684b38.entry.js +0 -1
- package/dist/sankhyablocks/p-befbc9ee.entry.js +0 -1
- package/dist/sankhyablocks/p-c0f656af.entry.js +0 -1
- package/dist/sankhyablocks/p-c32b9d7c.entry.js +0 -1
- package/dist/sankhyablocks/p-c57bd935.entry.js +0 -1
- package/dist/sankhyablocks/p-c6380ea2.entry.js +0 -1
- package/dist/sankhyablocks/p-cfd7da4a.entry.js +0 -1
- package/dist/sankhyablocks/p-d1b89765.js +0 -1
- package/dist/sankhyablocks/p-de69b4b0.entry.js +0 -1
- package/dist/sankhyablocks/p-e28129aa.entry.js +0 -1
- package/dist/sankhyablocks/p-f31bfdee.entry.js +0 -1
- package/dist/sankhyablocks/p-f88c45bf.js +0 -1
- package/dist/sankhyablocks/p-fe010e54.entry.js +0 -1
@@ -1,17 +1,15 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, g as getElement } from './index-a7d3d3f1.js';
|
2
2
|
import { WaitingChangeException, WarningException, ErrorException, ObjectUtils, DateUtils, StringUtils, OnboardingUtils, DependencyType, ElementIDUtils, ApplicationContext, ErrorTracking, DataType } from '@sankhyalabs/core';
|
3
|
-
import { d as dist, D as DataFetcher, U as UrlUtils } from './DataFetcher-
|
3
|
+
import { d as dist, D as DataFetcher, U as UrlUtils } from './DataFetcher-7e18aa30.js';
|
4
4
|
import { ApplicationUtils } from '@sankhyalabs/ezui/dist/collection/utils';
|
5
|
-
import { P as PesquisaFetcher } from './pesquisa-fetcher-
|
6
|
-
import {
|
7
|
-
import { D as DataUnitFetcher } from './dataunit-fetcher-
|
8
|
-
import { A as AutorizationType, a as AuthFetcher } from './auth-fetcher-
|
5
|
+
import { P as PesquisaFetcher } from './pesquisa-fetcher-56b30fb4.js';
|
6
|
+
import { C as ConfigStorage } from './ConfigStorage-932ab366.js';
|
7
|
+
import { D as DataUnitFetcher } from './dataunit-fetcher-91a4eb82.js';
|
8
|
+
import { A as AutorizationType, a as AuthFetcher } from './auth-fetcher-6d9664b7.js';
|
9
9
|
import { S as SnkMessageBuilder } from './SnkMessageBuilder-68c1c25a.js';
|
10
10
|
import './_commonjsHelpers-9943807e.js';
|
11
11
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
12
|
-
import './form-config-fetcher-
|
13
|
-
import './resource-fetcher-768d5556.js';
|
14
|
-
import './filter-bar-config-fetcher-06e02851.js';
|
12
|
+
import './form-config-fetcher-aaaa79a6.js';
|
15
13
|
import './filter-item-type.enum-5028ed3f.js';
|
16
14
|
import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
17
15
|
|
@@ -252,16 +250,21 @@ const SnkApplication = class {
|
|
252
250
|
}
|
253
251
|
return this._parameters;
|
254
252
|
}
|
255
|
-
|
256
|
-
if (
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
253
|
+
async getAuth(resourceID) {
|
254
|
+
if (resourceID == undefined) {
|
255
|
+
return this.getApplicationAuth();
|
256
|
+
}
|
257
|
+
else {
|
258
|
+
return new Promise((resolve, reject) => {
|
259
|
+
this.authFetcher.getData(resourceID).then((authList) => {
|
260
|
+
resolve(authList);
|
261
|
+
}).catch(error => {
|
262
|
+
reject(error);
|
263
|
+
});
|
264
|
+
});
|
261
265
|
}
|
262
|
-
return this._resourceID;
|
263
266
|
}
|
264
|
-
|
267
|
+
async getApplicationAuth() {
|
265
268
|
if (this._auth) {
|
266
269
|
return Promise.resolve(this._auth);
|
267
270
|
}
|
@@ -270,7 +273,7 @@ const SnkApplication = class {
|
|
270
273
|
const waitingAuth = this._authPromises.length > 0;
|
271
274
|
this._authPromises.push(new PendingPromise(resolve, reject));
|
272
275
|
if (!waitingAuth) {
|
273
|
-
this.authFetcher.getData(this.
|
276
|
+
this.authFetcher.getData(this.applicationResourceID).then((authList) => {
|
274
277
|
this._auth = authList;
|
275
278
|
while (this._authPromises.length > 0) {
|
276
279
|
this._authPromises.pop().resolve(this._auth);
|
@@ -289,7 +292,7 @@ const SnkApplication = class {
|
|
289
292
|
*/
|
290
293
|
async isUserSup() {
|
291
294
|
return new Promise((resolve, reject) => {
|
292
|
-
this.
|
295
|
+
this.getAuth().then((authorization) => {
|
293
296
|
this.getAuthList(authorization).then((auths) => {
|
294
297
|
resolve(auths.isSup);
|
295
298
|
}).catch(error => reject(error));
|
@@ -303,9 +306,9 @@ const SnkApplication = class {
|
|
303
306
|
/**
|
304
307
|
* Obtém `true` caso o usuário logado tem permissão pra determinada ação.
|
305
308
|
*/
|
306
|
-
async hasAccess(access) {
|
309
|
+
async hasAccess(access, resourceID) {
|
307
310
|
return new Promise((resolve, reject) => {
|
308
|
-
this.
|
311
|
+
this.getAuth(resourceID).then((authorization) => {
|
309
312
|
this.getAuthList(authorization).then((auths) => {
|
310
313
|
resolve(auths.isSup || auths.actions[access]);
|
311
314
|
}).catch(error => reject(error));
|
@@ -315,9 +318,9 @@ const SnkApplication = class {
|
|
315
318
|
/**
|
316
319
|
* Obtém todos os acessos do usuário logado.
|
317
320
|
*/
|
318
|
-
async getAllAccess() {
|
321
|
+
async getAllAccess(resourceID) {
|
319
322
|
return new Promise((resolve, reject) => {
|
320
|
-
this.
|
323
|
+
this.getAuth(resourceID).then((authorization) => {
|
321
324
|
this.getAuthList(authorization).then((auths) => {
|
322
325
|
const allAccess = {};
|
323
326
|
allAccess['isSup'] = auths.isSup;
|
@@ -501,13 +504,16 @@ const SnkApplication = class {
|
|
501
504
|
* Cria o DataUnit a partir do nome da entidade. É possível armazená-lo no cache
|
502
505
|
* passando o dataUnitName, assim, se mais de uma chamada for feita, o mesmo DataUnit será usado.
|
503
506
|
*/
|
504
|
-
async createDataunit(entityName, dataUnitName, parentDataUnit, configName) {
|
507
|
+
async createDataunit(entityName, dataUnitName, parentDataUnit, configName, resourceID) {
|
508
|
+
if (resourceID == undefined) {
|
509
|
+
resourceID = this.applicationResourceID;
|
510
|
+
}
|
505
511
|
return new Promise((resolve, reject) => {
|
506
512
|
const duPromisses = this.getDuPromissesStack(dataUnitName);
|
507
513
|
const waitingDu = duPromisses.length > 0;
|
508
514
|
duPromisses.push(new PendingPromise(resolve, reject));
|
509
515
|
if (!waitingDu) {
|
510
|
-
const dataUnit = this.dataUnitFetcher.getDataUnit(entityName,
|
516
|
+
const dataUnit = this.dataUnitFetcher.getDataUnit(entityName, resourceID, parentDataUnit, configName);
|
511
517
|
dataUnit.loadMetadata().then(() => {
|
512
518
|
if (dataUnitName) {
|
513
519
|
this.updateDataunitCache(undefined, dataUnitName, dataUnit);
|
@@ -538,14 +544,14 @@ const SnkApplication = class {
|
|
538
544
|
/**
|
539
545
|
* Obtem um DataUnit do cache ou cria um caso ainda não tenha sido criado.
|
540
546
|
*/
|
541
|
-
async getDataUnit(entityName, dataUnitName, parentDataUnit, configName) {
|
547
|
+
async getDataUnit(entityName, dataUnitName, parentDataUnit, configName, resourceID) {
|
542
548
|
return new Promise((resolve, reject) => {
|
543
549
|
const dataUnit = this._duCache.get(dataUnitName);
|
544
550
|
if (dataUnit) {
|
545
551
|
resolve(dataUnit);
|
546
552
|
}
|
547
553
|
else {
|
548
|
-
this.createDataunit(entityName, dataUnitName, parentDataUnit, configName).then(dataUnit => {
|
554
|
+
this.createDataunit(entityName, dataUnitName, parentDataUnit, configName, resourceID).then(dataUnit => {
|
549
555
|
resolve(dataUnit);
|
550
556
|
}).catch(reason => reject(reason));
|
551
557
|
}
|
@@ -594,11 +600,20 @@ const SnkApplication = class {
|
|
594
600
|
async callServiceBroker(serviceName, payload, options) {
|
595
601
|
return DataFetcher.get().callServiceBroker(serviceName, payload, options);
|
596
602
|
}
|
603
|
+
get applicationResourceID() {
|
604
|
+
if (!this._applicationResourceID) {
|
605
|
+
this._applicationResourceID = this.urlParams.get("workspaceResourceID") ||
|
606
|
+
this.urlParams.get("resourceID") ||
|
607
|
+
Workspace.resourceID ||
|
608
|
+
"unknown.resource.id";
|
609
|
+
}
|
610
|
+
return this._applicationResourceID;
|
611
|
+
}
|
597
612
|
/**
|
598
613
|
* Obtém o resourceID da tela em questão.
|
599
614
|
*/
|
600
615
|
async getResourceID() {
|
601
|
-
return Promise.resolve(this.
|
616
|
+
return Promise.resolve(this.applicationResourceID);
|
602
617
|
}
|
603
618
|
/**
|
604
619
|
* Obtém o UserId da tela em questão.
|
@@ -642,20 +657,14 @@ const SnkApplication = class {
|
|
642
657
|
async info(message, options) {
|
643
658
|
return ApplicationUtils.info(message, options);
|
644
659
|
}
|
645
|
-
/**
|
646
|
-
* Obtém a configuração de grade.
|
647
|
-
*/
|
648
|
-
async loadGridConfig(name) {
|
649
|
-
return this.gridConfigFetcher.getConfig(name, this.resourceID);
|
650
|
-
}
|
651
660
|
/**
|
652
661
|
* Obtém os totalizadores da grade.
|
653
662
|
*/
|
654
663
|
async loadTotals(name, resourceID, filters) {
|
655
664
|
return this.totalsFetcher.fetchTotals(name, resourceID, filters);
|
656
665
|
}
|
657
|
-
async getAuthList(
|
658
|
-
return await (new MGEAuthorization()).parseFromJSON(
|
666
|
+
async getAuthList(auth) {
|
667
|
+
return await (new MGEAuthorization()).parseFromJSON(auth);
|
659
668
|
}
|
660
669
|
get urlParams() {
|
661
670
|
if (!this._urlParams) {
|
@@ -669,12 +678,6 @@ const SnkApplication = class {
|
|
669
678
|
}
|
670
679
|
return this._dataUnitFetcher;
|
671
680
|
}
|
672
|
-
get gridConfigFetcher() {
|
673
|
-
if (!this._gridConfigFetcher) {
|
674
|
-
this._gridConfigFetcher = new GridConfigFetcher();
|
675
|
-
}
|
676
|
-
return this._gridConfigFetcher;
|
677
|
-
}
|
678
681
|
get totalsFetcher() {
|
679
682
|
if (!this._totalsFetcher) {
|
680
683
|
this._totalsFetcher = new TotalsFetcher();
|
@@ -772,7 +775,7 @@ const SnkApplication = class {
|
|
772
775
|
* Obtém o nome das telas da aplicação
|
773
776
|
*/
|
774
777
|
async getAppLabel() {
|
775
|
-
return Workspace.getAppLabel(this.
|
778
|
+
return Workspace.getAppLabel(this.applicationResourceID);
|
776
779
|
}
|
777
780
|
/**
|
778
781
|
* Adiciona um listener no fetcher de Pesquisa
|
@@ -844,6 +847,7 @@ const SnkApplication = class {
|
|
844
847
|
this._popUp.ezTitle = title;
|
845
848
|
}
|
846
849
|
componentWillLoad() {
|
850
|
+
ApplicationContext.setContextValue("__SNK__APPLICATION__LOADING__", true);
|
847
851
|
this._errorHandler = new SnkErrorHandler(this);
|
848
852
|
this.messagesBuilder = new SnkMessageBuilder();
|
849
853
|
ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/upload/file`);
|
@@ -852,7 +856,7 @@ const SnkApplication = class {
|
|
852
856
|
});
|
853
857
|
ApplicationContext.setContextValue("__EZUI__GRID_LICENSE__", agGridLicense);
|
854
858
|
ErrorTracking.init();
|
855
|
-
ConfigStorage.
|
859
|
+
ConfigStorage.preload(this.applicationResourceID, this.configName);
|
856
860
|
}
|
857
861
|
connectedCallback() {
|
858
862
|
ApplicationContext.setContextValue("__SNK__APPLICATION__", this);
|
@@ -864,9 +868,10 @@ const SnkApplication = class {
|
|
864
868
|
componentDidLoad() {
|
865
869
|
this.applicationLoading.emit(true);
|
866
870
|
window.requestAnimationFrame(() => {
|
871
|
+
ApplicationContext.setContextValue("__SNK__APPLICATION__LOADING__", false);
|
867
872
|
this.applicationLoaded.emit(true);
|
868
873
|
});
|
869
|
-
ElementIDUtils.addIDInfo(this._element, `resource_${this.
|
874
|
+
ElementIDUtils.addIDInfo(this._element, `resource_${this.applicationResourceID}`);
|
870
875
|
}
|
871
876
|
render() {
|
872
877
|
return (h("div", null, h("ez-loading-bar", { ref: (ref) => this._requestListener.loadingBar = ref }), h("ez-popup", { opened: false, ref: (ref) => this._popUp = ref, onEzClosePopup: () => this.closePopUp() }), h("ez-modal", { opened: false, ref: (ref) => this._rightModal = ref, "modal-size": "small", closeOutsideClick: true, closeEsc: true })));
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h } from './index-a7d3d3f1.js';
|
2
2
|
import { ApplicationContext, DataType, Action } from '@sankhyalabs/core';
|
3
|
-
import { D as DataFetcher } from './DataFetcher-
|
3
|
+
import { D as DataFetcher } from './DataFetcher-7e18aa30.js';
|
4
|
+
import { S as SaveErrorsEnum } from './ISave-4412b20c.js';
|
4
5
|
import { c as VIEW_MODE } from './constants-3644f1b6.js';
|
5
|
-
import { D as DataUnitFetcher } from './dataunit-fetcher-
|
6
|
+
import { D as DataUnitFetcher } from './dataunit-fetcher-91a4eb82.js';
|
6
7
|
import { T as TaskbarElement } from './taskbar-elements-2c761819.js';
|
7
8
|
import './_commonjsHelpers-9943807e.js';
|
8
9
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
@@ -10,13 +11,6 @@ import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
|
10
11
|
import './index-1564817d.js';
|
11
12
|
import './index-bdf75557.js';
|
12
13
|
|
13
|
-
var SaveErrorsEnum;
|
14
|
-
(function (SaveErrorsEnum) {
|
15
|
-
SaveErrorsEnum["LINK_AND_FILE_AT_THE_SAME_TIME"] = "LINK_AND_FILE_AT_THE_SAME_TIME";
|
16
|
-
SaveErrorsEnum["ANY_LINK_OR_FILE_FILLED"] = "ANY_LINK_OR_FILE_FILLED";
|
17
|
-
SaveErrorsEnum["UNKNOWN"] = "UNKNOWN";
|
18
|
-
})(SaveErrorsEnum || (SaveErrorsEnum = {}));
|
19
|
-
|
20
14
|
class AttachFetcher {
|
21
15
|
constructor(entityName, registerKey, dataUnitName) {
|
22
16
|
var _a;
|
@@ -16,6 +16,7 @@ const SnkConfigurator = class {
|
|
16
16
|
this._permissions = undefined;
|
17
17
|
this.showActionButtons = false;
|
18
18
|
this.configName = undefined;
|
19
|
+
this.resourceID = undefined;
|
19
20
|
this.viewMode = VIEW_MODE.GRID;
|
20
21
|
this.messagesBuilder = undefined;
|
21
22
|
}
|
@@ -80,7 +81,7 @@ const SnkConfigurator = class {
|
|
80
81
|
componentWillLoad() {
|
81
82
|
this._application = ApplicationContext.getContextValue('__SNK__APPLICATION__');
|
82
83
|
if (this._application) {
|
83
|
-
this._application.getAllAccess().then(access => (this._permissions = access));
|
84
|
+
this._application.getAllAccess(this.resourceID).then(access => (this._permissions = access));
|
84
85
|
}
|
85
86
|
else {
|
86
87
|
this._permissions = {};
|
@@ -1,15 +1,18 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, g as getElement } from './index-a7d3d3f1.js';
|
2
2
|
import { ElementIDUtils, ApplicationContext } from '@sankhyalabs/core';
|
3
3
|
import { T as TaskbarElement } from './taskbar-elements-2c761819.js';
|
4
|
-
import './DataFetcher-
|
5
|
-
import './pesquisa-fetcher-
|
4
|
+
import './DataFetcher-7e18aa30.js';
|
5
|
+
import './pesquisa-fetcher-56b30fb4.js';
|
6
6
|
import { P as PresentationMode } from './index-1564817d.js';
|
7
|
+
import './ISave-4412b20c.js';
|
8
|
+
import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
9
|
+
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
10
|
+
import './filter-item-type.enum-5028ed3f.js';
|
11
|
+
import './form-config-fetcher-aaaa79a6.js';
|
7
12
|
import { c as VIEW_MODE } from './constants-3644f1b6.js';
|
8
|
-
import { A as AutorizationType } from './auth-fetcher-
|
13
|
+
import { A as AutorizationType } from './auth-fetcher-6d9664b7.js';
|
9
14
|
import './index-bdf75557.js';
|
10
15
|
import './_commonjsHelpers-9943807e.js';
|
11
|
-
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
12
|
-
import './resource-fetcher-768d5556.js';
|
13
16
|
|
14
17
|
const snkCrudCss = ".sc-snk-crud-h{display:flex;flex-direction:column;height:100%;width:100%}";
|
15
18
|
|
@@ -19,12 +22,14 @@ const SnkCrud = class {
|
|
19
22
|
this.actionClick = createEvent(this, "actionClick", 7);
|
20
23
|
this.configuratorSave = createEvent(this, "configuratorSave", 7);
|
21
24
|
this.configuratorCancel = createEvent(this, "configuratorCancel", 7);
|
25
|
+
this.formItemsReady = createEvent(this, "formItemsReady", 7);
|
22
26
|
this._viewHistory = [];
|
23
27
|
this._dataUnit = undefined;
|
24
28
|
this._dataState = undefined;
|
25
29
|
this.attachmentRegisterKey = undefined;
|
26
30
|
this._currentViewMode = VIEW_MODE.GRID;
|
27
31
|
this._canEdit = undefined;
|
32
|
+
this._resourceID = undefined;
|
28
33
|
this.configName = undefined;
|
29
34
|
this.selectionToastConfig = undefined;
|
30
35
|
this.showActionButtons = false;
|
@@ -119,7 +124,7 @@ const SnkCrud = class {
|
|
119
124
|
}
|
120
125
|
componentWillLoad() {
|
121
126
|
const application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
122
|
-
application.hasAccess(AutorizationType.UPDATE).then(canEdit => this._canEdit = canEdit);
|
127
|
+
application.hasAccess(AutorizationType.UPDATE, this._resourceID).then(canEdit => this._canEdit = canEdit);
|
123
128
|
let parent = this._element.parentElement;
|
124
129
|
while (parent) {
|
125
130
|
if (parent.tagName.toUpperCase() === "SNK-DATA-UNIT") {
|
@@ -131,11 +136,11 @@ const SnkCrud = class {
|
|
131
136
|
if (!this._dataUnit) {
|
132
137
|
this._snkDataUnit.addEventListener("dataUnitReady", (evt) => {
|
133
138
|
this._dataUnit = evt.detail;
|
134
|
-
this.initDataUnit();
|
139
|
+
this.initDataUnit(application);
|
135
140
|
});
|
136
141
|
}
|
137
142
|
else {
|
138
|
-
this.initDataUnit();
|
143
|
+
this.initDataUnit(application);
|
139
144
|
}
|
140
145
|
this._snkDataUnit.addEventListener("dataStateChange", async ({ detail: dataState }) => {
|
141
146
|
this._dataState = dataState;
|
@@ -151,11 +156,18 @@ const SnkCrud = class {
|
|
151
156
|
this.configName = application.configName;
|
152
157
|
}
|
153
158
|
}
|
154
|
-
initDataUnit() {
|
159
|
+
async initDataUnit(application) {
|
155
160
|
this.addDataElementID();
|
156
161
|
if (!this.messagesBuilder) {
|
157
162
|
this.messagesBuilder = this._snkDataUnit.messagesBuilder;
|
158
163
|
}
|
164
|
+
if (this._resourceID == undefined) {
|
165
|
+
//Tenta pegar o resourceID do snkDataUnit;
|
166
|
+
this._resourceID = this._snkDataUnit.resourceID;
|
167
|
+
if (this._resourceID == undefined) {
|
168
|
+
this._resourceID = await application.getResourceID();
|
169
|
+
}
|
170
|
+
}
|
159
171
|
}
|
160
172
|
handleConfiguratorEvent(evt, type) {
|
161
173
|
evt.stopImmediatePropagation();
|
@@ -166,8 +178,11 @@ const SnkCrud = class {
|
|
166
178
|
this.configuratorCancel.emit();
|
167
179
|
}
|
168
180
|
render() {
|
181
|
+
if (this._resourceID == undefined) {
|
182
|
+
return;
|
183
|
+
}
|
169
184
|
this._snkDataUnit.ignoreSaveMessage = this._currentViewMode === VIEW_MODE.GRID;
|
170
|
-
return (h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, h("stack-item", null, h("snk-grid", { ref: (ref) => this._snkGrid = ref, "data-element-id": "crud_grid", configName: this.configName, onGridDoubleClick: () => this.gridToForm(true), taskbarManager: this.taskbarManager, onActionClick: evt => this.executeAction(evt.detail), messagesBuilder: this.messagesBuilder, actionsList: this.actionsList, statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, presentationMode: this.presentationMode, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit }, h("slot", { name: "SnkGridHeader" }), h("slot", { name: "SnkGridFooter" }), h("slot", { name: "SnkGridTaskBar" }))), h("stack-item", null, h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(VIEW_MODE.GRID), dataState: this._dataState, dataUnit: this._dataUnit, actionsList: this.actionsList, taskbarManager: this.taskbarManager, configName: this.configName, onActionClick: evt => this.executeAction(evt.detail), presentationMode: this.presentationMode, "data-element-id": "crud_form", canEdit: this._canEdit }, h("slot", { name: "SnkFormTaskBar" }))), h("stack-item", null, h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.setViewMode(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showActionButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL') }, h("div", { slot: "SnkConfigContainerSlot" }, h("slot", { name: "SnkConfigContainerSlot" })))));
|
185
|
+
return (h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, h("stack-item", null, h("snk-grid", { ref: (ref) => this._snkGrid = ref, "data-element-id": "crud_grid", configName: this.configName, onGridDoubleClick: () => this.gridToForm(true), taskbarManager: this.taskbarManager, onActionClick: evt => this.executeAction(evt.detail), messagesBuilder: this.messagesBuilder, actionsList: this.actionsList, statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, presentationMode: this.presentationMode, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit, resourceID: this._resourceID }, h("slot", { name: "SnkGridHeader" }), h("slot", { name: "SnkGridFooter" }), h("slot", { name: "SnkGridTaskBar" }))), h("stack-item", null, h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(VIEW_MODE.GRID), dataState: this._dataState, dataUnit: this._dataUnit, actionsList: this.actionsList, taskbarManager: this.taskbarManager, configName: this.configName, onActionClick: evt => this.executeAction(evt.detail), presentationMode: this.presentationMode, "data-element-id": "crud_form", canEdit: this._canEdit, resourceID: this._resourceID }, h("slot", { name: "SnkFormTaskBar" }))), h("stack-item", null, h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.setViewMode(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showActionButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL'), resourceID: this._resourceID }, h("div", { slot: "SnkConfigContainerSlot" }, h("slot", { name: "SnkConfigContainerSlot" })))));
|
171
186
|
}
|
172
187
|
get _element() { return getElement(this); }
|
173
188
|
static get watchers() { return {
|
@@ -3,8 +3,8 @@ import { ObjectUtils, ApplicationContext, DataType, ElementIDUtils } from '@sank
|
|
3
3
|
import { ApplicationUtils, DialogType } from '@sankhyalabs/ezui/dist/collection/utils';
|
4
4
|
import { D as DataExporterOption, a as DataExporterFormat, b as DataExporterType } from './index-1564817d.js';
|
5
5
|
import { R as REPORT_LAUNCHER_RESOURCE_ID } from './constants-3644f1b6.js';
|
6
|
-
import { D as DataFetcher } from './DataFetcher-
|
7
|
-
import { S as SnkDataUnit } from './snk-data-unit-
|
6
|
+
import { D as DataFetcher } from './DataFetcher-7e18aa30.js';
|
7
|
+
import { S as SnkDataUnit } from './snk-data-unit-3ab57d1a.js';
|
8
8
|
import './_commonjsHelpers-9943807e.js';
|
9
9
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
10
10
|
import './SnkMessageBuilder-68c1c25a.js';
|
@@ -70,6 +70,7 @@ const SnkDataUnit = class {
|
|
70
70
|
this.useCancelConfirm = true;
|
71
71
|
this.ignoreSaveMessage = undefined;
|
72
72
|
this.configName = undefined;
|
73
|
+
this.resourceID = undefined;
|
73
74
|
}
|
74
75
|
observePageSize() {
|
75
76
|
if (this.dataUnit) {
|
@@ -333,10 +334,10 @@ const SnkDataUnit = class {
|
|
333
334
|
const cacheName = this.dataUnitName ? this.dataUnitName : this.entityName;
|
334
335
|
if (this._parentSnkDataUnit) {
|
335
336
|
this._parentDataUnit = await ((_a = this._parentSnkDataUnit) === null || _a === void 0 ? void 0 : _a.getDataUnit());
|
336
|
-
return await this._application.getDataUnit(this.entityName, cacheName, this._parentDataUnit, this.configName);
|
337
|
+
return await this._application.getDataUnit(this.entityName, cacheName, this._parentDataUnit, this.configName, this.resourceID);
|
337
338
|
}
|
338
339
|
else {
|
339
|
-
return await this._application.getDataUnit(this.entityName, cacheName, null, this.configName);
|
340
|
+
return await this._application.getDataUnit(this.entityName, cacheName, null, this.configName, this.resourceID);
|
340
341
|
}
|
341
342
|
}
|
342
343
|
async loadDataUnit() {
|
@@ -395,7 +396,7 @@ const SnkDataUnit = class {
|
|
395
396
|
//---------------------------------------------
|
396
397
|
componentWillLoad() {
|
397
398
|
this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
398
|
-
this._application.getAllAccess().then(access => this._permissions = access);
|
399
|
+
this._application.getAllAccess(this.resourceID).then(access => this._permissions = access);
|
399
400
|
this._parentSnkDataUnit = this.getParentSnkDataUnit();
|
400
401
|
if (this.messagesBuilder == undefined) {
|
401
402
|
this.messagesBuilder = new SnkMessageBuilder(this.entityName);
|
@@ -1,21 +1,21 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, f as forceUpdate, h, H as Host } from './index-a7d3d3f1.js';
|
2
|
-
import { S as SnkFormConfigManager } from './SnkFormConfigManager-
|
2
|
+
import { S as SnkFormConfigManager } from './SnkFormConfigManager-bb9afc3f.js';
|
3
3
|
import { FormMetadata, buildFormMetadata } from '@sankhyalabs/ezui/dist/collection/utils/form';
|
4
|
-
import './DataFetcher-
|
5
|
-
import './pesquisa-fetcher-
|
4
|
+
import './DataFetcher-7e18aa30.js';
|
5
|
+
import './pesquisa-fetcher-56b30fb4.js';
|
6
6
|
import '@sankhyalabs/core';
|
7
7
|
import { P as PresentationMode } from './index-1564817d.js';
|
8
|
+
import './ISave-4412b20c.js';
|
9
|
+
import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
10
|
+
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
11
|
+
import './filter-item-type.enum-5028ed3f.js';
|
12
|
+
import './form-config-fetcher-aaaa79a6.js';
|
8
13
|
import { T as TaskbarElement } from './taskbar-elements-2c761819.js';
|
9
14
|
import { c as VIEW_MODE } from './constants-3644f1b6.js';
|
10
|
-
import { S as SnkGuidesViewer } from './snk-guides-viewer-
|
15
|
+
import { S as SnkGuidesViewer } from './snk-guides-viewer-cc709b5f.js';
|
11
16
|
import { S as SnkMessageBuilder } from './SnkMessageBuilder-68c1c25a.js';
|
12
|
-
import './ConfigStorage-
|
13
|
-
import './form-config-fetcher-9e167008.js';
|
14
|
-
import './resource-fetcher-768d5556.js';
|
15
|
-
import './filter-bar-config-fetcher-06e02851.js';
|
16
|
-
import './filter-item-type.enum-5028ed3f.js';
|
17
|
+
import './ConfigStorage-932ab366.js';
|
17
18
|
import './_commonjsHelpers-9943807e.js';
|
18
|
-
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
19
19
|
import './index-bdf75557.js';
|
20
20
|
import './taskbar-processor-94402e6e.js';
|
21
21
|
import '@sankhyalabs/core/dist/dataunit/DataUnit';
|
@@ -70,11 +70,13 @@ const SnkDetailView = class {
|
|
70
70
|
registerInstance(this, hostRef);
|
71
71
|
this.snkDetailGuidesChange = createEvent(this, "snkDetailGuidesChange", 7);
|
72
72
|
this.snkSwitchGuide = createEvent(this, "snkSwitchGuide", 7);
|
73
|
+
this.formItemsReady = createEvent(this, "formItemsReady", 7);
|
73
74
|
this._disabledButtons = undefined;
|
74
75
|
this._currentView = undefined;
|
75
76
|
this.attachmentRegisterKey = undefined;
|
76
77
|
this.formConfigManager = undefined;
|
77
78
|
this.dataUnitName = undefined;
|
79
|
+
this.resourceID = undefined;
|
78
80
|
this.guideItemPath = undefined;
|
79
81
|
this.entityName = undefined;
|
80
82
|
this.label = undefined;
|
@@ -244,7 +246,7 @@ const SnkDetailView = class {
|
|
244
246
|
}
|
245
247
|
componentWillLoad() {
|
246
248
|
this._configName = `dynaform.${this.entityName}`;
|
247
|
-
this.formConfigManager = new SnkFormConfigManager(this._configName, () => this.loadMetadata());
|
249
|
+
this.formConfigManager = new SnkFormConfigManager(this._configName, this.resourceID, () => this.loadMetadata());
|
248
250
|
this.formConfigManager.loadConfig();
|
249
251
|
if (this.messagesBuilder == undefined) {
|
250
252
|
this.messagesBuilder = new SnkMessageBuilder(this.entityName);
|
@@ -253,7 +255,7 @@ const SnkDetailView = class {
|
|
253
255
|
render() {
|
254
256
|
this.updateLabel();
|
255
257
|
//const cardConfig: IFormCardConfig = this._cardsState?.get(this.selectedForm);
|
256
|
-
return (h(Host, null, h("snk-data-unit", { ref: (el) => this._snkDataUnit = el, dataUnitName: `${this.dataUnitName}`, onDataUnitReady: evt => this.dataUnitReadyHandler(evt), entityName: this.entityName, onDataStateChange: this.handleDataStateChange.bind(this), ignoreSaveMessage: this._currentView === VIEW_MODE.GRID, messagesBuilder: this.messagesBuilder, configName: this._configName }, h("ez-view-stack", { ref: (ref) => this.updateViewStack(ref) }, h("stack-item", null, h("div", { class: "ez-box ez-box--shadow grid-container" }, h("div", { class: "ez-flex ez-title--primary ez-size-width--full ez-padding--large detail-header" }, h("div", { class: "ez-flex ez-text ez-text--bold ez-flex--justify-start ez-flex--align-items-center" }, this._levelPath ? h("span", { class: "level-path" }, this._levelPath + " /") : undefined, this.label)), h("snk-grid", { class: "ez-size-width--full ez-size-height--full", ref: (ref) => this._snkGrid = ref, configName: this._configName, messagesBuilder: this.messagesBuilder, onGridDoubleClick: () => this.emitSwitchEvent(VIEW_MODE.FORM), onActionClick: (evt) => this.executeActionHandler(evt), presentationMode: PresentationMode.SECONDARY, canEdit: this.canEdit, isDetail: true }))), h("stack-item", null, h("snk-form-view", { ref: (ref) => this._snkFormView = ref, canExpand: false, canFix: false, name: this.selectedForm, formMetadata: this._formMetadata, dataUnit: this.dataUnit, fields: this.getFormFields(), label: this.label, levelPath: this._levelPath }, h("snk-taskbar", { key: "guideViewerTaskbar", class: "form-taskbar", "data-element-id": "guideViewer", configName: this._configName, messagesBuilder: this.messagesBuilder, disabledButtons: this._disabledButtons, buttons: "INSERT,PREVIOUS,NEXT,DIVIDER,CLONE,REMOVE,MORE_OPTIONS,DIVIDER,GRID_MODE,CONFIGURATOR", primaryButton: "INSERT", presentationMode: PresentationMode.SECONDARY, onActionClick: evt => this.executeActionHandler(evt), dataUnit: this.dataUnit }))), h("stack-item", null, h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this.entityName, onBack: this.handleAttachBack.bind(this) }))))));
|
258
|
+
return (h(Host, null, h("snk-data-unit", { ref: (el) => this._snkDataUnit = el, dataUnitName: `${this.dataUnitName}`, onDataUnitReady: evt => this.dataUnitReadyHandler(evt), entityName: this.entityName, onDataStateChange: this.handleDataStateChange.bind(this), ignoreSaveMessage: this._currentView === VIEW_MODE.GRID, messagesBuilder: this.messagesBuilder, configName: this._configName }, h("ez-view-stack", { ref: (ref) => this.updateViewStack(ref) }, h("stack-item", null, h("div", { class: "ez-box ez-box--shadow grid-container" }, h("div", { class: "ez-flex ez-title--primary ez-size-width--full ez-padding--large detail-header" }, h("div", { class: "ez-flex ez-text ez-text--bold ez-flex--justify-start ez-flex--align-items-center" }, this._levelPath ? h("span", { class: "level-path" }, this._levelPath + " /") : undefined, this.label)), h("snk-grid", { class: "ez-size-width--full ez-size-height--full", ref: (ref) => this._snkGrid = ref, configName: this._configName, messagesBuilder: this.messagesBuilder, onGridDoubleClick: () => this.emitSwitchEvent(VIEW_MODE.FORM), onActionClick: (evt) => this.executeActionHandler(evt), presentationMode: PresentationMode.SECONDARY, canEdit: this.canEdit, isDetail: true }))), h("stack-item", null, h("snk-form-view", { ref: (ref) => this._snkFormView = ref, canExpand: false, canFix: false, name: this.selectedForm, formMetadata: this._formMetadata, dataUnit: this.dataUnit, fields: this.getFormFields(), label: this.label, levelPath: this._levelPath, onFormItemsReady: ({ detail: formItems }) => this.formItemsReady.emit(formItems) }, h("snk-taskbar", { key: "guideViewerTaskbar", class: "form-taskbar", "data-element-id": "guideViewer", configName: this._configName, messagesBuilder: this.messagesBuilder, disabledButtons: this._disabledButtons, buttons: "INSERT,PREVIOUS,NEXT,DIVIDER,CLONE,REMOVE,MORE_OPTIONS,DIVIDER,GRID_MODE,CONFIGURATOR", primaryButton: "INSERT", presentationMode: PresentationMode.SECONDARY, onActionClick: evt => this.executeActionHandler(evt), dataUnit: this.dataUnit, resourceID: this.resourceID }))), h("stack-item", null, h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this.entityName, onBack: this.handleAttachBack.bind(this) }))))));
|
257
259
|
}
|
258
260
|
static get watchers() { return {
|
259
261
|
"dataState": ["observerDataState"]
|
@@ -7,7 +7,6 @@ const SnkEntityList = class {
|
|
7
7
|
constructor(hostRef) {
|
8
8
|
registerInstance(this, hostRef);
|
9
9
|
this.valueChanged = createEvent(this, "valueChanged", 7);
|
10
|
-
this.saveConfig = createEvent(this, "saveConfig", 7);
|
11
10
|
this._searchValue = undefined;
|
12
11
|
this._ezListSource = [];
|
13
12
|
this.config = undefined;
|
@@ -16,7 +15,6 @@ const SnkEntityList = class {
|
|
16
15
|
}
|
17
16
|
async reloadList() {
|
18
17
|
this.loadListSource();
|
19
|
-
this.saveConfig.emit(this.config);
|
20
18
|
}
|
21
19
|
observeConfig() {
|
22
20
|
var _a, _b;
|
@@ -32,7 +30,6 @@ const SnkEntityList = class {
|
|
32
30
|
}
|
33
31
|
});
|
34
32
|
this.config = ObjectUtils.copy(configCopy);
|
35
|
-
this.saveConfig.emit(this.config);
|
36
33
|
this.valueChanged.emit((_b = this.config) === null || _b === void 0 ? void 0 : _b.value);
|
37
34
|
}
|
38
35
|
loadListSource() {
|
@@ -89,7 +86,6 @@ const SnkEntityList = class {
|
|
89
86
|
}
|
90
87
|
] });
|
91
88
|
this.loadListSource();
|
92
|
-
this.saveConfig.emit(this.config);
|
93
89
|
this.valueChanged.emit((_d = this.config) === null || _d === void 0 ? void 0 : _d.value);
|
94
90
|
}
|
95
91
|
}
|
@@ -1,18 +1,16 @@
|
|
1
1
|
import { r as registerInstance, h, H as Host, g as getElement } from './index-a7d3d3f1.js';
|
2
2
|
import { DataType, ObjectUtils, ElementIDUtils, ErrorException, ApplicationContext } from '@sankhyalabs/core';
|
3
3
|
import { EzScrollDirection } from '@sankhyalabs/ezui/dist/collection/components/ez-scroller/EzScrollDirection';
|
4
|
-
import { C as ConfigStorage } from './ConfigStorage-
|
4
|
+
import { C as ConfigStorage } from './ConfigStorage-932ab366.js';
|
5
5
|
import { toString } from '@sankhyalabs/core/dist/dataunit/metadata/DataType';
|
6
6
|
import { F as FilterItemType } from './filter-item-type.enum-5028ed3f.js';
|
7
7
|
import { F as FilterOperand } from './index-ae591a44.js';
|
8
8
|
import { ApplicationUtils } from '@sankhyalabs/ezui/dist/collection/utils';
|
9
9
|
import { P as PersonalizedFilterUtils } from './PersonalizedFilterUtils-75fb0106.js';
|
10
|
-
import './form-config-fetcher-
|
11
|
-
import './DataFetcher-
|
10
|
+
import './form-config-fetcher-aaaa79a6.js';
|
11
|
+
import './DataFetcher-7e18aa30.js';
|
12
12
|
import './_commonjsHelpers-9943807e.js';
|
13
13
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
14
|
-
import './resource-fetcher-768d5556.js';
|
15
|
-
import './filter-bar-config-fetcher-06e02851.js';
|
16
14
|
|
17
15
|
const buildFilter = (item) => {
|
18
16
|
switch (item.type) {
|
@@ -204,6 +202,7 @@ const SnkFilterBar = class {
|
|
204
202
|
};
|
205
203
|
this.dataUnit = undefined;
|
206
204
|
this.configName = undefined;
|
205
|
+
this.resourceID = undefined;
|
207
206
|
this.filterConfig = undefined;
|
208
207
|
this.messagesBuilder = undefined;
|
209
208
|
this.allowDefault = undefined;
|
@@ -279,11 +278,11 @@ const SnkFilterBar = class {
|
|
279
278
|
return;
|
280
279
|
}
|
281
280
|
this._loadingPending = false;
|
282
|
-
this.dataUnit.loadData();
|
281
|
+
this.dataUnit.loadData(undefined, undefined, true);
|
283
282
|
}
|
284
283
|
if (this._configUpdated) {
|
285
284
|
this._configUpdated = false;
|
286
|
-
ConfigStorage.saveFilterBarConfig(this.filterConfig, this.configName);
|
285
|
+
ConfigStorage.saveFilterBarConfig(this.filterConfig, this.configName, this.resourceID);
|
287
286
|
}
|
288
287
|
}
|
289
288
|
/**
|
@@ -399,15 +398,13 @@ const SnkFilterBar = class {
|
|
399
398
|
}
|
400
399
|
loadConfigFromStorage() {
|
401
400
|
return new Promise(accept => {
|
402
|
-
ConfigStorage.
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
throw new ErrorException(this.getMessage("snkFilterBar.failToLoadConfig"), reason);
|
410
|
-
});
|
401
|
+
ConfigStorage.loadFilterBarConfig(this.configName, this.resourceID, { contextURI: this.dataUnit.name })
|
402
|
+
.then((filters) => {
|
403
|
+
accept();
|
404
|
+
this.filterConfig = filters.map(item => this.normalizeItem(item));
|
405
|
+
})
|
406
|
+
.catch(reason => {
|
407
|
+
throw new ErrorException(this.getMessage("snkFilterBar.failToLoadConfig"), reason);
|
411
408
|
});
|
412
409
|
});
|
413
410
|
}
|
@@ -492,7 +489,7 @@ const SnkFilterBar = class {
|
|
492
489
|
return undefined;
|
493
490
|
}
|
494
491
|
if (this.showPersonalizedFilter) {
|
495
|
-
return h("snk-personalized-filter", { class: "filter-bar__personalized-filter", filterId: this.personalizedFilterId, ref: (el) => this._elPersonalizedFilter = el, onEzCancel: () => this.hidePersonalizedFilter(), entityUri: this.dataUnit.name, configName: this.configName });
|
492
|
+
return h("snk-personalized-filter", { class: "filter-bar__personalized-filter", filterId: this.personalizedFilterId, ref: (el) => this._elPersonalizedFilter = el, onEzCancel: () => this.hidePersonalizedFilter(), entityUri: this.dataUnit.name, configName: this.configName, resourceID: this.resourceID });
|
496
493
|
}
|
497
494
|
return (h(Host, null, h("ez-scroller", { class: "snk-filter-bar__scroller", direction: EzScrollDirection.HORIZONTAL, activeShadow: true, locked: this.scrollerLocked }, h("section", { class: "snk-filter-bar__filter-item-container" }, this.getFilterItems())), h("ez-button", { class: "ez-padding-left--medium", size: "small", label: this.getMessage('snkFilterBar.filters', undefined, 'Filtros'), onClick: this.showFilterModal.bind(this) }, h("ez-icon", { slot: "leftIcon", iconName: "plus", class: "ez-padding-right--small" }))));
|
498
495
|
}
|
@@ -1,14 +1,9 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, F as Fragment, H as Host, g as getElement } from './index-a7d3d3f1.js';
|
2
2
|
import { ApplicationUtils } from '@sankhyalabs/ezui/dist/collection/utils';
|
3
3
|
import { F as FilterItemType } from './filter-item-type.enum-5028ed3f.js';
|
4
|
-
import {
|
5
|
-
import { F as FilterBarConfigFetcher } from './filter-bar-config-fetcher-06e02851.js';
|
4
|
+
import { ElementIDUtils, ObjectUtils } from '@sankhyalabs/core';
|
6
5
|
import { E as EPresentationMode } from './presentationMode-783bbf9d.js';
|
7
6
|
import { P as PersonalizedFilterUtils } from './PersonalizedFilterUtils-75fb0106.js';
|
8
|
-
import './resource-fetcher-768d5556.js';
|
9
|
-
import './DataFetcher-e0fc5549.js';
|
10
|
-
import './_commonjsHelpers-9943807e.js';
|
11
|
-
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
12
7
|
import './index-ae591a44.js';
|
13
8
|
|
14
9
|
const SnkFilterDetail = class {
|
@@ -32,7 +27,6 @@ const SnkFilterDetail = class {
|
|
32
27
|
}
|
33
28
|
componentDidLoad() {
|
34
29
|
if (this._element) {
|
35
|
-
this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
36
30
|
ElementIDUtils.addIDInfo(this._element);
|
37
31
|
const dataElementIdDoFilterItem = this._element.getAttribute(ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME);
|
38
32
|
this._idContentEditor = `${dataElementIdDoFilterItem}_${this.config.id}`;
|
@@ -150,20 +144,12 @@ const SnkFilterDetail = class {
|
|
150
144
|
this.config = ObjectUtils.copy(configCopy);
|
151
145
|
}
|
152
146
|
}
|
153
|
-
saveConfig(newConfig) {
|
154
|
-
var _a;
|
155
|
-
(_a = this._application) === null || _a === void 0 ? void 0 : _a.getResourceID().then(resourceId => {
|
156
|
-
const fetcher = new FilterBarConfigFetcher();
|
157
|
-
fetcher.saveEntityListConfig(newConfig, resourceId, this._application.configName);
|
158
|
-
this.config = newConfig;
|
159
|
-
});
|
160
|
-
}
|
161
147
|
componentWillLoad() {
|
162
148
|
this.originalConfig = ObjectUtils.copy(this.config);
|
163
149
|
}
|
164
150
|
render() {
|
165
151
|
const { tag: CustomElement, props } = this.getContentEditor();
|
166
|
-
return (h(Host, null, h("div", { class: "col ez-col--sd-12 ez-align--right ez-padding-medium ez-flex--align-items-center" }, h("div", { class: "ez-text ez-title ez-title--small ez-padding--small sc-snk-filter-bar snk-filter-item__editor-header" }, this.config.detailTitle), this.getPopUpHeaderButtons()), h(CustomElement, Object.assign({ maxHeightList: '240px', ref: ref => this._editor = ref, value: this.config.value, config: this.config, onKeyDown: evt => this.onKeyDonwListener(evt), "data-element-id": this._idContentEditor, getMessage: this.getMessage,
|
152
|
+
return (h(Host, null, h("div", { class: "col ez-col--sd-12 ez-align--right ez-padding-medium ez-flex--align-items-center" }, h("div", { class: "ez-text ez-title ez-title--small ez-padding--small sc-snk-filter-bar snk-filter-item__editor-header" }, this.config.detailTitle), this.getPopUpHeaderButtons()), h(CustomElement, Object.assign({ maxHeightList: '240px', ref: ref => this._editor = ref, value: this.config.value, config: this.config, onKeyDown: evt => this.onKeyDonwListener(evt), "data-element-id": this._idContentEditor, getMessage: this.getMessage, rightListSlotBuilder: item => this.buildRightSlot(item) }, props)), h("hr", { class: "sc-snk-filter-bar snk-filter__popover-rule" }), h("div", { class: "ez-col ez-col--sd-12 ez-align--right" }, this.filterCanBeCleared() && (h("ez-button", { label: this.getMessage("snkFilterBar.cleanFilter"), onClick: () => this.clear(), size: "small" })), h("ez-button", { ref: ref => this._applyButton = ref, label: this.getMessage("snkFilterBar.applyFilter"), onClick: () => this.apply(), size: "small", class: "ez-button--primary ez-padding-left--medium" }))));
|
167
153
|
}
|
168
154
|
get _element() { return getElement(this); }
|
169
155
|
static get watchers() { return {
|