@sankhyalabs/sankhyablocks 8.15.0-rc.2 → 8.15.0-rc.21
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-302bbbd4.js → ConfigStorage-8d4e9d53.js} +70 -7
- package/dist/cjs/{DataFetcher-ba94ed5b.js → DataFetcher-99f0f6ed.js} +5 -3
- package/dist/cjs/{SnkFormConfigManager-71c4768e.js → SnkFormConfigManager-33995e92.js} +21 -13
- package/dist/cjs/{SnkMessageBuilder-e7dcf408.js → SnkMessageBuilder-66aa2557.js} +6 -1
- package/dist/cjs/SnkMultiSelectionListDataSource-d15f7aac.js +140 -0
- package/dist/cjs/{auth-fetcher-c8467c07.js → auth-fetcher-bb8e9ae4.js} +1 -1
- package/dist/cjs/{form-config-fetcher-df043d3d.js → form-config-fetcher-d73f4449.js} +13 -1
- package/dist/cjs/index-f9e81701.js +2 -10
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{pesquisa-fetcher-e4a7c4c3.js → pesquisa-fetcher-bdbbe9ac.js} +277 -61
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/{snk-actions-button_2.cjs.entry.js → snk-actions-button_4.cjs.entry.js} +520 -5
- package/dist/cjs/snk-application.cjs.entry.js +13 -8
- package/dist/cjs/snk-attach.cjs.entry.js +67 -47
- package/dist/cjs/snk-crud.cjs.entry.js +16 -10
- package/dist/cjs/snk-data-exporter.cjs.entry.js +10 -6
- package/dist/cjs/{snk-data-unit-82c08a8c.js → snk-data-unit-41c29713.js} +1 -1
- package/dist/cjs/snk-data-unit.cjs.entry.js +2 -2
- package/dist/cjs/snk-detail-view.cjs.entry.js +9 -10
- package/dist/cjs/snk-entity-list.cjs.entry.js +5 -3
- package/dist/cjs/snk-filter-bar.cjs.entry.js +36 -5
- package/dist/cjs/snk-filter-detail.cjs.entry.js +4 -1
- package/dist/cjs/snk-filter-item.cjs.entry.js +10 -6
- package/dist/cjs/snk-filter-modal-item.cjs.entry.js +3 -3
- package/dist/cjs/snk-form-config.cjs.entry.js +47 -27
- package/dist/cjs/snk-form.cjs.entry.js +11 -4
- package/dist/cjs/snk-grid.cjs.entry.js +37 -22
- package/dist/cjs/{snk-guides-viewer-d32c096f.js → snk-guides-viewer-a8dd24a3.js} +15 -9
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +7 -8
- package/dist/cjs/snk-personalized-filter-editor.cjs.entry.js +3 -1
- package/dist/cjs/snk-personalized-filter.cjs.entry.js +3 -3
- package/dist/cjs/snk-simple-crud.cjs.entry.js +256 -22
- package/dist/cjs/snk-taskbar.cjs.entry.js +123 -15
- package/dist/cjs/{taskbar-elements-01b85b99.js → taskbar-elements-3ecd1278.js} +9 -9
- package/dist/collection/collection-manifest.json +6 -6
- package/dist/collection/components/snk-application/__mocks__/snk-application.js +7 -0
- package/dist/collection/components/snk-application/snk-application.js +51 -11
- package/dist/collection/components/snk-attach/snk-attach.js +39 -24
- package/dist/collection/components/snk-attach/structure/builder/attach-crud-config.builder.js +1 -1
- package/dist/collection/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.js +29 -22
- package/dist/collection/components/snk-crud/snk-crud.js +95 -3
- package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js +2 -2
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.css +11 -2
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +27 -3
- package/dist/collection/components/snk-data-exporter/snk-data-exporter.js +7 -3
- package/dist/collection/components/snk-entity-list/snk-entity-list.js +5 -3
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-personalized-filter-editor/snk-personalized-filter-editor.js +3 -1
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-detail.js +22 -1
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.js +28 -6
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.css +24 -1
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +116 -2
- package/dist/collection/components/snk-form/snk-form.js +25 -1
- package/dist/collection/components/{snk-form → snk-form-config}/SnkFormConfigManager.js +20 -12
- package/dist/collection/components/{snk-form/subcomponents/snk-form-config → snk-form-config}/snk-form-config.js +50 -30
- package/dist/collection/components/snk-grid/snk-grid.js +100 -16
- package/dist/collection/components/{snk-grid/subcomponents/snk-grid-config → snk-grid-config}/snk-grid-config.js +130 -123
- package/dist/collection/components/{snk-grid/subcomponents → snk-grid-config}/snk-select-box/snk-select-box.js +1 -1
- package/dist/collection/components/snk-simple-crud/regular-buttons.js +3 -0
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.css +10 -2
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +421 -17
- package/dist/collection/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.js +1 -1
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +9 -9
- package/dist/collection/components/snk-taskbar/snk-taskbar.css +17 -0
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +166 -14
- package/dist/collection/lib/configs/ConfigStorage.js +63 -3
- package/dist/collection/lib/dataUnit/InMemoryLoader.js +9 -40
- package/dist/collection/lib/dataUnit/dataUnitInMemoryUtils.js +33 -0
- package/dist/collection/lib/http/data-fetcher/DataFetcher.js +5 -3
- package/dist/collection/lib/http/data-fetcher/fetchers/form-config-fetcher.js +12 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/personalized-filter-fetcher.js +6 -3
- package/dist/collection/lib/http/data-fetcher/fetchers/pesquisa-fetcher.js +4 -11
- package/dist/collection/lib/message/resources/snk-data-exporter.msg.js +2 -1
- package/dist/collection/lib/message/resources/snk-simple-crud.msg.js +4 -0
- package/dist/collection/lib/utils/CrudUtils.js +13 -1
- package/dist/components/ConfigStorage.js +68 -5
- package/dist/components/DataFetcher.js +5 -3
- package/dist/components/SnkFormConfigManager.js +19 -11
- package/dist/components/SnkMessageBuilder.js +6 -1
- package/dist/components/dataunit-fetcher.js +45 -50
- package/dist/components/field-search.js +93 -3
- package/dist/components/form-config-fetcher.js +12 -0
- package/dist/components/index.d.ts +6 -6
- package/dist/components/snk-application2.js +9 -1
- package/dist/components/snk-attach2.js +115 -52
- package/dist/components/snk-crud.js +15 -3
- package/dist/components/snk-data-exporter2.js +7 -3
- package/dist/components/snk-detail-view2.js +40 -7
- package/dist/components/snk-entity-list.js +5 -3
- package/dist/components/snk-filter-bar2.js +38 -3
- package/dist/components/snk-filter-detail2.js +5 -1
- package/dist/components/snk-filter-item2.js +11 -6
- package/dist/components/snk-form-config2.js +46 -26
- package/dist/components/snk-form.js +8 -0
- package/dist/components/snk-grid-config2.js +128 -102
- package/dist/components/snk-grid2.js +38 -17
- package/dist/components/snk-personalized-filter-editor.js +3 -1
- package/dist/components/snk-simple-crud2.js +317 -29
- package/dist/components/snk-taskbar2.js +139 -25
- package/dist/components/taskbar-actions-button2.js +1 -1
- package/dist/esm/{ConfigStorage-4151acc8.js → ConfigStorage-6e241cd7.js} +70 -7
- package/dist/esm/{DataFetcher-aa159c5a.js → DataFetcher-a650ae58.js} +5 -3
- package/dist/esm/{SnkFormConfigManager-5c7d3771.js → SnkFormConfigManager-7a4e678f.js} +21 -13
- package/dist/esm/{SnkMessageBuilder-0fb796b9.js → SnkMessageBuilder-0a4becdd.js} +6 -1
- package/dist/esm/SnkMultiSelectionListDataSource-7084f3b3.js +133 -0
- package/dist/esm/{auth-fetcher-c05dc474.js → auth-fetcher-8ec448b0.js} +1 -1
- package/dist/esm/{form-config-fetcher-36219cd3.js → form-config-fetcher-765b8498.js} +13 -1
- package/dist/esm/index-a7d3d3f1.js +2 -10
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{pesquisa-fetcher-fa0c2540.js → pesquisa-fetcher-96d2f351.js} +266 -54
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/{snk-actions-button_2.entry.js → snk-actions-button_4.entry.js} +519 -6
- package/dist/esm/snk-application.entry.js +13 -8
- package/dist/esm/snk-attach.entry.js +66 -46
- package/dist/esm/snk-crud.entry.js +16 -10
- package/dist/esm/snk-data-exporter.entry.js +10 -6
- package/dist/esm/{snk-data-unit-5d201fb3.js → snk-data-unit-de1d140d.js} +1 -1
- package/dist/esm/snk-data-unit.entry.js +2 -2
- package/dist/esm/snk-detail-view.entry.js +9 -10
- package/dist/esm/snk-entity-list.entry.js +5 -3
- package/dist/esm/snk-filter-bar.entry.js +36 -5
- package/dist/esm/snk-filter-detail.entry.js +4 -1
- package/dist/esm/snk-filter-item.entry.js +10 -6
- package/dist/esm/snk-filter-modal-item.entry.js +3 -3
- package/dist/esm/snk-form-config.entry.js +48 -28
- package/dist/esm/snk-form.entry.js +11 -4
- package/dist/esm/snk-grid.entry.js +38 -23
- package/dist/esm/{snk-guides-viewer-f49613c6.js → snk-guides-viewer-131e9660.js} +15 -9
- package/dist/esm/snk-guides-viewer.entry.js +7 -8
- package/dist/esm/snk-personalized-filter-editor.entry.js +3 -1
- package/dist/esm/snk-personalized-filter.entry.js +3 -3
- package/dist/esm/snk-simple-crud.entry.js +257 -23
- package/dist/esm/snk-taskbar.entry.js +124 -16
- package/dist/esm/{taskbar-elements-d4d0b424.js → taskbar-elements-2473c8ac.js} +9 -9
- package/dist/sankhyablocks/p-004c356e.js +26 -0
- package/dist/sankhyablocks/p-0624f62d.js +56 -0
- package/dist/sankhyablocks/p-075bba4c.entry.js +1 -0
- package/dist/sankhyablocks/p-07a61550.entry.js +1 -0
- package/dist/sankhyablocks/p-103c5956.entry.js +1 -0
- package/dist/sankhyablocks/p-1048bd26.entry.js +1 -0
- package/dist/sankhyablocks/{p-e6380c60.js → p-125bb902.js} +1 -1
- package/dist/sankhyablocks/p-13ae1a89.entry.js +1 -0
- package/dist/sankhyablocks/{p-e0fd9555.entry.js → p-24ed6ad6.entry.js} +1 -1
- package/dist/sankhyablocks/p-32556aa6.js +1 -0
- package/dist/sankhyablocks/p-33718dfc.entry.js +1 -0
- package/dist/sankhyablocks/p-34a7f2ab.js +65 -0
- package/dist/sankhyablocks/{p-f3d1c48e.js → p-52c8e589.js} +1 -1
- package/dist/sankhyablocks/p-54a5d52a.entry.js +1 -0
- package/dist/sankhyablocks/p-5833cff9.js +1 -0
- package/dist/sankhyablocks/p-5a2e016a.entry.js +1 -0
- package/dist/sankhyablocks/p-619c5f6f.entry.js +11 -0
- package/dist/sankhyablocks/p-6f560924.entry.js +1 -0
- package/dist/sankhyablocks/p-8967fa78.js +1 -0
- package/dist/sankhyablocks/p-9b1beac5.entry.js +1 -0
- package/dist/sankhyablocks/p-a87149e4.entry.js +1 -0
- package/dist/sankhyablocks/{p-7f3c7b09.entry.js → p-ac77949b.entry.js} +1 -1
- package/dist/sankhyablocks/p-ae4fc9a9.js +1 -0
- package/dist/sankhyablocks/p-b10b9934.entry.js +1 -0
- package/dist/sankhyablocks/p-b11aa1e0.entry.js +1 -0
- package/dist/sankhyablocks/{p-9695f78b.js → p-be75153c.js} +1 -1
- package/dist/sankhyablocks/p-bf39bdb8.entry.js +1 -0
- package/dist/sankhyablocks/p-e8763234.entry.js +1 -0
- package/dist/sankhyablocks/p-efeca7ba.js +1 -0
- package/dist/sankhyablocks/p-f7d0fab9.entry.js +1 -0
- package/dist/sankhyablocks/p-f7d9d148.entry.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-actions-button/subcomponents/snk-actions-form.d.ts +1 -1
- package/dist/types/components/snk-application/__mocks__/snk-application.d.ts +3 -0
- package/dist/types/components/snk-application/snk-application.d.ts +8 -0
- package/dist/types/components/snk-attach/snk-attach.d.ts +2 -1
- package/dist/types/components/snk-attach/structure/builder/attach-crud-config.builder.d.ts +10 -1
- package/dist/types/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.d.ts +5 -4
- package/dist/types/components/snk-crud/snk-crud.d.ts +21 -0
- package/dist/types/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.d.ts +1 -1
- package/dist/types/components/snk-crud/subcomponents/snk-guides-viewer.d.ts +6 -1
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-detail.d.ts +4 -0
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-item.d.ts +6 -2
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +20 -1
- package/dist/types/components/snk-form/snk-form.d.ts +6 -1
- package/dist/types/components/{snk-form → snk-form-config}/SnkFormConfigManager.d.ts +2 -1
- package/dist/types/components/{snk-form/subcomponents/snk-form-config → snk-form-config}/snk-form-config.d.ts +5 -3
- package/dist/types/components/snk-grid/snk-grid.d.ts +19 -1
- package/dist/types/components/{snk-grid/subcomponents/snk-grid-config → snk-grid-config}/snk-grid-config.d.ts +11 -6
- package/dist/types/components/{snk-grid/subcomponents → snk-grid-config}/snk-select-box/snk-select-box.d.ts +1 -1
- package/dist/types/components/snk-simple-crud/regular-buttons.d.ts +3 -0
- package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +76 -3
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +34 -1
- package/dist/types/components.d.ts +226 -12
- package/dist/types/lib/configs/ConfigStorage.d.ts +21 -1
- package/dist/types/lib/dataUnit/InMemoryLoader.d.ts +0 -2
- package/dist/types/lib/dataUnit/dataUnitInMemoryUtils.d.ts +4 -0
- package/dist/types/lib/http/data-fetcher/fetchers/form-config-fetcher.d.ts +2 -0
- package/dist/types/lib/http/data-fetcher/fetchers/personalized-filter-fetcher.d.ts +2 -1
- package/dist/types/lib/utils/CrudUtils.d.ts +3 -0
- package/package.json +9 -2
- package/dist/cjs/PreloadManager-84466da6.js +0 -224
- package/dist/cjs/SnkMultiSelectionListDataSource-ba5838c2.js +0 -49
- package/dist/cjs/snk-grid-config.cjs.entry.js +0 -483
- package/dist/cjs/snk-select-box.cjs.entry.js +0 -25
- package/dist/esm/PreloadManager-c1c2f2b4.js +0 -222
- package/dist/esm/SnkMultiSelectionListDataSource-44494b0e.js +0 -43
- package/dist/esm/snk-grid-config.entry.js +0 -479
- package/dist/esm/snk-select-box.entry.js +0 -21
- package/dist/sankhyablocks/p-02e3a45b.entry.js +0 -1
- package/dist/sankhyablocks/p-05243555.js +0 -1
- package/dist/sankhyablocks/p-094c30cb.js +0 -1
- package/dist/sankhyablocks/p-0d7863ed.js +0 -26
- package/dist/sankhyablocks/p-0ec5b2e5.js +0 -1
- package/dist/sankhyablocks/p-1d75d9f9.entry.js +0 -1
- package/dist/sankhyablocks/p-2582537c.entry.js +0 -1
- package/dist/sankhyablocks/p-282789a6.entry.js +0 -1
- package/dist/sankhyablocks/p-374d03f6.js +0 -1
- package/dist/sankhyablocks/p-3b0e4e08.js +0 -65
- package/dist/sankhyablocks/p-40915359.entry.js +0 -1
- package/dist/sankhyablocks/p-573a07c5.js +0 -1
- package/dist/sankhyablocks/p-69efa80d.entry.js +0 -1
- package/dist/sankhyablocks/p-761ed32f.entry.js +0 -1
- package/dist/sankhyablocks/p-86801b08.entry.js +0 -1
- package/dist/sankhyablocks/p-96ef14f9.entry.js +0 -1
- package/dist/sankhyablocks/p-98674137.entry.js +0 -1
- package/dist/sankhyablocks/p-9b5944a4.entry.js +0 -1
- package/dist/sankhyablocks/p-9bdbc7d8.entry.js +0 -1
- package/dist/sankhyablocks/p-a52b9254.entry.js +0 -11
- package/dist/sankhyablocks/p-aa95fb2c.js +0 -56
- package/dist/sankhyablocks/p-ac384baf.entry.js +0 -1
- package/dist/sankhyablocks/p-b05ab13d.entry.js +0 -1
- package/dist/sankhyablocks/p-c22c1d8e.js +0 -1
- package/dist/sankhyablocks/p-c4874327.entry.js +0 -1
- package/dist/sankhyablocks/p-c758265f.entry.js +0 -1
- package/dist/sankhyablocks/p-cb7419e0.entry.js +0 -1
- package/dist/sankhyablocks/p-d4f9ee17.entry.js +0 -1
- package/dist/sankhyablocks/p-d6317851.entry.js +0 -1
- /package/dist/collection/components/{snk-form/subcomponents/snk-form-config → snk-form-config}/snk-form-config.css +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-config-options/snk-config-options.css +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-config-options/snk-config-options.js +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-field-config/snk-field-config.css +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-field-config/snk-field-config.js +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-tab-config/snk-tab-config.css +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-tab-config/snk-tab-config.js +0 -0
- /package/dist/collection/components/{snk-grid/subcomponents/snk-grid-config → snk-grid-config}/snk-grid-config.css +0 -0
- /package/dist/collection/components/{snk-grid/subcomponents → snk-grid-config}/snk-select-box/snk-select-box.css +0 -0
- /package/dist/types/components/{snk-form → snk-form-config}/subcomponents/snk-config-options/snk-config-options.d.ts +0 -0
- /package/dist/types/components/{snk-form → snk-form-config}/subcomponents/snk-field-config/snk-field-config.d.ts +0 -0
- /package/dist/types/components/{snk-form → snk-form-config}/subcomponents/snk-tab-config/snk-tab-config.d.ts +0 -0
@@ -1,11 +1,11 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './index-a7d3d3f1.js';
|
2
2
|
import { S as Sortable } from './Sortable-83960219.js';
|
3
|
-
import { ObjectUtils, ElementIDUtils, ArrayUtils } from '@sankhyalabs/core';
|
3
|
+
import { ObjectUtils, ElementIDUtils, ArrayUtils, ApplicationContext } from '@sankhyalabs/core';
|
4
4
|
import { ApplicationUtils, DialogType } from '@sankhyalabs/ezui/dist/collection/utils';
|
5
5
|
import { C as CONFIG_EVENTS, a as CONFIG_SORTABLE_EVENTS, T as TAB_NAMES, A as ACTION_CONFIG, D as DEFAULT_TYPE } from './constants-8457af36.js';
|
6
|
-
import { U as UserConfigType } from './form-config-fetcher-
|
6
|
+
import { U as UserConfigType } from './form-config-fetcher-765b8498.js';
|
7
7
|
import { buildFormConfigFromDataUnit } from '@sankhyalabs/ezui/dist/collection/utils/form';
|
8
|
-
import './DataFetcher-
|
8
|
+
import './DataFetcher-a650ae58.js';
|
9
9
|
import './PrintUtils-3e4ff0f5.js';
|
10
10
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
11
11
|
|
@@ -34,6 +34,7 @@ const SnkFormConfig = class {
|
|
34
34
|
this._formFieldsStyle = "ez-col ez-col--sd-12 ez-col--tb-4 ez-padding-right--small ez-padding-bottom--medium sc-snk-form-config";
|
35
35
|
this._fieldsAvailableStyle = "ez-col ez-col--sd-12 ez-col--tb-12 ez-margin-bottom--medium ez-margin-right--medium sc-snk-form-config";
|
36
36
|
this._fieldFloatingStyle = "form-config__field-config--dragged";
|
37
|
+
this._sortableTimer = 100;
|
37
38
|
this._formConfigOptions = [];
|
38
39
|
this._fieldConfigSelected = undefined;
|
39
40
|
this._layoutFormConfig = undefined;
|
@@ -48,20 +49,27 @@ const SnkFormConfig = class {
|
|
48
49
|
this.messagesBuilder = undefined;
|
49
50
|
}
|
50
51
|
observeConfigManager() {
|
51
|
-
this.loadConfig();
|
52
|
+
this.loadConfig(this._sortableTimer);
|
52
53
|
}
|
53
|
-
loadFields() {
|
54
|
+
loadFields(updateTimer = 0) {
|
54
55
|
this._layoutFormConfig = [];
|
55
|
-
|
56
|
+
if (updateTimer > 0) {
|
57
|
+
setTimeout(() => {
|
58
|
+
this.buildFields();
|
59
|
+
}, updateTimer);
|
60
|
+
}
|
61
|
+
else {
|
62
|
+
this.buildFields();
|
63
|
+
}
|
56
64
|
}
|
57
65
|
buildFields() {
|
58
66
|
this.buildFormConfig();
|
59
67
|
this.buildAvailableFields();
|
60
68
|
}
|
61
|
-
loadFormConfig() {
|
69
|
+
loadFormConfig(updateTimer) {
|
62
70
|
var _a;
|
63
71
|
this._formConfig = this.getConfig();
|
64
|
-
this.loadFields();
|
72
|
+
this.loadFields(updateTimer);
|
65
73
|
this.controlFieldConfig();
|
66
74
|
if (((_a = this._filterFieldsAvailable) === null || _a === void 0 ? void 0 : _a.value) != undefined) {
|
67
75
|
this._filterFieldsAvailable.value = "";
|
@@ -104,12 +112,12 @@ const SnkFormConfig = class {
|
|
104
112
|
}
|
105
113
|
}
|
106
114
|
resetChangeConfig() {
|
107
|
-
this.loadFormConfig();
|
115
|
+
this.loadFormConfig(this._sortableTimer);
|
108
116
|
this.clearTempGroups();
|
109
117
|
}
|
110
118
|
resetChangeOptionConfig() {
|
111
119
|
this._formConfigChanged = false;
|
112
|
-
this.loadConfig();
|
120
|
+
this.loadConfig(this._sortableTimer);
|
113
121
|
this.clearTempGroups();
|
114
122
|
}
|
115
123
|
getTabsToSave() {
|
@@ -324,7 +332,9 @@ const SnkFormConfig = class {
|
|
324
332
|
&& oldContainer.id === newContainer.id) {
|
325
333
|
evt.cancel();
|
326
334
|
this._fieldsAvailable = [];
|
327
|
-
|
335
|
+
setTimeout(() => {
|
336
|
+
this.buildAvailableFields();
|
337
|
+
}, this._sortableTimer);
|
328
338
|
return true;
|
329
339
|
}
|
330
340
|
return false;
|
@@ -367,7 +377,11 @@ const SnkFormConfig = class {
|
|
367
377
|
if (isNewGroup) {
|
368
378
|
this.clearTempGroups(true);
|
369
379
|
}
|
370
|
-
|
380
|
+
const sortableTimer = oldContainer.dataset.groupName !== newContainer.dataset.groupName
|
381
|
+
|| (newContainer.id === CONTAINER_ID.withoutGroup && oldContainer.id === CONTAINER_ID.fieldsAvailable)
|
382
|
+
? this._sortableTimer
|
383
|
+
: 0;
|
384
|
+
this.updateFieldsToSave(sortableTimer);
|
371
385
|
}, this._renderTimer);
|
372
386
|
return true;
|
373
387
|
}
|
@@ -397,12 +411,12 @@ const SnkFormConfig = class {
|
|
397
411
|
return;
|
398
412
|
}
|
399
413
|
}
|
400
|
-
updateFieldsToSave() {
|
414
|
+
updateFieldsToSave(updateTimer = 0) {
|
401
415
|
const fields = this.getFieldsToSave();
|
402
416
|
if ((fields === null || fields === void 0 ? void 0 : fields.length) > 0) {
|
403
417
|
this._formConfig.fields = fields;
|
404
418
|
}
|
405
|
-
this.loadFields();
|
419
|
+
this.loadFields(updateTimer);
|
406
420
|
this._formConfigChanged = true;
|
407
421
|
}
|
408
422
|
controlSortableField() {
|
@@ -432,7 +446,7 @@ const SnkFormConfig = class {
|
|
432
446
|
controlStopDraggingGroup(evt) {
|
433
447
|
if (evt.data.newIndex !== evt.data.oldIndex) {
|
434
448
|
setTimeout(() => {
|
435
|
-
this.updateFieldsToSave();
|
449
|
+
this.updateFieldsToSave(this._sortableTimer);
|
436
450
|
}, this._renderTimer);
|
437
451
|
}
|
438
452
|
}
|
@@ -505,7 +519,7 @@ const SnkFormConfig = class {
|
|
505
519
|
});
|
506
520
|
if (tabs.length > 0) {
|
507
521
|
this._formConfig.tabs = tabs;
|
508
|
-
this.loadFields();
|
522
|
+
this.loadFields(this._sortableTimer);
|
509
523
|
this.controlFieldConfig();
|
510
524
|
this._formConfigChanged = true;
|
511
525
|
}
|
@@ -529,13 +543,13 @@ const SnkFormConfig = class {
|
|
529
543
|
if (config != undefined) {
|
530
544
|
this._formConfig = config;
|
531
545
|
this._tabSelected = 1;
|
532
|
-
this.loadFields();
|
546
|
+
this.loadFields(this._sortableTimer);
|
533
547
|
this.controlFieldConfig();
|
534
548
|
this.clearTempGroups();
|
535
549
|
}
|
536
550
|
}
|
537
|
-
loadConfig() {
|
538
|
-
this.loadFormConfig();
|
551
|
+
loadConfig(updateTimer = 0) {
|
552
|
+
this.loadFormConfig(updateTimer);
|
539
553
|
this.loadUserConfig();
|
540
554
|
}
|
541
555
|
addNewGroup() {
|
@@ -576,7 +590,7 @@ const SnkFormConfig = class {
|
|
576
590
|
});
|
577
591
|
}
|
578
592
|
else {
|
579
|
-
this.updateFieldsToSave();
|
593
|
+
this.updateFieldsToSave(this._sortableTimer);
|
580
594
|
}
|
581
595
|
}
|
582
596
|
checkGroupExists(newLabel, indexGroup, isTempGroup = false) {
|
@@ -622,7 +636,7 @@ const SnkFormConfig = class {
|
|
622
636
|
field.group = newLabel;
|
623
637
|
}
|
624
638
|
});
|
625
|
-
this.loadFields();
|
639
|
+
this.loadFields(this._sortableTimer);
|
626
640
|
this.controlFieldConfig();
|
627
641
|
this._formConfigChanged = true;
|
628
642
|
}
|
@@ -836,14 +850,14 @@ const SnkFormConfig = class {
|
|
836
850
|
this._formConfigChanged = true;
|
837
851
|
this.resetSortables();
|
838
852
|
}
|
839
|
-
controlRemoveFieldConfig(fieldConfig) {
|
853
|
+
controlRemoveFieldConfig(fieldConfig, updateTimer) {
|
840
854
|
var _a;
|
841
855
|
this._formConfigChanged = false;
|
842
856
|
if (fieldConfig == undefined) {
|
843
857
|
return;
|
844
858
|
}
|
845
859
|
this._formConfig.fields = (_a = this._formConfig.fields) === null || _a === void 0 ? void 0 : _a.filter((field) => field.name !== fieldConfig.name);
|
846
|
-
this.loadFields();
|
860
|
+
this.loadFields(updateTimer);
|
847
861
|
this.controlFieldConfig();
|
848
862
|
this._formConfigChanged = true;
|
849
863
|
this.resetSortables();
|
@@ -852,14 +866,14 @@ const SnkFormConfig = class {
|
|
852
866
|
this.controlSortableField();
|
853
867
|
this.controlSortableGroup();
|
854
868
|
}
|
855
|
-
handleFieldConfigChange(evt) {
|
869
|
+
handleFieldConfigChange(evt, updateTimer = 0) {
|
856
870
|
const { field: fieldConfig, type: actionType } = evt.detail;
|
857
871
|
if (actionType === ACTION_CONFIG.configuration) {
|
858
872
|
this.controlFieldConfig(fieldConfig);
|
859
873
|
return;
|
860
874
|
}
|
861
875
|
if (actionType === ACTION_CONFIG.remove) {
|
862
|
-
this.controlRemoveFieldConfig(fieldConfig);
|
876
|
+
this.controlRemoveFieldConfig(fieldConfig, updateTimer);
|
863
877
|
return;
|
864
878
|
}
|
865
879
|
if (actionType === ACTION_CONFIG.add) {
|
@@ -880,7 +894,7 @@ const SnkFormConfig = class {
|
|
880
894
|
tab.label = newLabel;
|
881
895
|
}
|
882
896
|
});
|
883
|
-
this.loadFields();
|
897
|
+
this.loadFields(this._sortableTimer);
|
884
898
|
this.controlFieldConfig();
|
885
899
|
this._formConfigChanged = true;
|
886
900
|
}
|
@@ -900,7 +914,7 @@ const SnkFormConfig = class {
|
|
900
914
|
this._formConfig.tabs = (_a = this._formConfig.tabs) === null || _a === void 0 ? void 0 : _a.filter((tab) => {
|
901
915
|
return tab.label !== tabSelected.detail.label;
|
902
916
|
});
|
903
|
-
this.loadFields();
|
917
|
+
this.loadFields(this._sortableTimer);
|
904
918
|
this.controlFieldConfig();
|
905
919
|
this._formConfigChanged = true;
|
906
920
|
}
|
@@ -913,7 +927,7 @@ const SnkFormConfig = class {
|
|
913
927
|
tab.visible = !tab.visible;
|
914
928
|
}
|
915
929
|
});
|
916
|
-
this.loadFields();
|
930
|
+
this.loadFields(this._sortableTimer);
|
917
931
|
this.controlFieldConfig();
|
918
932
|
this._formConfigChanged = true;
|
919
933
|
}
|
@@ -938,6 +952,12 @@ const SnkFormConfig = class {
|
|
938
952
|
this.controlSortableField();
|
939
953
|
this.controlSortableGroup();
|
940
954
|
}
|
955
|
+
async componentWillRender() {
|
956
|
+
if (this.messagesBuilder == undefined) {
|
957
|
+
const application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
958
|
+
this.messagesBuilder = application.messagesBuilder;
|
959
|
+
}
|
960
|
+
}
|
941
961
|
componentWillLoad() {
|
942
962
|
this.loadConfig();
|
943
963
|
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, g as getElement } from './index-a7d3d3f1.js';
|
2
2
|
import { ElementIDUtils } from '@sankhyalabs/core';
|
3
|
-
import { S as SnkFormConfigManager } from './SnkFormConfigManager-
|
3
|
+
import { S as SnkFormConfigManager } from './SnkFormConfigManager-7a4e678f.js';
|
4
4
|
import { R as ResourceIDUtils } from './ResourceIDUtils-a114189a.js';
|
5
|
-
import './ConfigStorage-
|
6
|
-
import './form-config-fetcher-
|
7
|
-
import './DataFetcher-
|
5
|
+
import './ConfigStorage-6e241cd7.js';
|
6
|
+
import './form-config-fetcher-765b8498.js';
|
7
|
+
import './DataFetcher-a650ae58.js';
|
8
8
|
import './PrintUtils-3e4ff0f5.js';
|
9
9
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
10
10
|
import './filter-item-type.enum-d45e026f.js';
|
@@ -24,6 +24,7 @@ const SnkForm = class {
|
|
24
24
|
this.configName = undefined;
|
25
25
|
this.recordsValidator = undefined;
|
26
26
|
this.messagesBuilder = undefined;
|
27
|
+
this.formLegacyConfigName = undefined;
|
27
28
|
this.resourceID = undefined;
|
28
29
|
}
|
29
30
|
/**
|
@@ -71,8 +72,14 @@ const SnkForm = class {
|
|
71
72
|
this.resourceID = await ResourceIDUtils.getResourceID();
|
72
73
|
}
|
73
74
|
this._configManager = new SnkFormConfigManager(this.configName, this.resourceID);
|
75
|
+
this.addFormLegacyConfig();
|
74
76
|
this._configManager.loadConfig();
|
75
77
|
}
|
78
|
+
addFormLegacyConfig() {
|
79
|
+
if (this.formLegacyConfigName) {
|
80
|
+
this._configManager.addFormLegacyConfig(this.formLegacyConfigName);
|
81
|
+
}
|
82
|
+
}
|
76
83
|
render() {
|
77
84
|
if (!this._dataUnit || !this._dataState) {
|
78
85
|
return undefined;
|
@@ -1,20 +1,23 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, F as Fragment, g as getElement } from './index-a7d3d3f1.js';
|
2
2
|
import { ElementIDUtils, ApplicationContext, StringUtils, DataType } from '@sankhyalabs/core';
|
3
|
-
import {
|
4
|
-
import { T as TaskbarElement } from './taskbar-elements-
|
5
|
-
import { C as ConfigStorage } from './ConfigStorage-
|
3
|
+
import { UserInterface } from '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
4
|
+
import { T as TaskbarElement } from './taskbar-elements-2473c8ac.js';
|
5
|
+
import { C as ConfigStorage } from './ConfigStorage-6e241cd7.js';
|
6
6
|
import { P as PresentationMode } from './index-0ece87a6.js';
|
7
7
|
import { T as TaskbarProcessor, o as openFieldSearch, b as buildFieldSearch } from './field-search-efbe307f.js';
|
8
8
|
import { s as store } from './index-bdf75557.js';
|
9
|
-
import { S as SnkMultiSelectionListDataSource } from './SnkMultiSelectionListDataSource-
|
9
|
+
import { S as SnkMultiSelectionListDataSource, C as CrudUtils } from './SnkMultiSelectionListDataSource-7084f3b3.js';
|
10
10
|
import { SelectionMode } from '@sankhyalabs/core/dist/dataunit/DataUnit';
|
11
|
-
import './
|
12
|
-
import './
|
13
|
-
import './
|
11
|
+
import './DataFetcher-a650ae58.js';
|
12
|
+
import './pesquisa-fetcher-96d2f351.js';
|
13
|
+
import './ISave-d8c8bc59.js';
|
14
|
+
import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
14
15
|
import './filter-item-type.enum-d45e026f.js';
|
16
|
+
import './form-config-fetcher-765b8498.js';
|
15
17
|
import '@sankhyalabs/ezui/dist/collection/components/ez-grid/utils/InMemoryFilterColumnDataSource';
|
16
|
-
import './
|
18
|
+
import './PrintUtils-3e4ff0f5.js';
|
17
19
|
import '@sankhyalabs/ezui/dist/collection/components/ez-grid/utils';
|
20
|
+
import './ResourceIDUtils-a114189a.js';
|
18
21
|
|
19
22
|
const snkGridCss = ".sc-snk-grid-h{--snk-grid-min-height:300px}.snk-grid__container.sc-snk-grid{display:flex;height:100%;width:100%}.snk-grid__header.sc-snk-grid{width:100%;display:flex;flex-wrap:nowrap;justify-content:flex-end}.snk-grid__filter-bar.sc-snk-grid{width:100%}.snk-grid__header-divider.sc-snk-grid{margin-bottom:var(--space--medium)}.snk-grid__table.sc-snk-grid{min-height:var(--snk-grid-min-height)}.snk-grid-container__without-shadow.sc-snk-grid{--ezgrid__container--shadow:unset}";
|
20
23
|
|
@@ -49,6 +52,7 @@ const SnkGrid = class {
|
|
49
52
|
this._showSnkFilterBar = true;
|
50
53
|
this.columnFilterDataSource = new SnkMultiSelectionListDataSource();
|
51
54
|
this.configName = undefined;
|
55
|
+
this.filterBarTitle = undefined;
|
52
56
|
this.resourceID = undefined;
|
53
57
|
this.selectionToastConfig = undefined;
|
54
58
|
this.actionsList = undefined;
|
@@ -64,6 +68,9 @@ const SnkGrid = class {
|
|
64
68
|
this.taskbarCustomContainerId = undefined;
|
65
69
|
this.gridHeaderCustomSlotId = 'GRID_HEADER_CUSTOM_ELEMENTS';
|
66
70
|
this.topTaskbarCustomSlotId = 'GRID_TASKBAR_CUSTOM_ELEMENTS';
|
71
|
+
this.disablePersonalizedFilter = undefined;
|
72
|
+
this.gridLegacyConfigName = undefined;
|
73
|
+
this.filterBarLegacyConfigName = undefined;
|
67
74
|
}
|
68
75
|
/**
|
69
76
|
* Exibe a janela de configurações da grade.
|
@@ -108,6 +115,16 @@ const SnkGrid = class {
|
|
108
115
|
async findColumn() {
|
109
116
|
await openFieldSearch(this._moreOptions, this._columnSearch);
|
110
117
|
}
|
118
|
+
async handleGridLegacyConfigName(newLegacyConfig, oldLegacyConfig) {
|
119
|
+
if (!newLegacyConfig) {
|
120
|
+
return;
|
121
|
+
}
|
122
|
+
if (newLegacyConfig === oldLegacyConfig) {
|
123
|
+
return;
|
124
|
+
}
|
125
|
+
this.addGridLegacyConfigName();
|
126
|
+
this.loadConfig();
|
127
|
+
}
|
111
128
|
openGridConfig() {
|
112
129
|
this._grid.getColumnsState()
|
113
130
|
.then((gridColumns) => {
|
@@ -121,19 +138,7 @@ const SnkGrid = class {
|
|
121
138
|
}
|
122
139
|
setGridConfig(config) {
|
123
140
|
this._gridConfig = config;
|
124
|
-
|
125
|
-
}
|
126
|
-
assertDefaultSorting() {
|
127
|
-
if (this._gridConfig && this._dataUnit) {
|
128
|
-
this._dataUnit.defaultSorting = this._gridConfig
|
129
|
-
.columns
|
130
|
-
.filter(col => col.ascending != undefined)
|
131
|
-
.sort((colA, colB) => colA.orderIndex - colB.orderIndex)
|
132
|
-
.map(({ name: field, ascending }) => {
|
133
|
-
const { dataType } = this._dataUnit.getField(field);
|
134
|
-
return { field, dataType, mode: ascending ? SortMode.ASC : SortMode.DESC };
|
135
|
-
});
|
136
|
-
}
|
141
|
+
CrudUtils.assertDefaultSorting(this._gridConfig, this._dataUnit);
|
137
142
|
}
|
138
143
|
loadConfig() {
|
139
144
|
ConfigStorage.loadGridConfig(this.configName, this.resourceID)
|
@@ -144,6 +149,11 @@ const SnkGrid = class {
|
|
144
149
|
console.warn(error);
|
145
150
|
});
|
146
151
|
}
|
152
|
+
addGridLegacyConfigName() {
|
153
|
+
if (this.gridLegacyConfigName && this.configName) {
|
154
|
+
ConfigStorage.addGridLegacyConfig(this.configName, this.gridLegacyConfigName);
|
155
|
+
}
|
156
|
+
}
|
147
157
|
gridConfigChangeHandler(evt) {
|
148
158
|
const config = evt.detail;
|
149
159
|
ConfigStorage.saveGridConfig(config, this.configName, this.resourceID);
|
@@ -259,7 +269,7 @@ const SnkGrid = class {
|
|
259
269
|
ElementIDUtils.addIDInfo(this._element, null, dataInfo);
|
260
270
|
}
|
261
271
|
finshLoading() {
|
262
|
-
|
272
|
+
CrudUtils.assertDefaultSorting(this._gridConfig, this._dataUnit);
|
263
273
|
this.addElementID();
|
264
274
|
if (this.columnFilterDataSource != undefined) {
|
265
275
|
this.columnFilterDataSource.setApplication(this._application);
|
@@ -268,6 +278,7 @@ const SnkGrid = class {
|
|
268
278
|
}
|
269
279
|
componentWillLoad() {
|
270
280
|
this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
281
|
+
//TODO: substituir pelo metodo nativo closest
|
271
282
|
let parent = this._element.parentElement;
|
272
283
|
while (parent) {
|
273
284
|
if (parent.tagName.toUpperCase() === "SNK-DATA-UNIT") {
|
@@ -297,6 +308,7 @@ const SnkGrid = class {
|
|
297
308
|
}
|
298
309
|
parent = parent.parentElement;
|
299
310
|
}
|
311
|
+
this.addGridLegacyConfigName();
|
300
312
|
this.loadConfig();
|
301
313
|
}
|
302
314
|
getHeaderDisabledButtons() {
|
@@ -411,9 +423,12 @@ const SnkGrid = class {
|
|
411
423
|
return undefined;
|
412
424
|
}
|
413
425
|
return (h("div", { class: "snk-grid__container ez-flex ez-flex--column ez-flex-item--auto ez-padding--large" }, h("div", { class: "snk-grid__header ez-margin-bottom--medium" }, this._showSnkFilterBar &&
|
414
|
-
h(Fragment, null, h("snk-filter-bar", { ref: (ref) => this._snkFilterBar = ref, dataUnit: this._dataUnit, "data-element-id": "gridFilter", class: "snk-grid__filter-bar ez-align--top", configName: this.configName, messagesBuilder: this.messagesBuilder, resourceID: this.resourceID, onConfigUpdated: evt => this.handleFilterConfigUpdated(evt.detail) }), h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" })), h("snk-taskbar", { class: "ez-padding-left--medium", "data-element-id": "grid_top", key: "topTaskbar", configName: this.configName, dataUnit: this._dataUnit, messagesBuilder: this.messagesBuilder, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: this.getPrimaryButton(), resourceID: this.resourceID, customContainerId: this.taskbarCustomContainerId, customSlotId: this.topTaskbarCustomSlotId }, h("slot", { name: this.topTaskbarCustomSlotId }))), h("ez-grid", { ref: ref => this._grid = ref, class: (this.presentationMode === PresentationMode.SECONDARY ? "snk-grid-container__without-shadow " : "") + "snk-grid__table", "data-element-id": "embedded", dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: (evt) => { this.gridConfigChangeHandler(evt); }, onEzDoubleClick: (evt) => this.gridDoubleClick.emit(evt.detail), statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, columnfilterDataSource: this.columnFilterDataSource, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, recordsValidator: this.recordsValidator, canEdit: this.canEdit }, h("snk-taskbar", { dataUnit: this._dataUnit, configName: this.configName, messagesBuilder: this.messagesBuilder, "data-element-id": "grid_left", buttons: this._headerTaskbarProcessor.buttons, presentationMode: this.presentationMode, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.getActionsList(), primaryButton: this.getPrimaryButton(), resourceID: this.resourceID, customContainerId: this.taskbarCustomContainerId, customSlotId: this.gridHeaderCustomSlotId }, h("slot", { name: this.gridHeaderCustomSlotId }))), h("div", { class: "ez-col ez-col--sd-12" }, h("slot", { name: "SnkGridFooter" })), h("ez-modal", { modalSize: "small", closeEsc: false, closeOutsideClick: false, opened: this._popUpGridConfig, onEzCloseModal: () => this.closeGridConfig() }, h("snk-grid-config", { ref: ref => this._snkGridConfig = ref, config: this._gridConfig, "data-element-id": this._element.getAttribute(ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME),
|
426
|
+
h(Fragment, null, h("snk-filter-bar", { ref: (ref) => this._snkFilterBar = ref, title: this.filterBarTitle, dataUnit: this._dataUnit, "data-element-id": "gridFilter", class: "snk-grid__filter-bar ez-align--top", configName: this.configName, messagesBuilder: this.messagesBuilder, resourceID: this.resourceID, onConfigUpdated: evt => this.handleFilterConfigUpdated(evt.detail), disablePersonalizedFilter: this.disablePersonalizedFilter, filterBarLegacyConfigName: this.filterBarLegacyConfigName }), h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" })), h("snk-taskbar", { class: "ez-padding-left--medium", "data-element-id": "grid_top", key: "topTaskbar", configName: this.configName, dataUnit: this._dataUnit, messagesBuilder: this.messagesBuilder, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: this.getPrimaryButton(), resourceID: this.resourceID, customContainerId: this.taskbarCustomContainerId, customSlotId: this.topTaskbarCustomSlotId, overflowStrategy: 'none' }, h("slot", { name: this.topTaskbarCustomSlotId }))), h("ez-grid", { ref: ref => this._grid = ref, class: (this.presentationMode === PresentationMode.SECONDARY ? "snk-grid-container__without-shadow " : "") + "snk-grid__table", "data-element-id": "embedded", dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: (evt) => { this.gridConfigChangeHandler(evt); }, onEzDoubleClick: (evt) => this.gridDoubleClick.emit(evt.detail), statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, columnfilterDataSource: this.columnFilterDataSource, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, recordsValidator: this.recordsValidator, canEdit: this.canEdit }, h("snk-taskbar", { id: 'teste', dataUnit: this._dataUnit, configName: this.configName, messagesBuilder: this.messagesBuilder, "data-element-id": "grid_left", buttons: this._headerTaskbarProcessor.buttons, presentationMode: this.presentationMode, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.getActionsList(), primaryButton: this.getPrimaryButton(), resourceID: this.resourceID, customContainerId: this.taskbarCustomContainerId, customSlotId: this.gridHeaderCustomSlotId }, h("slot", { name: this.gridHeaderCustomSlotId }))), h("div", { class: "ez-col ez-col--sd-12" }, h("slot", { name: "SnkGridFooter" })), h("ez-modal", { modalSize: "small", closeEsc: false, closeOutsideClick: false, opened: this._popUpGridConfig, onEzCloseModal: () => this.closeGridConfig() }, h("snk-grid-config", { ref: ref => this._snkGridConfig = ref, config: this._gridConfig, "data-element-id": this._element.getAttribute(ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME), selectedIndex: 0, configName: this.configName, onConfigChange: (evt) => this.modalConfigChangeHandler(evt), onConfigCancel: () => this.closeGridConfig(), resourceID: this.resourceID }))));
|
415
427
|
}
|
416
428
|
get _element() { return getElement(this); }
|
429
|
+
static get watchers() { return {
|
430
|
+
"gridLegacyConfigName": ["handleGridLegacyConfigName"]
|
431
|
+
}; }
|
417
432
|
};
|
418
433
|
SnkGrid.style = snkGridCss;
|
419
434
|
|
@@ -1,22 +1,21 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, F as Fragment } from './index-a7d3d3f1.js';
|
2
2
|
import { Action, ElementIDUtils } from '@sankhyalabs/core';
|
3
|
-
import { S as SnkFormConfigManager } from './SnkFormConfigManager-
|
3
|
+
import { S as SnkFormConfigManager } from './SnkFormConfigManager-7a4e678f.js';
|
4
4
|
import { buildFormMetadata, FormMetadata } from '@sankhyalabs/ezui/dist/collection/utils/form';
|
5
5
|
import { o as openFieldSearch, T as TaskbarProcessor, b as buildFieldSearch } from './field-search-efbe307f.js';
|
6
|
-
import { T as TaskbarElement } from './taskbar-elements-
|
6
|
+
import { T as TaskbarElement } from './taskbar-elements-2473c8ac.js';
|
7
7
|
import { d as VIEW_MODE } from './constants-8457af36.js';
|
8
|
-
import './DataFetcher-
|
9
|
-
import './pesquisa-fetcher-
|
8
|
+
import './DataFetcher-a650ae58.js';
|
9
|
+
import './pesquisa-fetcher-96d2f351.js';
|
10
10
|
import { P as PresentationMode } from './index-0ece87a6.js';
|
11
11
|
import './ISave-d8c8bc59.js';
|
12
12
|
import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
13
13
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
14
|
-
import './PreloadManager-c1c2f2b4.js';
|
15
14
|
import './filter-item-type.enum-d45e026f.js';
|
16
|
-
import './form-config-fetcher-
|
15
|
+
import './form-config-fetcher-765b8498.js';
|
17
16
|
import { SelectionMode } from '@sankhyalabs/core/dist/dataunit/DataUnit';
|
18
17
|
|
19
|
-
const snkGuidesViewerCss = ".sc-snk-guides-viewer-h{--snk-guides-viewer--space-large:var(--space--large, 24px);--snk-guides-viewer--space-medium:var(--space--medium, 12px);--snk-guides-viewer__header--min-height:94px;--snk-guides-viewer__header--z-index:var(--more-visible, 2);--snk-guides-viewer__header--background-color:var(--background--body, #fafcff);--snk-guides-viewer__guide-navigator--width:340px;display:block}snk-form-view.sc-snk-guides-viewer{width:100%}.snk-guides-viewer.sc-snk-guides-viewer{position:relative;padding-left:0px;padding-top:0px;padding-right:var(--snk-guides-viewer--space-large);padding-bottom:var(--snk-guides-viewer--space-large)}.snk-guides-viewer__detail-container.sc-snk-guides-viewer{display:flex;row-gap:24px;flex-direction:column}.snk-guides-viewer__header.sc-snk-guides-viewer{position:sticky;align-items:center;top:0;z-index:var(--snk-guides-viewer__header--z-index);background-color:var(--snk-guides-viewer__header--background-color);min-height:var(--snk-guides-viewer__header--min-height);width:calc(100% + (var(--snk-guides-viewer--space-large) * 2));padding-left:var(--snk-guides-viewer--space-large);padding-right:var(--snk-guides-viewer--space-large);padding-top:var(--snk-guides-viewer--space-large);padding-bottom:var(--snk-guides-viewer--space-medium);margin-left:calc(var(--snk-guides-viewer--space-large) * -1);margin-right:calc(var(--snk-guides-viewer--space-large) * -1);margin-bottom:var(--snk-guides-viewer--space-medium)}.snk-guides-viewer__container.sc-snk-guides-viewer{display:grid;grid-template-columns:minmax(0, auto) minmax(0, 100%);height:100%;column-gap:var(--snk-guides-viewer--space-large)}.snk-guides-viewer__guide-navigator.sc-snk-guides-viewer{position:sticky;top:calc(var(--snk-guides-viewer__header--min-height) + var(--snk-guides-viewer--space-medium));height:calc(100vh - var(--snk-guides-viewer__header--min-height) - var(--snk-guides-viewer--space-large) - var(--snk-guides-viewer--space-medium))}.snk-guides-viewer__guide-navigator[open].sc-snk-guides-viewer{width:var(--snk-guides-viewer__guide-navigator--width);max-width:var(--snk-guides-viewer__guide-navigator--width);min-width:var(--snk-guides-viewer__guide-navigator--width)}.snk-guides-viewer__detail-content.sc-snk-guides-viewer{min-height:100%;align-items:flex-start;align-content:flex-start}";
|
18
|
+
const snkGuidesViewerCss = ".sc-snk-guides-viewer-h{--snk-guides-viewer--space-large:var(--space--large, 24px);--snk-guides-viewer--space-medium:var(--space--medium, 12px);--snk-guides-viewer__header--min-height:94px;--snk-guides-viewer__header--z-index:var(--more-visible, 2);--snk-guides-viewer__header--background-color:var(--background--body, #fafcff);--snk-guides-viewer__guide-navigator--width:340px;display:block}snk-form-view.sc-snk-guides-viewer{width:100%}.snk-guides-viewer.sc-snk-guides-viewer{position:relative;padding-left:0px;padding-top:0px;padding-right:var(--snk-guides-viewer--space-large);padding-bottom:var(--snk-guides-viewer--space-large)}.snk-guides-viewer__detail-container.sc-snk-guides-viewer{display:flex;row-gap:24px;flex-direction:column}.snk-guides-viewer__header.sc-snk-guides-viewer{position:sticky;align-items:center;top:0;z-index:var(--snk-guides-viewer__header--z-index);background-color:var(--snk-guides-viewer__header--background-color);min-height:var(--snk-guides-viewer__header--min-height);width:calc(100% + (var(--snk-guides-viewer--space-large) * 2));padding-left:var(--snk-guides-viewer--space-large);padding-right:var(--snk-guides-viewer--space-large);padding-top:var(--snk-guides-viewer--space-large);padding-bottom:var(--snk-guides-viewer--space-medium);margin-left:calc(var(--snk-guides-viewer--space-large) * -1);margin-right:calc(var(--snk-guides-viewer--space-large) * -1);margin-bottom:var(--snk-guides-viewer--space-medium)}.snk-guides-viewer__header-breadcrumb.sc-snk-guides-viewer{width:25%;display:flex}.snk-guides-viewer__header-taskbar.sc-snk-guides-viewer{width:75%}.snk-guides-viewer__container.sc-snk-guides-viewer{display:grid;grid-template-columns:minmax(0, auto) minmax(0, 100%);height:100%;column-gap:var(--snk-guides-viewer--space-large)}.snk-guides-viewer__guide-navigator.sc-snk-guides-viewer{position:sticky;top:calc(var(--snk-guides-viewer__header--min-height) + var(--snk-guides-viewer--space-medium));height:calc(100vh - var(--snk-guides-viewer__header--min-height) - var(--snk-guides-viewer--space-large) - var(--snk-guides-viewer--space-medium))}.snk-guides-viewer__guide-navigator[open].sc-snk-guides-viewer{width:var(--snk-guides-viewer__guide-navigator--width);max-width:var(--snk-guides-viewer__guide-navigator--width);min-width:var(--snk-guides-viewer__guide-navigator--width)}.snk-guides-viewer__detail-content.sc-snk-guides-viewer{min-height:100%;align-items:flex-start;align-content:flex-start}";
|
20
19
|
|
21
20
|
const FORM_NAME_PREFIX = "__FORM:";
|
22
21
|
const SnkGuidesViewer = class {
|
@@ -40,6 +39,7 @@ const SnkGuidesViewer = class {
|
|
40
39
|
this.presentationMode = undefined;
|
41
40
|
this.resourceID = undefined;
|
42
41
|
this.detailTaskbarCustomContainerId = undefined;
|
42
|
+
this.formLegacyConfigName = undefined;
|
43
43
|
this._hasToCreateFieldSearch = true;
|
44
44
|
this._breadcrumbItems = [];
|
45
45
|
this._guides = undefined;
|
@@ -337,11 +337,17 @@ const SnkGuidesViewer = class {
|
|
337
337
|
var _a;
|
338
338
|
return this.selectedGuide === undefined || '__main' === ((_a = this.selectedGuide) === null || _a === void 0 ? void 0 : _a.id);
|
339
339
|
}
|
340
|
+
addFormLegacyConfigName() {
|
341
|
+
if (this.formLegacyConfigName) {
|
342
|
+
this._configManager.addFormLegacyConfig(this.formLegacyConfigName);
|
343
|
+
}
|
344
|
+
}
|
340
345
|
componentWillLoad() {
|
341
346
|
if (this.resourceID == undefined) {
|
342
347
|
throw new Error("Erro interno: resourceID não informado");
|
343
348
|
}
|
344
349
|
this._configManager = new SnkFormConfigManager(this.configName, this.resourceID, config => this.masterFormConfig = config);
|
350
|
+
this.addFormLegacyConfigName();
|
345
351
|
this._configManager.loadConfig();
|
346
352
|
}
|
347
353
|
componentDidRender() {
|
@@ -397,7 +403,7 @@ const SnkGuidesViewer = class {
|
|
397
403
|
}
|
398
404
|
buildTaskBar() {
|
399
405
|
var _a;
|
400
|
-
return h("div", { class: `
|
406
|
+
return h("div", { class: `snk-guides-viewer__header-taskbar ${this.presentationMode != PresentationMode.SECONDARY ? 'ez-align--right' : 'ez-padding-bottom--medium'}` }, h("snk-taskbar", { key: "guideViewerTaskbar", "data-element-id": "guideViewer", configName: this.configName, buttons: this._taskbarProcessor.buttons, disabledButtons: this._taskbarProcessor.disabledButtons, customButtons: this._taskbarProcessor.customButtons, actionsList: this.getActionsList(), messagesBuilder: this.messagesBuilder, presentationMode: this.presentationMode, primaryButton: ((_a = this.dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "SAVE" : "INSERT", "data-taskbar-owner": "master", dataUnit: this.dataUnit, resourceID: this.resourceID, customSlotId: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS", alignRigth: true }, h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" })));
|
401
407
|
}
|
402
408
|
async dataUnitActionHandler(action) {
|
403
409
|
var _a;
|
@@ -456,7 +462,7 @@ const SnkGuidesViewer = class {
|
|
456
462
|
}
|
457
463
|
this.loadTaskbarProcessor();
|
458
464
|
const showGuides = this._guides && (this._guides.length > 1);
|
459
|
-
return (h("section", { class: "snk-guides-viewer" }, h("div", { class: "ez-row snk-guides-viewer__header" }, h("div", { class: "
|
465
|
+
return (h("section", { class: "snk-guides-viewer" }, h("div", { class: "ez-row snk-guides-viewer__header" }, h("div", { class: "snk-guides-viewer__header-breadcrumb ez-flex--align-items-center ez-flex-item--align-center ez-padding-left--large", key: "header" }, h("ez-button", { onClick: () => this.exitViewer(), title: this.getMessage("snkCrud.goBackTitle"), mode: "icon", iconName: "arrow_back", class: "ez-padding-right--medium", size: "small" }), h("div", { class: "ez-flex ez-flex--column ez-flex-item--auto" }, h("h1", { class: "ez-title ez-title--primary ez-title--xlarge" }, this.getMessage("snkCrud.title")), ((_a = this._breadcrumbItems) === null || _a === void 0 ? void 0 : _a.length) > 1 &&
|
460
466
|
h("div", { class: "ez-margin-top--extra-small" }, h("ez-breadcrumb", Object.assign({ items: this._breadcrumbItems, onSelectedItem: (evt) => this.onBreadcrumbClickHandler(evt === null || evt === void 0 ? void 0 : evt.detail) }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("breadcrumb")}` }))))), this.presentationMode != PresentationMode.SECONDARY && this.buildTaskBar()), h("div", { class: "snk-guides-viewer__container" }, showGuides ?
|
461
467
|
h("ez-guide-navigator", { ref: (ref) => this._guideNavigator = ref, class: "snk-guides-viewer__guide-navigator", items: this._guides, selectedId: this.selectedGuide ? this.selectedGuide.id : undefined, onEzSelectionChange: evt => this.updateSelectedGuideHandler(evt.detail) })
|
462
468
|
:
|
@@ -1,22 +1,21 @@
|
|
1
|
-
export { S as snk_guides_viewer } from './snk-guides-viewer-
|
1
|
+
export { S as snk_guides_viewer } from './snk-guides-viewer-131e9660.js';
|
2
2
|
import './index-a7d3d3f1.js';
|
3
3
|
import '@sankhyalabs/core';
|
4
|
-
import './SnkFormConfigManager-
|
5
|
-
import './ConfigStorage-
|
6
|
-
import './form-config-fetcher-
|
7
|
-
import './DataFetcher-
|
4
|
+
import './SnkFormConfigManager-7a4e678f.js';
|
5
|
+
import './ConfigStorage-6e241cd7.js';
|
6
|
+
import './form-config-fetcher-765b8498.js';
|
7
|
+
import './DataFetcher-a650ae58.js';
|
8
8
|
import './PrintUtils-3e4ff0f5.js';
|
9
9
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
10
10
|
import './filter-item-type.enum-d45e026f.js';
|
11
11
|
import '@sankhyalabs/ezui/dist/collection/utils/form';
|
12
12
|
import './field-search-efbe307f.js';
|
13
|
-
import './taskbar-elements-
|
13
|
+
import './taskbar-elements-2473c8ac.js';
|
14
14
|
import './index-0ece87a6.js';
|
15
15
|
import './index-bdf75557.js';
|
16
16
|
import './constants-8457af36.js';
|
17
|
-
import './pesquisa-fetcher-
|
17
|
+
import './pesquisa-fetcher-96d2f351.js';
|
18
18
|
import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
19
|
-
import './PreloadManager-c1c2f2b4.js';
|
20
19
|
import '@sankhyalabs/ezui/dist/collection/components/ez-grid/utils';
|
21
20
|
import './ResourceIDUtils-a114189a.js';
|
22
21
|
import './ISave-d8c8bc59.js';
|
@@ -63,8 +63,10 @@ const SnkFilterPersonalized = class {
|
|
63
63
|
return this.presentationMode === EPresentationMode.MODAL;
|
64
64
|
}
|
65
65
|
doSearch(mode, argument, param) {
|
66
|
+
const context = Object.assign({}, param.searchContext);
|
67
|
+
context.searchOptions = Object.assign(Object.assign({}, context.searchOptions), { showInactives: "true" });
|
66
68
|
return new Promise((resolve, reject) => {
|
67
|
-
this._application.executePreparedSearch(mode, argument,
|
69
|
+
this._application.executePreparedSearch(mode, argument, context)
|
68
70
|
.then(result => {
|
69
71
|
resolve(result);
|
70
72
|
}).catch(reason => {
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, F as Fragment, H as Host } from './index-a7d3d3f1.js';
|
2
2
|
import { StringUtils, ObjectUtils, ApplicationContext, ElementIDUtils } from '@sankhyalabs/core';
|
3
3
|
import { P as PersonalizedFilterUtils } from './PersonalizedFilterUtils-e2b38ef7.js';
|
4
|
-
import { P as PersonalizedFilterFetcher, C as ConfigStorage } from './ConfigStorage-
|
4
|
+
import { P as PersonalizedFilterFetcher, C as ConfigStorage } from './ConfigStorage-6e241cd7.js';
|
5
5
|
import { ApplicationUtils } from '@sankhyalabs/ezui/dist/collection/utils';
|
6
6
|
import { a as FilterGroupCondition } from './index-ae591a44.js';
|
7
7
|
import { s as store } from './index-bdf75557.js';
|
8
8
|
import './filter-item-type.enum-d45e026f.js';
|
9
|
-
import './form-config-fetcher-
|
10
|
-
import './DataFetcher-
|
9
|
+
import './form-config-fetcher-765b8498.js';
|
10
|
+
import './DataFetcher-a650ae58.js';
|
11
11
|
import './PrintUtils-3e4ff0f5.js';
|
12
12
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
13
13
|
|