@sankhyalabs/sankhyablocks 8.15.1 → 8.16.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/{SnkMultiSelectionListDataSource-303e85d1.js → IExporterProvider-c78cb1b8.js} +94 -4
- package/dist/cjs/RecordIDUtils-3735135c.js +43 -0
- package/dist/cjs/{SnkFormConfigManager-f9dc0d28.js → SnkFormConfigManager-1b13bacd.js} +6 -3
- package/dist/cjs/{SnkMessageBuilder-66aa2557.js → SnkMessageBuilder-722b104e.js} +8 -12
- package/dist/cjs/{pesquisa-fetcher-213797ec.js → dataunit-fetcher-620b29a1.js} +87 -180
- package/dist/cjs/{index-0922807b.js → index-1dfc7a6e.js} +5 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/pesquisa-fetcher-680e198f.js +166 -0
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/snk-actions-button_4.cjs.entry.js +4 -2
- package/dist/cjs/snk-application.cjs.entry.js +34 -11
- package/dist/cjs/snk-attach.cjs.entry.js +71 -46
- package/dist/cjs/snk-crud.cjs.entry.js +96 -10
- package/dist/cjs/snk-data-exporter.cjs.entry.js +315 -85
- package/dist/cjs/snk-data-unit-82dea87e.js +679 -0
- package/dist/cjs/snk-data-unit.cjs.entry.js +12 -2
- package/dist/cjs/snk-detail-view.cjs.entry.js +48 -7
- package/dist/cjs/snk-filter-bar.cjs.entry.js +5 -1
- package/dist/cjs/snk-form-view.cjs.entry.js +67 -0
- package/dist/cjs/snk-form.cjs.entry.js +51 -6
- package/dist/cjs/snk-grid.cjs.entry.js +164 -107
- package/dist/cjs/{snk-guides-viewer-4b6ecda8.js → snk-guides-viewer-05a1ba27.js} +36 -8
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +8 -6
- package/dist/cjs/snk-simple-crud.cjs.entry.js +264 -37
- package/dist/cjs/snk-taskbar.cjs.entry.js +4 -3
- package/dist/cjs/{taskbar-elements-3ecd1278.js → taskbar-elements-9ad1f9c0.js} +3 -3
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/snk-application/snk-application.js +35 -11
- package/dist/collection/components/snk-attach/snk-attach.js +67 -44
- package/dist/collection/components/snk-crud/interfaces/PropsCustomEditor.js +1 -0
- package/dist/collection/components/snk-crud/interfaces/PropsCustomRender.js +1 -0
- package/dist/collection/components/snk-crud/snk-crud.js +249 -7
- package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js +135 -0
- package/dist/collection/components/snk-crud/subcomponents/snk-form-view.js +161 -0
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +112 -5
- package/dist/collection/components/snk-data-exporter/exporter-strategy/ClientSideExporterStrategy.js +97 -0
- package/dist/collection/components/snk-data-exporter/exporter-strategy/ServerSideExporterStrategy.js +74 -0
- package/dist/collection/components/snk-data-exporter/interfaces/IExporterProvider.js +54 -1
- package/dist/collection/components/snk-data-exporter/interfaces/IExporterStrategy.js +1 -0
- package/dist/collection/components/snk-data-exporter/providers/ClientSideExporterProvider.js +58 -0
- package/dist/collection/components/snk-data-exporter/providers/ServerSideExporterProvider.js +55 -0
- package/dist/collection/components/snk-data-exporter/snk-data-exporter.js +59 -52
- package/dist/collection/components/snk-data-exporter/structure/ItemBuilder.js +62 -0
- package/dist/collection/components/snk-data-exporter/test/resources/ClientSideExporterStrategyResources.js +88 -0
- package/dist/collection/components/snk-data-exporter/utils/ParserExport.js +20 -0
- package/dist/collection/components/snk-data-exporter/utils/RecordIDUtils.js +38 -0
- package/dist/collection/components/snk-data-unit/snk-data-unit.js +507 -214
- package/dist/collection/components/snk-data-unit/test/resources/metadataMock.js +24 -0
- package/dist/collection/components/snk-data-unit/test/resources/parentMetadataMock.js +18 -0
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +22 -1
- package/dist/collection/components/snk-form/snk-form.js +102 -5
- package/dist/collection/components/snk-form-config/SnkFormConfigManager.js +6 -3
- package/dist/collection/components/snk-grid/snk-grid.js +240 -101
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +386 -18
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +2 -2
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +2 -1
- package/dist/collection/lib/@types/index.js +5 -0
- package/dist/collection/lib/DefaultCustomFormatters/RmPrecisionCustomValueFormatter.js +35 -0
- package/dist/collection/lib/dataUnit/InMemoryLoader.js +7 -3
- package/dist/collection/lib/dataUnit/ValueFormatter.js +4 -0
- package/dist/collection/lib/dataUnit/interfaces/InMemoryLoaderConfig.js +1 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/DataUnitDataLoader.js +3 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/cache/ArrayRepository.js +4 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/cache/PreloadManager.js +11 -13
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher.js +1 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/interfaces/IBuildRequestBodyLoadRowMetadata.js +1 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/interfaces/IRowMetadata.js +1 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/DatasetStrategy.js +53 -4
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/test/resources/metadataMock.js +22 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/pesquisa-fetcher.js +4 -4
- package/dist/collection/lib/message/SnkMessageBuilder.js +5 -12
- package/dist/collection/lib/message/resources/snk-data-exporter.msg.js +2 -0
- package/dist/collection/lib/message/resources/snk-data-unit.msg.js +1 -0
- package/dist/components/{field-search.js → IExporterProvider.js} +93 -6
- package/dist/components/ISave.js +47 -0
- package/dist/components/SnkFormConfigManager.js +6 -3
- package/dist/components/SnkMessageBuilder.js +8 -12
- package/dist/components/dataunit-fetcher.js +84 -182
- package/dist/components/index2.js +198 -33
- package/dist/components/pesquisa-fetcher.js +164 -0
- package/dist/components/snk-actions-button2.js +4 -11
- package/dist/components/snk-application2.js +31 -9
- package/dist/components/snk-attach2.js +65 -41
- package/dist/components/snk-crud.js +103 -11
- package/dist/components/snk-data-exporter2.js +309 -85
- package/dist/components/snk-data-unit2.js +470 -212
- package/dist/components/snk-detail-view2.js +87 -10
- package/dist/components/snk-expression-item2.js +1 -1
- package/dist/components/snk-filter-bar2.js +6 -1
- package/dist/components/snk-form-view2.js +72 -1
- package/dist/components/snk-form.js +53 -6
- package/dist/components/snk-grid2.js +168 -106
- package/dist/components/snk-personalized-filter2.js +1 -1
- package/dist/components/snk-simple-crud2.js +259 -23
- package/dist/components/snk-taskbar2.js +6 -5
- package/dist/esm/{SnkMultiSelectionListDataSource-36918dbf.js → IExporterProvider-343272b3.js} +93 -5
- package/dist/esm/RecordIDUtils-87d02110.js +41 -0
- package/dist/esm/{SnkFormConfigManager-f53f9f87.js → SnkFormConfigManager-d4554df9.js} +6 -3
- package/dist/esm/{SnkMessageBuilder-0a4becdd.js → SnkMessageBuilder-89925609.js} +8 -12
- package/dist/esm/{pesquisa-fetcher-fe6f3826.js → dataunit-fetcher-3fbf9d12.js} +83 -181
- package/dist/esm/{index-0ece87a6.js → index-3aa4977a.js} +6 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/pesquisa-fetcher-03c8f919.js +164 -0
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/snk-actions-button_4.entry.js +4 -2
- package/dist/esm/snk-application.entry.js +33 -10
- package/dist/esm/snk-attach.entry.js +66 -41
- package/dist/esm/snk-crud.entry.js +96 -10
- package/dist/esm/snk-data-exporter.entry.js +316 -86
- package/dist/esm/snk-data-unit-8f98b45f.js +677 -0
- package/dist/esm/snk-data-unit.entry.js +12 -2
- package/dist/esm/snk-detail-view.entry.js +48 -7
- package/dist/esm/snk-filter-bar.entry.js +5 -1
- package/dist/esm/snk-form-view.entry.js +67 -0
- package/dist/esm/snk-form.entry.js +51 -6
- package/dist/esm/snk-grid.entry.js +162 -105
- package/dist/esm/{snk-guides-viewer-113be3fd.js → snk-guides-viewer-aee2cafe.js} +36 -8
- package/dist/esm/snk-guides-viewer.entry.js +8 -6
- package/dist/esm/snk-simple-crud.entry.js +252 -25
- package/dist/esm/snk-taskbar.entry.js +4 -3
- package/dist/esm/{taskbar-elements-2473c8ac.js → taskbar-elements-d59867f1.js} +3 -3
- package/dist/sankhyablocks/p-0d91b10f.entry.js +1 -0
- package/dist/sankhyablocks/p-1db45d26.entry.js +1 -0
- package/dist/sankhyablocks/p-26394a01.entry.js +1 -0
- package/dist/sankhyablocks/p-2d649237.entry.js +1 -0
- package/dist/sankhyablocks/p-30cf616e.js +1 -0
- package/dist/sankhyablocks/p-44767378.entry.js +1 -0
- package/dist/sankhyablocks/p-47b60deb.entry.js +1 -0
- package/dist/sankhyablocks/p-4f72727a.entry.js +1 -0
- package/dist/sankhyablocks/p-550fee49.entry.js +1 -0
- package/dist/sankhyablocks/p-5539ecb4.entry.js +1 -0
- package/dist/sankhyablocks/p-672302c3.js +60 -0
- package/dist/sankhyablocks/p-7a337364.js +1 -0
- package/dist/sankhyablocks/{p-ae4fc9a9.js → p-7e7a7473.js} +1 -1
- package/dist/sankhyablocks/p-829d4045.js +1 -0
- package/dist/sankhyablocks/p-8a5910a7.entry.js +1 -0
- package/dist/sankhyablocks/p-8cc64963.entry.js +1 -0
- package/dist/sankhyablocks/p-8fc470e5.entry.js +1 -0
- package/dist/sankhyablocks/p-9863d682.js +1 -0
- package/dist/sankhyablocks/p-9e99a92a.js +1 -0
- package/dist/sankhyablocks/p-af8efd95.js +6 -0
- package/dist/sankhyablocks/p-be603a24.js +1 -0
- package/dist/sankhyablocks/p-d09feef1.js +1 -0
- package/dist/sankhyablocks/p-e95b3b93.entry.js +11 -0
- package/dist/sankhyablocks/p-f2809746.entry.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-application/snk-application.d.ts +7 -3
- package/dist/types/components/snk-attach/snk-attach.d.ts +11 -9
- package/dist/types/components/snk-crud/interfaces/PropsCustomEditor.d.ts +4 -0
- package/dist/types/components/snk-crud/interfaces/PropsCustomRender.d.ts +4 -0
- package/dist/types/components/snk-crud/snk-crud.d.ts +36 -1
- package/dist/types/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.d.ts +23 -0
- package/dist/types/components/snk-crud/subcomponents/snk-form-view.d.ts +28 -3
- package/dist/types/components/snk-crud/subcomponents/snk-guides-viewer.d.ts +19 -0
- package/dist/types/components/snk-data-exporter/exporter-strategy/ClientSideExporterStrategy.d.ts +14 -0
- package/dist/types/components/snk-data-exporter/exporter-strategy/ServerSideExporterStrategy.d.ts +12 -0
- package/dist/types/components/snk-data-exporter/interfaces/IExporterProvider.d.ts +24 -4
- package/dist/types/components/snk-data-exporter/interfaces/IExporterStrategy.d.ts +5 -0
- package/dist/types/components/snk-data-exporter/providers/ClientSideExporterProvider.d.ts +17 -0
- package/dist/types/components/snk-data-exporter/providers/ServerSideExporterProvider.d.ts +17 -0
- package/dist/types/components/snk-data-exporter/snk-data-exporter.d.ts +4 -1
- package/dist/types/components/snk-data-exporter/structure/ItemBuilder.d.ts +21 -0
- package/dist/types/components/snk-data-exporter/test/resources/ClientSideExporterStrategyResources.d.ts +77 -0
- package/dist/types/components/snk-data-exporter/utils/ParserExport.d.ts +4 -0
- package/dist/types/components/snk-data-exporter/utils/RecordIDUtils.d.ts +3 -0
- package/dist/types/components/snk-data-unit/snk-data-unit.d.ts +61 -2
- package/dist/types/components/snk-data-unit/test/resources/metadataMock.d.ts +3 -0
- package/dist/types/components/snk-data-unit/test/resources/parentMetadataMock.d.ts +3 -0
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +4 -0
- package/dist/types/components/snk-form/snk-form.d.ts +14 -0
- package/dist/types/components/snk-grid/snk-grid.d.ts +46 -6
- package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +58 -4
- package/dist/types/components/snk-taskbar/elements/taskbar-elements.d.ts +1 -1
- package/dist/types/components.d.ts +220 -4
- package/dist/types/lib/@types/index.d.ts +5 -0
- package/dist/types/lib/DefaultCustomFormatters/RmPrecisionCustomValueFormatter.d.ts +11 -0
- package/dist/types/lib/dataUnit/InMemoryLoader.d.ts +2 -1
- package/dist/types/lib/dataUnit/ValueFormatter.d.ts +2 -0
- package/dist/types/lib/dataUnit/interfaces/InMemoryLoaderConfig.d.ts +3 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/DataUnitDataLoader.d.ts +2 -1
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/cache/ArrayRepository.d.ts +1 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/cache/PreloadManager.d.ts +1 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/interfaces/IBuildRequestBodyLoadRowMetadata.d.ts +10 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/interfaces/IRowMetadata.d.ts +7 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/DatasetStrategy.d.ts +6 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/test/resources/metadataMock.d.ts +20 -0
- package/dist/types/lib/http/data-fetcher/fetchers/fetchDataExporter/interfaces/IExporterColumnMetadata.d.ts +3 -0
- package/dist/types/lib/http/data-fetcher/fetchers/fetchDataExporter/interfaces/IFetchDataExporterParams.d.ts +2 -1
- package/dist/types/lib/http/data-fetcher/fetchers/pesquisa-fetcher.d.ts +1 -0
- package/package.json +1 -1
- package/dist/cjs/snk-data-unit-41c29713.js +0 -462
- package/dist/collection/lib/http/data-fetcher/fetchers/fetchDataExporter/index.js +0 -34
- package/dist/components/index3.js +0 -199
- package/dist/esm/snk-data-unit-de1d140d.js +0 -460
- package/dist/sankhyablocks/p-032fe52e.js +0 -1
- package/dist/sankhyablocks/p-03dcc5ff.entry.js +0 -1
- package/dist/sankhyablocks/p-07a61550.entry.js +0 -1
- package/dist/sankhyablocks/p-0899e0b5.entry.js +0 -1
- package/dist/sankhyablocks/p-154a7f33.entry.js +0 -1
- package/dist/sankhyablocks/p-15802c59.entry.js +0 -1
- package/dist/sankhyablocks/p-164666b1.js +0 -65
- package/dist/sankhyablocks/p-32556aa6.js +0 -1
- package/dist/sankhyablocks/p-328585d0.entry.js +0 -1
- package/dist/sankhyablocks/p-38289a55.js +0 -1
- package/dist/sankhyablocks/p-52c8e589.js +0 -1
- package/dist/sankhyablocks/p-5cb07080.js +0 -1
- package/dist/sankhyablocks/p-74d349c3.entry.js +0 -1
- package/dist/sankhyablocks/p-7fe120b8.entry.js +0 -11
- package/dist/sankhyablocks/p-add17f6a.entry.js +0 -1
- package/dist/sankhyablocks/p-af1ac81f.entry.js +0 -1
- package/dist/sankhyablocks/p-b4525fc0.entry.js +0 -1
- package/dist/sankhyablocks/p-cce0865d.js +0 -1
- package/dist/sankhyablocks/p-dec65f6c.entry.js +0 -1
- package/dist/sankhyablocks/p-ee9536bc.entry.js +0 -1
- package/dist/sankhyablocks/p-f13f7616.entry.js +0 -1
- package/dist/types/lib/http/data-fetcher/fetchers/fetchDataExporter/index.d.ts +0 -3
@@ -5,18 +5,20 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
5
|
const index = require('./index-f9e81701.js');
|
6
6
|
const core = require('@sankhyalabs/core');
|
7
7
|
const DataFetcher = require('./DataFetcher-313debd8.js');
|
8
|
-
|
9
|
-
require('./index-
|
8
|
+
require('./pesquisa-fetcher-680e198f.js');
|
9
|
+
require('./index-1dfc7a6e.js');
|
10
10
|
const ISave = require('./ISave-e91b70a7.js');
|
11
|
+
const dataunitFetcher = require('./dataunit-fetcher-620b29a1.js');
|
11
12
|
require('./filter-item-type.enum-a7ffdaa6.js');
|
12
13
|
require('./form-config-fetcher-2dd00e5b.js');
|
13
14
|
const constants = require('./constants-35ddd366.js');
|
14
15
|
const authFetcher = require('./auth-fetcher-54f5ff9d.js');
|
15
|
-
const taskbarElements = require('./taskbar-elements-
|
16
|
+
const taskbarElements = require('./taskbar-elements-9ad1f9c0.js');
|
16
17
|
require('./PrintUtils-bcaeb82f.js');
|
17
18
|
require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
|
18
19
|
require('@sankhyalabs/ezui/dist/collection/utils/constants');
|
19
20
|
require('@sankhyalabs/ezui/dist/collection/components/ez-grid/utils');
|
21
|
+
require('@sankhyalabs/core/dist/utils/SortingUtils');
|
20
22
|
require('./ResourceIDUtils-5ff86aa7.js');
|
21
23
|
require('./index-102ba62d.js');
|
22
24
|
|
@@ -313,7 +315,7 @@ class AnexoSistemaDataUnitFactory {
|
|
313
315
|
const { records } = dataUnit.getSelectionInfo();
|
314
316
|
const recordToDelete = records[0];
|
315
317
|
fetcher.delete(recordToDelete).then(() => {
|
316
|
-
|
318
|
+
dataunitFetcher.PreloadManager.removeRecords(dataUnit, [recordToDelete]);
|
317
319
|
return resolve(ids);
|
318
320
|
});
|
319
321
|
});
|
@@ -460,9 +462,9 @@ class AttachFetcherDataUnitFactory {
|
|
460
462
|
});
|
461
463
|
this._records = records;
|
462
464
|
}
|
463
|
-
let records =
|
464
|
-
records =
|
465
|
-
return Promise.resolve({ records, paginationInfo:
|
465
|
+
let records = dataunitFetcher.applyFilter(this._records, dataUnit, request.filters);
|
466
|
+
records = dataunitFetcher.applySorting(records, dataUnit, request.sort);
|
467
|
+
return Promise.resolve({ records, paginationInfo: dataunitFetcher.buildPaginationInfo(records, request.offset, request.limit) });
|
466
468
|
}
|
467
469
|
saveLoader(changes, fetcher) {
|
468
470
|
return new Promise((resolve) => {
|
@@ -652,26 +654,37 @@ const SnkAttach = class {
|
|
652
654
|
this._currentDataUnit = undefined;
|
653
655
|
this.crudConfig = undefined;
|
654
656
|
}
|
655
|
-
registerKeyWatcher(newRegisterKey, oldRegisterKey) {
|
656
|
-
var _a
|
657
|
-
if (
|
657
|
+
async registerKeyWatcher(newRegisterKey, oldRegisterKey) {
|
658
|
+
var _a;
|
659
|
+
if (this._currentDataUnit == null) {
|
658
660
|
this.loadAttachmentDataUnit();
|
659
661
|
}
|
660
662
|
if (oldRegisterKey !== newRegisterKey) {
|
661
|
-
this.
|
662
|
-
if (this.fetcherType === "AnexoSistema") {
|
663
|
-
this._currentFetcher = new AnexoSistemaFetcher(this.entityName, this.registerKey, (_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.name);
|
664
|
-
(_b = this._currentDataUnitBuilder) === null || _b === void 0 ? void 0 : _b.initLoaders(this._currentDataUnit, this._currentFetcher, this.returnToGridMode.bind(this));
|
665
|
-
return (_c = this._currentDataUnit) === null || _c === void 0 ? void 0 : _c.loadData();
|
666
|
-
}
|
667
|
-
if (this.fetcherType === "Attach") {
|
668
|
-
const hasMoreOneItem = ((_d = this.registerKey) === null || _d === void 0 ? void 0 : _d.split("_").length) > 1;
|
669
|
-
if (hasMoreOneItem)
|
670
|
-
return;
|
671
|
-
}
|
672
|
-
return (_f = (_e = this._currentDataUnit) === null || _e === void 0 ? void 0 : _e.loadMetadata()) === null || _f === void 0 ? void 0 : _f.then(this._currentDataUnit.loadData.bind(undefined, undefined, true, this.registerKey));
|
663
|
+
await ((_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.loadData());
|
673
664
|
}
|
674
665
|
}
|
666
|
+
async initAttach() {
|
667
|
+
var _a, _b, _c, _d, _e, _f;
|
668
|
+
if (!this.fetcherType && !this.registerKey)
|
669
|
+
return;
|
670
|
+
if (!this.fetcherType) {
|
671
|
+
this.fetcherType = "AnexoSistema";
|
672
|
+
}
|
673
|
+
this.returnToGridMode();
|
674
|
+
if (this.fetcherType === "AnexoSistema") {
|
675
|
+
this._currentFetcher = new AnexoSistemaFetcher(this.entityName, this.registerKey, (_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.name);
|
676
|
+
(_b = this._currentDataUnitBuilder) === null || _b === void 0 ? void 0 : _b.initLoaders(this._currentDataUnit, this._currentFetcher, this.returnToGridMode.bind(this));
|
677
|
+
await ((_c = this._currentDataUnit) === null || _c === void 0 ? void 0 : _c.loadData());
|
678
|
+
return;
|
679
|
+
}
|
680
|
+
if (this.fetcherType === "Attach") {
|
681
|
+
const hasMoreOneItem = ((_d = this.registerKey) === null || _d === void 0 ? void 0 : _d.split("_").length) > 1;
|
682
|
+
if (hasMoreOneItem)
|
683
|
+
return;
|
684
|
+
}
|
685
|
+
await ((_e = this._currentDataUnit) === null || _e === void 0 ? void 0 : _e.loadMetadata());
|
686
|
+
await ((_f = this._currentDataUnit) === null || _f === void 0 ? void 0 : _f.loadData(undefined, undefined, true, this.registerKey));
|
687
|
+
}
|
675
688
|
/**
|
676
689
|
* Conforme mecanismo de mensagens, é possível customizar as mensagens dos blocos de construção
|
677
690
|
* através de um pequeno modulo na estrutura da aplicação:
|
@@ -709,14 +722,14 @@ const SnkAttach = class {
|
|
709
722
|
if (this._crudElement)
|
710
723
|
this._crudElement.goToView(constants.VIEW_MODE.GRID);
|
711
724
|
}
|
712
|
-
loadAttachmentDataUnit() {
|
725
|
+
async loadAttachmentDataUnit() {
|
713
726
|
try {
|
714
727
|
switch (this.fetcherType) {
|
715
728
|
case "AnexoSistema":
|
716
|
-
this.loadAnexoSistema();
|
729
|
+
await this.loadAnexoSistema();
|
717
730
|
break;
|
718
731
|
case "Attach":
|
719
|
-
this.loadAttach();
|
732
|
+
await this.loadAttach();
|
720
733
|
break;
|
721
734
|
default:
|
722
735
|
this._currentFetcher = this.fetcher;
|
@@ -728,28 +741,29 @@ const SnkAttach = class {
|
|
728
741
|
throw new Error('There was an error while creating the data unit');
|
729
742
|
}
|
730
743
|
}
|
731
|
-
loadAnexoSistema() {
|
732
|
-
var _a;
|
733
|
-
this._currentDataUnit =
|
744
|
+
async loadAnexoSistema() {
|
745
|
+
var _a, _b, _c;
|
746
|
+
this._currentDataUnit = new dataunitFetcher.DataUnitFetcher().getDataUnit(RESOURCE_ID, DATA_UNIT_NAME);
|
734
747
|
this._currentFetcher = new AnexoSistemaFetcher(this.entityName, this.registerKey, (_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.name);
|
735
748
|
if (!this._currentDataUnit.metadata) {
|
736
|
-
this._currentDataUnit
|
737
|
-
|
738
|
-
.then(() => this.crudConfig = Object.assign({}, anexoSistemaCrudConfig));
|
749
|
+
await ((_b = this._currentDataUnit) === null || _b === void 0 ? void 0 : _b.loadMetadata());
|
750
|
+
this.crudConfig = Object.assign({}, anexoSistemaCrudConfig);
|
739
751
|
}
|
740
|
-
this.
|
752
|
+
this.initDataUnitLoaders();
|
741
753
|
this._currentDataUnit.addFilterProvider({
|
742
754
|
getFilter: () => this._currentDataUnitBuilder.getFilters(this.registerKey)
|
743
755
|
});
|
744
756
|
this._currentDataUnit.addInterceptor({
|
745
757
|
interceptAction: (action) => this._currentDataUnitBuilder.getInterceptions(this._currentDataUnit, action, this._crudElement)
|
746
758
|
});
|
747
|
-
this._currentDataUnit.loadData()
|
759
|
+
await ((_c = this._currentDataUnit) === null || _c === void 0 ? void 0 : _c.loadData());
|
760
|
+
this.disableEditFieldsNotInForm();
|
748
761
|
}
|
749
|
-
loadAttach() {
|
750
|
-
var _a, _b
|
762
|
+
async loadAttach() {
|
763
|
+
var _a, _b;
|
751
764
|
this._currentFetcher = new AttachFetcher();
|
752
|
-
this._currentDataUnit = new core.DataUnit(
|
765
|
+
this._currentDataUnit = new core.DataUnit(dataunitFetcher.InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME);
|
766
|
+
this.initDataUnitLoaders();
|
753
767
|
this._currentDataUnit.addInterceptor({
|
754
768
|
interceptAction: (action) => {
|
755
769
|
var _a;
|
@@ -760,16 +774,26 @@ const SnkAttach = class {
|
|
760
774
|
return this._currentDataUnitBuilder.getInterceptions(this._currentDataUnit, action, this._crudElement);
|
761
775
|
}
|
762
776
|
});
|
763
|
-
this._currentDataUnitBuilder = new AttachFetcherDataUnitFactory(this.getMessage.bind(this));
|
764
|
-
(_a = this._currentDataUnitBuilder) === null || _a === void 0 ? void 0 : _a.initLoaders(this._currentDataUnit, this._currentFetcher, async () => {
|
765
|
-
this.returnToGridMode();
|
766
|
-
await this._currentDataUnit.loadData(undefined, undefined, true, this.registerKey);
|
767
|
-
});
|
768
777
|
if (!this._currentDataUnit.metadata) {
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
778
|
+
await ((_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.loadMetadata());
|
779
|
+
this.crudConfig = Object.assign({}, attachCrudConfig);
|
780
|
+
await ((_b = this._currentDataUnit) === null || _b === void 0 ? void 0 : _b.loadData(undefined, undefined, true, this.registerKey));
|
781
|
+
this.disableEditFieldsNotInForm();
|
782
|
+
}
|
783
|
+
}
|
784
|
+
initDataUnitLoaders() {
|
785
|
+
var _a, _b, _c;
|
786
|
+
if (this.fetcherType === "AnexoSistema") {
|
787
|
+
this._currentFetcher = new AnexoSistemaFetcher(this.entityName, this.registerKey, (_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.name);
|
788
|
+
this._currentDataUnitBuilder = new AnexoSistemaDataUnitFactory(this.entityName, this.getMessage.bind(this));
|
789
|
+
(_b = this._currentDataUnitBuilder) === null || _b === void 0 ? void 0 : _b.initLoaders(this._currentDataUnit, this._currentFetcher, this.returnToGridMode.bind(this));
|
790
|
+
}
|
791
|
+
if (this.fetcherType === "Attach") {
|
792
|
+
this._currentFetcher = new AttachFetcher();
|
793
|
+
this._currentDataUnitBuilder = new AttachFetcherDataUnitFactory(this.getMessage.bind(this));
|
794
|
+
(_c = this._currentDataUnitBuilder) === null || _c === void 0 ? void 0 : _c.initLoaders(this._currentDataUnit, this._currentFetcher, async () => {
|
795
|
+
this.returnToGridMode();
|
796
|
+
await this._currentDataUnit.loadData(undefined, undefined, true, this.registerKey);
|
773
797
|
});
|
774
798
|
}
|
775
799
|
}
|
@@ -783,8 +807,9 @@ const SnkAttach = class {
|
|
783
807
|
}
|
784
808
|
});
|
785
809
|
}
|
786
|
-
componentWillLoad() {
|
810
|
+
async componentWillLoad() {
|
787
811
|
this._application = core.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
812
|
+
await this.initAttach();
|
788
813
|
}
|
789
814
|
componentWillRender() {
|
790
815
|
if (!this.fetcherType) {
|
@@ -4,13 +4,14 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
5
5
|
const index = require('./index-f9e81701.js');
|
6
6
|
const core = require('@sankhyalabs/core');
|
7
|
-
const taskbarElements = require('./taskbar-elements-
|
7
|
+
const taskbarElements = require('./taskbar-elements-9ad1f9c0.js');
|
8
8
|
require('./DataFetcher-313debd8.js');
|
9
|
-
require('./pesquisa-fetcher-
|
10
|
-
const index$1 = require('./index-
|
9
|
+
require('./pesquisa-fetcher-680e198f.js');
|
10
|
+
const index$1 = require('./index-1dfc7a6e.js');
|
11
11
|
require('./ISave-e91b70a7.js');
|
12
12
|
require('@sankhyalabs/ezui/dist/collection/utils/constants');
|
13
13
|
require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
|
14
|
+
require('./dataunit-fetcher-620b29a1.js');
|
14
15
|
require('./filter-item-type.enum-a7ffdaa6.js');
|
15
16
|
require('./form-config-fetcher-2dd00e5b.js');
|
16
17
|
const constants = require('./constants-35ddd366.js');
|
@@ -18,6 +19,7 @@ const authFetcher = require('./auth-fetcher-54f5ff9d.js');
|
|
18
19
|
require('./index-102ba62d.js');
|
19
20
|
require('./PrintUtils-bcaeb82f.js');
|
20
21
|
require('@sankhyalabs/ezui/dist/collection/components/ez-grid/utils');
|
22
|
+
require('@sankhyalabs/core/dist/utils/SortingUtils');
|
21
23
|
require('./ResourceIDUtils-5ff86aa7.js');
|
22
24
|
|
23
25
|
const snkCrudCss = ".sc-snk-crud-h{display:flex;flex-direction:column;height:100%;width:100%}";
|
@@ -31,6 +33,8 @@ const SnkCrud = class {
|
|
31
33
|
this.formItemsReady = index.createEvent(this, "formItemsReady", 7);
|
32
34
|
this._keyDownHandler = async (event) => this.keyDownListener(event);
|
33
35
|
this._viewHistory = [];
|
36
|
+
this._customEditors = new Map();
|
37
|
+
this._customRenders = new Map();
|
34
38
|
this._dataUnit = undefined;
|
35
39
|
this._dataState = undefined;
|
36
40
|
this.attachmentRegisterKey = undefined;
|
@@ -53,6 +57,8 @@ const SnkCrud = class {
|
|
53
57
|
this.filterBarLegacyConfigName = undefined;
|
54
58
|
this.formLegacyConfigName = undefined;
|
55
59
|
this.disablePersonalizedFilter = undefined;
|
60
|
+
this.autoLoad = undefined;
|
61
|
+
this.autoFocus = true;
|
56
62
|
this.customContainerId = `SNK-CRUD-CUSTOM-CONTAINER-${core.StringUtils.generateUUID()}`;
|
57
63
|
}
|
58
64
|
/**
|
@@ -88,6 +94,49 @@ const SnkCrud = class {
|
|
88
94
|
async getFilterBar() {
|
89
95
|
return await this._snkGrid.getFilterBar();
|
90
96
|
}
|
97
|
+
/**
|
98
|
+
* Registra um editor customizado para campos da grade e formulário.
|
99
|
+
*/
|
100
|
+
async addCustomEditor(fieldName, customEditor) {
|
101
|
+
if (this._guidesViewer && this._snkGrid) {
|
102
|
+
this._guidesViewer.addCustomEditor(fieldName, customEditor);
|
103
|
+
this._snkGrid.addCustomEditor(fieldName, customEditor);
|
104
|
+
return;
|
105
|
+
}
|
106
|
+
const newCustomEditors = new Map(this._customEditors);
|
107
|
+
newCustomEditors.set(fieldName, customEditor);
|
108
|
+
this._customEditors = newCustomEditors;
|
109
|
+
}
|
110
|
+
/**
|
111
|
+
* Registra um render customizado para colunas da grid.
|
112
|
+
*/
|
113
|
+
async addGridCustomRender(fieldName, customRender) {
|
114
|
+
if (this._snkGrid) {
|
115
|
+
this._snkGrid.addGridCustomRender(fieldName, customRender);
|
116
|
+
return;
|
117
|
+
}
|
118
|
+
const newCustomRenders = new Map(this._customRenders);
|
119
|
+
newCustomRenders.set(fieldName, customRender);
|
120
|
+
this._customRenders = newCustomRenders;
|
121
|
+
}
|
122
|
+
/**
|
123
|
+
* Registra um formatador de valores para uma coluna da grid.
|
124
|
+
*/
|
125
|
+
async addCustomValueFormatter(columnName, customFormatter) {
|
126
|
+
this._snkGrid.addCustomValueFormatter(columnName, customFormatter);
|
127
|
+
}
|
128
|
+
/**
|
129
|
+
* Remove o formatador de valores de uma coluna da grid.
|
130
|
+
*/
|
131
|
+
async removeCustomValueFormatter(columnName) {
|
132
|
+
this._snkGrid.removeCustomValueFormatter(columnName);
|
133
|
+
}
|
134
|
+
/**
|
135
|
+
* Altera/adiciona uma propriedade nos metadados do campo.
|
136
|
+
*/
|
137
|
+
async setFieldProp(fieldName, propName, value) {
|
138
|
+
await this._guidesViewer.setFieldProp(fieldName, propName, value);
|
139
|
+
}
|
91
140
|
currentViewModeWatcher(currentView) {
|
92
141
|
this._viewHistory = [...this._viewHistory.slice(-1), currentView];
|
93
142
|
}
|
@@ -147,6 +196,29 @@ const SnkCrud = class {
|
|
147
196
|
const joinedPrimaryKeys = recordCriteria.map(({ value }) => value).join('_');
|
148
197
|
return joinedPrimaryKeys;
|
149
198
|
}
|
199
|
+
setCustomRenders() {
|
200
|
+
if (!this._snkGrid) {
|
201
|
+
return;
|
202
|
+
}
|
203
|
+
for (const [fieldName, customRender] of this._customRenders) {
|
204
|
+
this._snkGrid.addGridCustomRender(fieldName, customRender);
|
205
|
+
this._customRenders.delete(fieldName);
|
206
|
+
}
|
207
|
+
}
|
208
|
+
setCustomEditors() {
|
209
|
+
if (!this._snkGrid || !this._guidesViewer) {
|
210
|
+
return;
|
211
|
+
}
|
212
|
+
for (const [fieldName, customEditor] of this._customEditors) {
|
213
|
+
this._guidesViewer.addCustomEditor(fieldName, customEditor);
|
214
|
+
this._snkGrid.addCustomEditor(fieldName, customEditor);
|
215
|
+
this._customEditors.delete(fieldName);
|
216
|
+
}
|
217
|
+
}
|
218
|
+
componentDidRender() {
|
219
|
+
this.setCustomRenders();
|
220
|
+
this.setCustomEditors();
|
221
|
+
}
|
150
222
|
componentWillLoad() {
|
151
223
|
this._application = core.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
152
224
|
let parent = this._element.parentElement;
|
@@ -169,12 +241,7 @@ const SnkCrud = class {
|
|
169
241
|
else {
|
170
242
|
this.initDataUnit();
|
171
243
|
}
|
172
|
-
this._snkDataUnit.addEventListener("dataStateChange",
|
173
|
-
this._dataState = dataState;
|
174
|
-
if (dataState.selectedRecord !== undefined) {
|
175
|
-
this.attachmentRegisterKey = await this.getAttachmentRegisterKey();
|
176
|
-
}
|
177
|
-
});
|
244
|
+
this._snkDataUnit.addEventListener("dataStateChange", this.handleDataStateChange.bind(this));
|
178
245
|
break;
|
179
246
|
}
|
180
247
|
parent = parent.parentElement;
|
@@ -190,6 +257,25 @@ const SnkCrud = class {
|
|
190
257
|
this.removeShortcuts();
|
191
258
|
window.removeEventListener("keydown", this._keyDownHandler);
|
192
259
|
}
|
260
|
+
async handleDataStateChange(evt) {
|
261
|
+
var _a;
|
262
|
+
this._dataState = evt.detail;
|
263
|
+
if (this._dataState.selectedRecord !== undefined) {
|
264
|
+
this.attachmentRegisterKey = await this.getAttachmentRegisterKey();
|
265
|
+
}
|
266
|
+
const fieldsWithRmPrecision = await this._snkDataUnit.getFieldsWithRmPrecision();
|
267
|
+
for (const field of fieldsWithRmPrecision || []) {
|
268
|
+
if (!field) {
|
269
|
+
continue;
|
270
|
+
}
|
271
|
+
const rmPrecision = (_a = this._dataState.rowMetadata) === null || _a === void 0 ? void 0 : _a.getProp('rm_precision', field);
|
272
|
+
if (!rmPrecision && rmPrecision !== 0) {
|
273
|
+
continue;
|
274
|
+
}
|
275
|
+
await this.setFieldProp(field, 'precision', rmPrecision);
|
276
|
+
await this.setFieldProp(field, 'prettyPrecision', rmPrecision);
|
277
|
+
}
|
278
|
+
}
|
193
279
|
async initKeyboardManager() {
|
194
280
|
var _a;
|
195
281
|
const keyboardManager = await ((_a = this._application) === null || _a === void 0 ? void 0 : _a.getKeyboardManager());
|
@@ -309,7 +395,7 @@ const SnkCrud = class {
|
|
309
395
|
return;
|
310
396
|
}
|
311
397
|
this._snkDataUnit.ignoreSaveMessage = this._currentViewMode === constants.VIEW_MODE.GRID;
|
312
|
-
return (index.h(index.Host, null, index.h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, index.h("stack-item", null, index.h("snk-grid", { ref: (ref) => this._snkGrid = ref, filterBarTitle: this.filterBarTitle, "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, recordsValidator: this.recordsValidator, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit, resourceID: this._resourceID, disablePersonalizedFilter: this.disablePersonalizedFilter, gridLegacyConfigName: this.gridLegacyConfigName, filterBarLegacyConfigName: this.filterBarLegacyConfigName }, index.h("slot", { name: "GRID_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "GRID_HEADER_CUSTOM_ELEMENTS" }), index.h("slot", { name: "SnkGridHeader" }), index.h("slot", { name: "SnkGridFooter" }), index.h("slot", { name: "SnkGridTaskBar" }))), index.h("stack-item", null, index.h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(constants.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, recordsValidator: this.recordsValidator, resourceID: this._resourceID, detailTaskbarCustomContainerId: this.customContainerId, formLegacyConfigName: this.formLegacyConfigName }, index.h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "SnkFormTaskBar" }))), index.h("stack-item", null, index.h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), index.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, customContainerId: this.customContainerId })), index.h("div", { id: `${this.customContainerId}` }, index.h("slot", { name: "SnkConfigContainerSlot" }), index.h("slot", { name: "DETAIL_GRID_HEADER_CUSTOM_ELEMENTS" }), index.h("slot", { name: "DETAIL_GRID_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "DETAIL_TASKBAR_CUSTOM_ELEMENTS" }))));
|
398
|
+
return (index.h(index.Host, null, index.h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, index.h("stack-item", null, index.h("snk-grid", { ref: (ref) => this._snkGrid = ref, filterBarTitle: this.filterBarTitle, "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, recordsValidator: this.recordsValidator, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit, resourceID: this._resourceID, disablePersonalizedFilter: this.disablePersonalizedFilter, gridLegacyConfigName: this.gridLegacyConfigName, filterBarLegacyConfigName: this.filterBarLegacyConfigName, autoLoad: this.autoLoad, autoFocus: this.autoFocus }, index.h("slot", { name: "GRID_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "GRID_HEADER_CUSTOM_ELEMENTS" }), index.h("slot", { name: "SnkGridHeader" }), index.h("slot", { name: "SnkGridFooter" }), index.h("slot", { name: "SnkGridTaskBar" }))), index.h("stack-item", null, index.h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(constants.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, recordsValidator: this.recordsValidator, resourceID: this._resourceID, detailTaskbarCustomContainerId: this.customContainerId, formLegacyConfigName: this.formLegacyConfigName }, index.h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "SnkFormTaskBar" }))), index.h("stack-item", null, index.h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), index.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, customContainerId: this.customContainerId })), index.h("div", { id: `${this.customContainerId}` }, index.h("slot", { name: "SnkConfigContainerSlot" }), index.h("slot", { name: "DETAIL_GRID_HEADER_CUSTOM_ELEMENTS" }), index.h("slot", { name: "DETAIL_GRID_TASKBAR_CUSTOM_ELEMENTS" }), index.h("slot", { name: "DETAIL_TASKBAR_CUSTOM_ELEMENTS" }))));
|
313
399
|
}
|
314
400
|
get _element() { return index.getElement(this); }
|
315
401
|
static get watchers() { return {
|