@sankhyalabs/sankhyablocks 8.15.0-rc.2 → 8.15.0-rc.20
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 +249 -23
- 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 +414 -18
- 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 +310 -30
- 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 +250 -24
- 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-19a56978.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-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 +75 -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
@@ -6,7 +6,6 @@
|
|
6
6
|
"./components/snk-taskbar/snk-taskbar.js",
|
7
7
|
"./components/snk-filter-bar/filter-list/snk-filter-list.js",
|
8
8
|
"./components/snk-print-selector/snk-print-selector.js",
|
9
|
-
"./components/snk-form/subcomponents/snk-tab-config/snk-tab-config.js",
|
10
9
|
"./components/snk-actions-button/snk-actions-button.js",
|
11
10
|
"./components/snk-actions-button/subcomponents/snk-actions-form.js",
|
12
11
|
"./components/snk-actions-button/subcomponents/snk-client-confirm.js",
|
@@ -35,12 +34,13 @@
|
|
35
34
|
"./components/snk-filter-bar/filter-modal/subcomponents/snk-filter-modal-item.js",
|
36
35
|
"./components/snk-filter-field-search/snk-filter-field-search.js",
|
37
36
|
"./components/snk-form/snk-form.js",
|
38
|
-
"./components/snk-form/subcomponents/snk-config
|
39
|
-
"./components/snk-form
|
40
|
-
"./components/snk-form/subcomponents/snk-
|
37
|
+
"./components/snk-form-config/subcomponents/snk-tab-config/snk-tab-config.js",
|
38
|
+
"./components/snk-form-config/snk-form-config.js",
|
39
|
+
"./components/snk-form-config/subcomponents/snk-config-options/snk-config-options.js",
|
40
|
+
"./components/snk-form-config/subcomponents/snk-field-config/snk-field-config.js",
|
41
41
|
"./components/snk-grid/snk-grid.js",
|
42
|
-
"./components/snk-grid
|
43
|
-
"./components/snk-grid/
|
42
|
+
"./components/snk-grid-config/snk-grid-config.js",
|
43
|
+
"./components/snk-grid-config/snk-select-box/snk-select-box.js",
|
44
44
|
"./components/snk-personalized-filter/snk-personalized-filter.js",
|
45
45
|
"./components/snk-personalized-filter/subcomponents/snk-expression-group/snk-expression-group.js",
|
46
46
|
"./components/snk-personalized-filter/subcomponents/snk-expression-item/snk-expression-item.js",
|
@@ -3,7 +3,7 @@ import { ApplicationUtils } from "@sankhyalabs/ezui/dist/collection/utils";
|
|
3
3
|
import { h } from "@stencil/core";
|
4
4
|
import AppletCaller from "../../lib/applet-caller/applet-caller";
|
5
5
|
import MGEAuthorization from '../../lib/auth/mgeauthorization.module';
|
6
|
-
import { ConfigStorage } from
|
6
|
+
import { ConfigStorage } from '../../lib/configs/ConfigStorage';
|
7
7
|
import { DataFetcher } from "../../lib/http/data-fetcher/DataFetcher";
|
8
8
|
import AuthFetcher, { AutorizationType } from "../../lib/http/data-fetcher/fetchers/auth-fetcher";
|
9
9
|
import DataUnitFetcher from "../../lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher";
|
@@ -33,6 +33,8 @@ export class SnkApplication {
|
|
33
33
|
this._isLoadedByPk = false;
|
34
34
|
this.messagesBuilder = undefined;
|
35
35
|
this.configName = undefined;
|
36
|
+
this.gridLegacyConfigName = undefined;
|
37
|
+
this.formLegacyConfigName = undefined;
|
36
38
|
this.loadByPK = undefined;
|
37
39
|
}
|
38
40
|
async processPendingActions(actionsLocker) {
|
@@ -941,7 +943,11 @@ export class SnkApplication {
|
|
941
943
|
ApplicationContext.setContextValue("__EZUI__GRID_LICENSE__", agGridLicense);
|
942
944
|
this.registerPkChangeListener();
|
943
945
|
ErrorTracking.init();
|
944
|
-
|
946
|
+
let legacyConfig = {
|
947
|
+
gridLegacyConfig: this.gridLegacyConfigName,
|
948
|
+
formLegacyConfig: this.formLegacyConfigName
|
949
|
+
};
|
950
|
+
ConfigStorage.preload(this.applicationResourceID, this.configName, legacyConfig);
|
945
951
|
document.addEventListener("click", () => Workspace.applicationClick());
|
946
952
|
this._waitingAppReady.forEach(resolve => resolve());
|
947
953
|
}
|
@@ -1030,6 +1036,40 @@ export class SnkApplication {
|
|
1030
1036
|
"attribute": "config-name",
|
1031
1037
|
"reflect": false
|
1032
1038
|
},
|
1039
|
+
"gridLegacyConfigName": {
|
1040
|
+
"type": "string",
|
1041
|
+
"mutable": false,
|
1042
|
+
"complexType": {
|
1043
|
+
"original": "string",
|
1044
|
+
"resolved": "string",
|
1045
|
+
"references": {}
|
1046
|
+
},
|
1047
|
+
"required": false,
|
1048
|
+
"optional": false,
|
1049
|
+
"docs": {
|
1050
|
+
"tags": [],
|
1051
|
+
"text": "Chave da configura\u00E7\u00E3o legado da grade."
|
1052
|
+
},
|
1053
|
+
"attribute": "grid-legacy-config-name",
|
1054
|
+
"reflect": false
|
1055
|
+
},
|
1056
|
+
"formLegacyConfigName": {
|
1057
|
+
"type": "string",
|
1058
|
+
"mutable": false,
|
1059
|
+
"complexType": {
|
1060
|
+
"original": "string",
|
1061
|
+
"resolved": "string",
|
1062
|
+
"references": {}
|
1063
|
+
},
|
1064
|
+
"required": false,
|
1065
|
+
"optional": false,
|
1066
|
+
"docs": {
|
1067
|
+
"tags": [],
|
1068
|
+
"text": "Chave da configura\u00E7\u00E3o legado do formul\u00E1rio."
|
1069
|
+
},
|
1070
|
+
"attribute": "form-legacy-config-name",
|
1071
|
+
"reflect": false
|
1072
|
+
},
|
1033
1073
|
"loadByPK": {
|
1034
1074
|
"type": "unknown",
|
1035
1075
|
"mutable": false,
|
@@ -2150,6 +2190,10 @@ export class SnkApplication {
|
|
2150
2190
|
"Promise": {
|
2151
2191
|
"location": "global"
|
2152
2192
|
},
|
2193
|
+
"IOption": {
|
2194
|
+
"location": "import",
|
2195
|
+
"path": "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search"
|
2196
|
+
},
|
2153
2197
|
"ISearchArgument": {
|
2154
2198
|
"location": "import",
|
2155
2199
|
"path": "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search"
|
@@ -2161,16 +2205,12 @@ export class SnkApplication {
|
|
2161
2205
|
"Array": {
|
2162
2206
|
"location": "global"
|
2163
2207
|
},
|
2164
|
-
"IOption": {
|
2165
|
-
"location": "import",
|
2166
|
-
"path": "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search"
|
2167
|
-
},
|
2168
2208
|
"SearchCriteria": {
|
2169
2209
|
"location": "import",
|
2170
2210
|
"path": "../../lib/http/data-fetcher/fetchers/pesquisa-fetcher"
|
2171
2211
|
}
|
2172
2212
|
},
|
2173
|
-
"return": "Promise<
|
2213
|
+
"return": "Promise<IOption | IOption[]>"
|
2174
2214
|
},
|
2175
2215
|
"docs": {
|
2176
2216
|
"text": "Obt\u00E9m as op\u00E7\u00F5es em componentes de pesquisa\nEx.: snk-config-options",
|
@@ -2194,18 +2234,18 @@ export class SnkApplication {
|
|
2194
2234
|
"Promise": {
|
2195
2235
|
"location": "global"
|
2196
2236
|
},
|
2197
|
-
"Array": {
|
2198
|
-
"location": "global"
|
2199
|
-
},
|
2200
2237
|
"IOption": {
|
2201
2238
|
"location": "import",
|
2202
2239
|
"path": "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search"
|
2203
2240
|
},
|
2241
|
+
"Array": {
|
2242
|
+
"location": "global"
|
2243
|
+
},
|
2204
2244
|
"HTMLSnkPesquisaElement": {
|
2205
2245
|
"location": "global"
|
2206
2246
|
}
|
2207
2247
|
},
|
2208
|
-
"return": "Promise<
|
2248
|
+
"return": "Promise<IOption | IOption[]>"
|
2209
2249
|
},
|
2210
2250
|
"docs": {
|
2211
2251
|
"text": "Obt\u00E9m as op\u00E7\u00F5es em componentes de pesquisa\nEx.: snk-config-options",
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { h } from "@stencil/core";
|
2
|
-
import { DataUnit, ApplicationContext } from "@sankhyalabs/core";
|
2
|
+
import { DataUnit, ApplicationContext, Action } from "@sankhyalabs/core";
|
3
3
|
import { AnexoSistemaFetcher, AttachFetcher, DataUnitFetcher } from "../../lib";
|
4
4
|
import { VIEW_MODE } from "../../lib/utils/constants";
|
5
5
|
import { AnexoSistemaDataUnitFactory, AttachFetcherDataUnitFactory, buildTaskBarManager, anexoSistemaCrudConfig, attachCrudConfig } from "./structure";
|
6
|
+
import InMemoryLoader from "../../lib/dataUnit/InMemoryLoader";
|
6
7
|
const RESOURCE_ID = 'AnexoSistema';
|
7
8
|
const DATA_UNIT_NAME = 'br.com.sankhya.core.v3.anexoSistema';
|
8
9
|
export class SnkAttach {
|
@@ -28,7 +29,7 @@ export class SnkAttach {
|
|
28
29
|
this.back.emit();
|
29
30
|
});
|
30
31
|
};
|
31
|
-
this.fetcherType =
|
32
|
+
this.fetcherType = undefined;
|
32
33
|
this.fetcher = undefined;
|
33
34
|
this.dataUnit = undefined;
|
34
35
|
this.dataUnitBuilder = undefined;
|
@@ -40,8 +41,8 @@ export class SnkAttach {
|
|
40
41
|
this.crudConfig = undefined;
|
41
42
|
}
|
42
43
|
registerKeyWatcher(newRegisterKey, oldRegisterKey) {
|
43
|
-
var _a, _b, _c, _d;
|
44
|
-
if (this._currentDataUnit
|
44
|
+
var _a, _b, _c, _d, _e, _f;
|
45
|
+
if (!this._currentDataUnit) {
|
45
46
|
this.loadAttachmentDataUnit();
|
46
47
|
}
|
47
48
|
if (oldRegisterKey !== newRegisterKey) {
|
@@ -56,11 +57,7 @@ export class SnkAttach {
|
|
56
57
|
if (hasMoreOneItem)
|
57
58
|
return;
|
58
59
|
}
|
59
|
-
return this._currentDataUnit
|
60
|
-
.loadMetadata()
|
61
|
-
.then(() => {
|
62
|
-
this._currentDataUnit.loadData(undefined, undefined, true, this.registerKey);
|
63
|
-
});
|
60
|
+
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));
|
64
61
|
}
|
65
62
|
}
|
66
63
|
/**
|
@@ -126,7 +123,7 @@ export class SnkAttach {
|
|
126
123
|
if (!this._currentDataUnit.metadata) {
|
127
124
|
this._currentDataUnit
|
128
125
|
.loadMetadata()
|
129
|
-
.then(() => this.crudConfig = anexoSistemaCrudConfig);
|
126
|
+
.then(() => this.crudConfig = Object.assign({}, anexoSistemaCrudConfig));
|
130
127
|
}
|
131
128
|
this._currentDataUnitBuilder = new AnexoSistemaDataUnitFactory(this.entityName, this.getMessage.bind(this));
|
132
129
|
this._currentDataUnit.addFilterProvider({
|
@@ -138,25 +135,29 @@ export class SnkAttach {
|
|
138
135
|
this._currentDataUnit.loadData().then(this.disableEditFieldsNotInForm.bind(this));
|
139
136
|
}
|
140
137
|
loadAttach() {
|
141
|
-
var _a;
|
138
|
+
var _a, _b, _c;
|
142
139
|
this._currentFetcher = new AttachFetcher();
|
143
|
-
this._currentDataUnit = new DataUnit();
|
140
|
+
this._currentDataUnit = new DataUnit(InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME);
|
144
141
|
this._currentDataUnit.addInterceptor({
|
145
|
-
interceptAction: (action) =>
|
142
|
+
interceptAction: (action) => {
|
143
|
+
var _a;
|
144
|
+
if (action.type === Action.METADATA_LOADED) {
|
145
|
+
this.crudConfig = Object.assign({}, attachCrudConfig);
|
146
|
+
(_a = this._crudElement) === null || _a === void 0 ? void 0 : _a.updateConfig();
|
147
|
+
}
|
148
|
+
return this._currentDataUnitBuilder.getInterceptions(this._currentDataUnit, action, this._crudElement);
|
149
|
+
}
|
146
150
|
});
|
147
151
|
this._currentDataUnitBuilder = new AttachFetcherDataUnitFactory(this.getMessage.bind(this));
|
148
152
|
(_a = this._currentDataUnitBuilder) === null || _a === void 0 ? void 0 : _a.initLoaders(this._currentDataUnit, this._currentFetcher, async () => {
|
149
|
-
await this._currentDataUnit.loadData(undefined, undefined, true, this.registerKey);
|
150
153
|
this.returnToGridMode();
|
154
|
+
await this._currentDataUnit.loadData(undefined, undefined, true, this.registerKey);
|
151
155
|
});
|
152
156
|
if (!this._currentDataUnit.metadata) {
|
153
|
-
this._currentDataUnit
|
154
|
-
|
155
|
-
.
|
156
|
-
this.
|
157
|
-
this._currentDataUnit
|
158
|
-
.loadData(undefined, undefined, true, this.registerKey)
|
159
|
-
.then(this.disableEditFieldsNotInForm.bind(this));
|
157
|
+
(_c = (_b = this._currentDataUnit) === null || _b === void 0 ? void 0 : _b.loadMetadata()) === null || _c === void 0 ? void 0 : _c.then(() => {
|
158
|
+
var _a, _b;
|
159
|
+
this.crudConfig = Object.assign({}, attachCrudConfig);
|
160
|
+
(_b = (_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.loadData(undefined, undefined, true, this.registerKey)) === null || _b === void 0 ? void 0 : _b.then(this.disableEditFieldsNotInForm.bind(this));
|
160
161
|
});
|
161
162
|
}
|
162
163
|
}
|
@@ -174,15 +175,30 @@ export class SnkAttach {
|
|
174
175
|
this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
175
176
|
}
|
176
177
|
componentWillRender() {
|
178
|
+
if (!this.fetcherType) {
|
179
|
+
this.fetcherType = "AnexoSistema";
|
180
|
+
}
|
177
181
|
if (this._currentDataUnit == null) {
|
178
182
|
this.loadAttachmentDataUnit();
|
179
183
|
}
|
180
184
|
}
|
185
|
+
async handleOnDataStateChange({ detail }) {
|
186
|
+
if (this.fetcherType !== 'Attach')
|
187
|
+
return;
|
188
|
+
if (!detail.insertionMode) {
|
189
|
+
this._currentDataUnit.disableField('DESCRICAO');
|
190
|
+
}
|
191
|
+
else {
|
192
|
+
this._currentDataUnit.enableField('DESCRICAO');
|
193
|
+
}
|
194
|
+
await this._currentDataUnit.loadMetadata();
|
195
|
+
}
|
196
|
+
;
|
181
197
|
render() {
|
182
198
|
var _a, _b;
|
183
199
|
if (!this._currentDataUnit)
|
184
200
|
return null;
|
185
|
-
return (h("main", { class: "snk-attach__main" }, h("header", { class: "snk-attach__header" }, h("snk-simple-bar", { onExit: this.handleBack, messagesBuilder: this.messagesBuilder }, h("div", { slot: "rightSlot" }, h("ez-button", { class: "ez-button--primary", label: this.getMessage("snkAttach.finish"), onClick: this.handleFinish })))), h("div", { class: "snk-attach__crud-section ez-size-height--full ez-size-width--full ez-flex ez-flex--column" }, h("div", { class: "ez-box__container" }, h("snk-simple-crud", { ref: (el) => this._crudElement = el, dataUnit: this._currentDataUnit, taskbarManager: buildTaskBarManager(), gridConfig: (_a = this.crudConfig) === null || _a === void 0 ? void 0 : _a.grid, formConfig: (_b = this.crudConfig) === null || _b === void 0 ? void 0 : _b.form, useCancelConfirm: false, onActionClick: this.handleTaskbarClick, messagesBuilder: this.messagesBuilder }, h("div", { slot: "snkSimpleCrudHeader" }, h("div", { class: "ez-flex ez-flex--column" }, h("span", { class: "ez-title--primary ez-text ez-text--large ez-text--bold ez-padding-bottom--medium" }, this.getMessage("snkAttach.title")), h("span", { class: "ez-text ez-text--medium ez-text--secondary" }, this.getMessage("snkAttach.description")))))))));
|
201
|
+
return (h("main", { class: "snk-attach__main" }, h("header", { class: "snk-attach__header" }, h("snk-simple-bar", { onExit: this.handleBack, messagesBuilder: this.messagesBuilder }, h("div", { slot: "rightSlot" }, h("ez-button", { class: "ez-button--primary", label: this.getMessage("snkAttach.finish"), onClick: this.handleFinish })))), h("div", { class: "snk-attach__crud-section ez-size-height--full ez-size-width--full ez-flex ez-flex--column" }, h("div", { class: "ez-box__container" }, h("snk-simple-crud", { ref: (el) => this._crudElement = el, dataUnit: this._currentDataUnit, taskbarManager: buildTaskBarManager(), gridConfig: (_a = this.crudConfig) === null || _a === void 0 ? void 0 : _a.grid, formConfig: (_b = this.crudConfig) === null || _b === void 0 ? void 0 : _b.form, useCancelConfirm: false, onActionClick: this.handleTaskbarClick, messagesBuilder: this.messagesBuilder, onDataStateChange: this.handleOnDataStateChange.bind(this) }, h("div", { slot: "snkSimpleCrudHeader" }, h("div", { class: "ez-flex ez-flex--column" }, h("span", { class: "ez-title--primary ez-text ez-text--large ez-text--bold ez-padding-bottom--medium" }, this.getMessage("snkAttach.title")), h("span", { class: "ez-text ez-text--medium ez-text--secondary" }, this.getMessage("snkAttach.description")))))))));
|
186
202
|
}
|
187
203
|
static get is() { return "snk-attach"; }
|
188
204
|
static get encapsulation() { return "scoped"; }
|
@@ -218,8 +234,7 @@ export class SnkAttach {
|
|
218
234
|
"text": "FetcherType define o tipo de fetcher respons\u00E1vel por carregar os dados do DataUnit."
|
219
235
|
},
|
220
236
|
"attribute": "fetcher-type",
|
221
|
-
"reflect": false
|
222
|
-
"defaultValue": "\"AnexoSistema\""
|
237
|
+
"reflect": false
|
223
238
|
},
|
224
239
|
"fetcher": {
|
225
240
|
"type": "unknown",
|
package/dist/collection/components/snk-attach/structure/builder/attach-crud-config.builder.js
CHANGED
@@ -39,7 +39,7 @@ export const attachFetcherMetadataBuilder = {
|
|
39
39
|
label: "Attach List",
|
40
40
|
fields: [
|
41
41
|
{ name: "CODATA", label: getMessage("snkAttach.attachMetadata.lblCode"), dataType: DataType.TEXT },
|
42
|
-
{ name: "DESCRICAO", label: getMessage("snkAttach.attachMetadata.lblDescription"), dataType: DataType.TEXT },
|
42
|
+
{ name: "DESCRICAO", label: getMessage("snkAttach.attachMetadata.lblDescription"), dataType: DataType.TEXT, readOnly: false },
|
43
43
|
{ name: "ARQUIVO", label: getMessage("snkAttach.attachMetadata.lblFileOrLink"), dataType: DataType.TEXT },
|
44
44
|
{ name: "USUARIO", label: getMessage("snkAttach.attachMetadata.lblUser"), dataType: DataType.TEXT },
|
45
45
|
{ name: "DTALTER", label: getMessage("snkAttach.attachMetadata.lblDate"), dataType: DataType.TEXT },
|
@@ -1,12 +1,14 @@
|
|
1
|
-
import { Action, ApplicationContext, StringUtils } from
|
2
|
-
import { SaveErrorsEnum } from
|
3
|
-
import { AutorizationType } from
|
4
|
-
import { attachFetcherMetadataBuilder } from
|
5
|
-
import { VIEW_MODE } from
|
1
|
+
import { Action, ApplicationContext, StringUtils, } from '@sankhyalabs/core';
|
2
|
+
import { SaveErrorsEnum } from '../../../../../lib/http/data-fetcher/fetchers/AttachFetcher/interfaces';
|
3
|
+
import { AutorizationType } from '../../../../../lib/http/data-fetcher/fetchers/auth-fetcher';
|
4
|
+
import { attachFetcherMetadataBuilder } from '../../builder/attach-crud-config.builder';
|
5
|
+
import { VIEW_MODE } from '../../../../../lib/utils/constants';
|
6
|
+
import { applyFilter, applySorting, buildPaginationInfo } from '../../../../../lib/dataUnit/dataUnitInMemoryUtils';
|
6
7
|
const SERVICE_LOAD = "Attach.load";
|
7
8
|
export class AttachFetcherDataUnitFactory {
|
8
9
|
constructor(getMessage) {
|
9
10
|
this.getMessage = getMessage;
|
11
|
+
this._records = [];
|
10
12
|
this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
11
13
|
}
|
12
14
|
initLoaders(dataUnit, fetcher, onSuccess) {
|
@@ -26,25 +28,30 @@ export class AttachFetcherDataUnitFactory {
|
|
26
28
|
metadataLoader(_) {
|
27
29
|
return Promise.resolve(attachFetcherMetadataBuilder);
|
28
30
|
}
|
29
|
-
async dataLoader(
|
31
|
+
async dataLoader(dataUnit, request) {
|
30
32
|
if (!request.source) {
|
31
|
-
return Promise.resolve({ records:
|
33
|
+
return Promise.resolve({ records: this._records });
|
32
34
|
}
|
33
|
-
|
34
|
-
criteria
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
35
|
+
if (!Number.isNaN(Number(request.source))) {
|
36
|
+
const criteria = {
|
37
|
+
criteria: {
|
38
|
+
codata: request.source,
|
39
|
+
tipoAnexo: "N"
|
40
|
+
}
|
41
|
+
};
|
42
|
+
const applicationDataFetcher = await this._application.getDataFetcher();
|
43
|
+
const { anexos: { anexo = [] } } = await applicationDataFetcher.callServiceBroker(SERVICE_LOAD, JSON.stringify(criteria));
|
44
|
+
const records = [];
|
45
|
+
anexo.forEach((param) => {
|
46
|
+
records.push(Object.assign({ __record__id__: StringUtils.generateUUID(), CAMINHO_ARQUIVO: [{
|
47
|
+
name: param === null || param === void 0 ? void 0 : param.ARQUIVO,
|
48
|
+
}] }, param));
|
49
|
+
});
|
50
|
+
this._records = records;
|
51
|
+
}
|
52
|
+
let records = applyFilter(this._records, dataUnit, request.filters);
|
53
|
+
records = applySorting(records, dataUnit, request.sort);
|
54
|
+
return Promise.resolve({ records, paginationInfo: buildPaginationInfo(records, request.offset, request.limit) });
|
48
55
|
}
|
49
56
|
saveLoader(changes, fetcher) {
|
50
57
|
return new Promise((resolve) => {
|
@@ -20,6 +20,7 @@ export class SnkCrud {
|
|
20
20
|
this._canEdit = undefined;
|
21
21
|
this._resourceID = undefined;
|
22
22
|
this.configName = undefined;
|
23
|
+
this.filterBarTitle = undefined;
|
23
24
|
this.selectionToastConfig = undefined;
|
24
25
|
this.showActionButtons = false;
|
25
26
|
this.actionsList = undefined;
|
@@ -30,6 +31,10 @@ export class SnkCrud {
|
|
30
31
|
this.presentationMode = PresentationMode.PRIMARY;
|
31
32
|
this.messagesBuilder = undefined;
|
32
33
|
this.useEnterLikeTab = false;
|
34
|
+
this.gridLegacyConfigName = undefined;
|
35
|
+
this.filterBarLegacyConfigName = undefined;
|
36
|
+
this.formLegacyConfigName = undefined;
|
37
|
+
this.disablePersonalizedFilter = undefined;
|
33
38
|
this.customContainerId = `SNK-CRUD-CUSTOM-CONTAINER-${StringUtils.generateUUID()}`;
|
34
39
|
}
|
35
40
|
/**
|
@@ -162,7 +167,8 @@ export class SnkCrud {
|
|
162
167
|
window.removeEventListener("keydown", this._keyDownHandler);
|
163
168
|
}
|
164
169
|
async initKeyboardManager() {
|
165
|
-
|
170
|
+
var _a;
|
171
|
+
const keyboardManager = await ((_a = this._application) === null || _a === void 0 ? void 0 : _a.getKeyboardManager());
|
166
172
|
if (keyboardManager) {
|
167
173
|
const dataUnit = this._dataUnit || await this._snkDataUnit.getDataUnit();
|
168
174
|
async function saveDataUnitHandlingFocus() {
|
@@ -211,7 +217,8 @@ export class SnkCrud {
|
|
211
217
|
}
|
212
218
|
}
|
213
219
|
async removeShortcuts() {
|
214
|
-
|
220
|
+
var _a;
|
221
|
+
const keyboardManager = await ((_a = this._application) === null || _a === void 0 ? void 0 : _a.getKeyboardManager());
|
215
222
|
if (keyboardManager) {
|
216
223
|
keyboardManager
|
217
224
|
.unbind("F6")
|
@@ -278,7 +285,7 @@ export class SnkCrud {
|
|
278
285
|
return;
|
279
286
|
}
|
280
287
|
this._snkDataUnit.ignoreSaveMessage = this._currentViewMode === VIEW_MODE.GRID;
|
281
|
-
return (h(Host, null, h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, h("stack-item", null, h("snk-grid", { ref: (ref) => this._snkGrid = ref, "data-element-id": "crud_grid", configName: this.configName, onGridDoubleClick: () => this.gridToForm(true), taskbarManager: this.taskbarManager, onActionClick: evt => this.executeAction(evt.detail), messagesBuilder: this.messagesBuilder, actionsList: this.actionsList, statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, presentationMode: this.presentationMode, recordsValidator: this.recordsValidator, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit, resourceID: this._resourceID }, h("slot", { name: "GRID_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "GRID_HEADER_CUSTOM_ELEMENTS" }), h("slot", { name: "SnkGridHeader" }), h("slot", { name: "SnkGridFooter" }), h("slot", { name: "SnkGridTaskBar" }))), h("stack-item", null, h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(VIEW_MODE.GRID), dataState: this._dataState, dataUnit: this._dataUnit, actionsList: this.actionsList, taskbarManager: this.taskbarManager, configName: this.configName, onActionClick: evt => this.executeAction(evt.detail), presentationMode: this.presentationMode, "data-element-id": "crud_form", canEdit: this._canEdit, recordsValidator: this.recordsValidator, resourceID: this._resourceID, detailTaskbarCustomContainerId: this.customContainerId }, h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "SnkFormTaskBar" }))), h("stack-item", null, h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.setViewMode(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showActionButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL'), resourceID: this._resourceID, customContainerId: this.customContainerId })), h("div", { id: `${this.customContainerId}` }, h("slot", { name: "SnkConfigContainerSlot" }), h("slot", { name: "DETAIL_GRID_HEADER_CUSTOM_ELEMENTS" }), h("slot", { name: "DETAIL_GRID_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "DETAIL_TASKBAR_CUSTOM_ELEMENTS" }))));
|
288
|
+
return (h(Host, null, h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, h("stack-item", null, h("snk-grid", { ref: (ref) => this._snkGrid = ref, 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 }, h("slot", { name: "GRID_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "GRID_HEADER_CUSTOM_ELEMENTS" }), h("slot", { name: "SnkGridHeader" }), h("slot", { name: "SnkGridFooter" }), h("slot", { name: "SnkGridTaskBar" }))), h("stack-item", null, h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(VIEW_MODE.GRID), dataState: this._dataState, dataUnit: this._dataUnit, actionsList: this.actionsList, taskbarManager: this.taskbarManager, configName: this.configName, onActionClick: evt => this.executeAction(evt.detail), presentationMode: this.presentationMode, "data-element-id": "crud_form", canEdit: this._canEdit, recordsValidator: this.recordsValidator, resourceID: this._resourceID, detailTaskbarCustomContainerId: this.customContainerId, formLegacyConfigName: this.formLegacyConfigName }, h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "SnkFormTaskBar" }))), h("stack-item", null, h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.setViewMode(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showActionButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL'), resourceID: this._resourceID, customContainerId: this.customContainerId })), h("div", { id: `${this.customContainerId}` }, h("slot", { name: "SnkConfigContainerSlot" }), h("slot", { name: "DETAIL_GRID_HEADER_CUSTOM_ELEMENTS" }), h("slot", { name: "DETAIL_GRID_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "DETAIL_TASKBAR_CUSTOM_ELEMENTS" }))));
|
282
289
|
}
|
283
290
|
static get is() { return "snk-crud"; }
|
284
291
|
static get encapsulation() { return "scoped"; }
|
@@ -311,6 +318,23 @@ export class SnkCrud {
|
|
311
318
|
"attribute": "config-name",
|
312
319
|
"reflect": false
|
313
320
|
},
|
321
|
+
"filterBarTitle": {
|
322
|
+
"type": "string",
|
323
|
+
"mutable": false,
|
324
|
+
"complexType": {
|
325
|
+
"original": "string",
|
326
|
+
"resolved": "string",
|
327
|
+
"references": {}
|
328
|
+
},
|
329
|
+
"required": false,
|
330
|
+
"optional": false,
|
331
|
+
"docs": {
|
332
|
+
"tags": [],
|
333
|
+
"text": "T\u00EDtulo que ser\u00E1 apresentado na barra de filtros"
|
334
|
+
},
|
335
|
+
"attribute": "filter-bar-title",
|
336
|
+
"reflect": false
|
337
|
+
},
|
314
338
|
"selectionToastConfig": {
|
315
339
|
"type": "unknown",
|
316
340
|
"mutable": false,
|
@@ -514,6 +538,74 @@ export class SnkCrud {
|
|
514
538
|
"attribute": "use-enter-like-tab",
|
515
539
|
"reflect": false,
|
516
540
|
"defaultValue": "false"
|
541
|
+
},
|
542
|
+
"gridLegacyConfigName": {
|
543
|
+
"type": "string",
|
544
|
+
"mutable": false,
|
545
|
+
"complexType": {
|
546
|
+
"original": "string",
|
547
|
+
"resolved": "string",
|
548
|
+
"references": {}
|
549
|
+
},
|
550
|
+
"required": false,
|
551
|
+
"optional": false,
|
552
|
+
"docs": {
|
553
|
+
"tags": [],
|
554
|
+
"text": "Chave da configura\u00E7\u00E3o legado da grade."
|
555
|
+
},
|
556
|
+
"attribute": "grid-legacy-config-name",
|
557
|
+
"reflect": false
|
558
|
+
},
|
559
|
+
"filterBarLegacyConfigName": {
|
560
|
+
"type": "string",
|
561
|
+
"mutable": false,
|
562
|
+
"complexType": {
|
563
|
+
"original": "string",
|
564
|
+
"resolved": "string",
|
565
|
+
"references": {}
|
566
|
+
},
|
567
|
+
"required": false,
|
568
|
+
"optional": false,
|
569
|
+
"docs": {
|
570
|
+
"tags": [],
|
571
|
+
"text": "Chave da configura\u00E7\u00E3o legado da barra de filtros."
|
572
|
+
},
|
573
|
+
"attribute": "filter-bar-legacy-config-name",
|
574
|
+
"reflect": false
|
575
|
+
},
|
576
|
+
"formLegacyConfigName": {
|
577
|
+
"type": "string",
|
578
|
+
"mutable": false,
|
579
|
+
"complexType": {
|
580
|
+
"original": "string",
|
581
|
+
"resolved": "string",
|
582
|
+
"references": {}
|
583
|
+
},
|
584
|
+
"required": false,
|
585
|
+
"optional": false,
|
586
|
+
"docs": {
|
587
|
+
"tags": [],
|
588
|
+
"text": "Chave da configura\u00E7\u00E3o legado do formul\u00E1rio."
|
589
|
+
},
|
590
|
+
"attribute": "form-legacy-config-name",
|
591
|
+
"reflect": false
|
592
|
+
},
|
593
|
+
"disablePersonalizedFilter": {
|
594
|
+
"type": "boolean",
|
595
|
+
"mutable": false,
|
596
|
+
"complexType": {
|
597
|
+
"original": "boolean",
|
598
|
+
"resolved": "boolean",
|
599
|
+
"references": {}
|
600
|
+
},
|
601
|
+
"required": false,
|
602
|
+
"optional": false,
|
603
|
+
"docs": {
|
604
|
+
"tags": [],
|
605
|
+
"text": "Desabilita a apresenta\u00E7\u00E3o da op\u00E7\u00E3o de filtros personalizados na filter bar (chip de filtros)\ne no modal lateral de filtros (container de filtros personalizados)."
|
606
|
+
},
|
607
|
+
"attribute": "disable-personalized-filter",
|
608
|
+
"reflect": false
|
517
609
|
}
|
518
610
|
};
|
519
611
|
}
|
package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Action } from '@sankhyalabs/core';
|
2
2
|
import { Host, forceUpdate, h } from '@stencil/core';
|
3
|
-
import { SnkFormConfigManager } from '../../../snk-form/SnkFormConfigManager';
|
3
|
+
import { SnkFormConfigManager } from '../../../snk-form-config/SnkFormConfigManager';
|
4
4
|
import { buildFormMetadata } from "@sankhyalabs/ezui/dist/collection/utils/form";
|
5
5
|
import { PresentationMode } from '../../../../lib';
|
6
6
|
import { TaskbarElement } from '../../../snk-taskbar/elements/taskbar-elements';
|
@@ -236,7 +236,7 @@ export class SnkDetailView {
|
|
236
236
|
"references": {
|
237
237
|
"SnkFormConfigManager": {
|
238
238
|
"location": "import",
|
239
|
-
"path": "../../../snk-form/SnkFormConfigManager"
|
239
|
+
"path": "../../../snk-form-config/SnkFormConfigManager"
|
240
240
|
}
|
241
241
|
}
|
242
242
|
},
|
@@ -25,7 +25,7 @@ snk-form-view {
|
|
25
25
|
position: relative;
|
26
26
|
padding-left: 0px;
|
27
27
|
padding-top: 0px;
|
28
|
-
|
28
|
+
|
29
29
|
/*public*/
|
30
30
|
padding-right: var(--snk-guides-viewer--space-large);
|
31
31
|
padding-bottom: var(--snk-guides-viewer--space-large);
|
@@ -57,6 +57,15 @@ snk-form-view {
|
|
57
57
|
margin-bottom: var(--snk-guides-viewer--space-medium);
|
58
58
|
}
|
59
59
|
|
60
|
+
.snk-guides-viewer__header-breadcrumb{
|
61
|
+
width: 25%;
|
62
|
+
display: flex;
|
63
|
+
}
|
64
|
+
|
65
|
+
.snk-guides-viewer__header-taskbar{
|
66
|
+
width: 75%;
|
67
|
+
}
|
68
|
+
|
60
69
|
.snk-guides-viewer__container {
|
61
70
|
/*private*/
|
62
71
|
display: grid;
|
@@ -88,4 +97,4 @@ snk-form-view {
|
|
88
97
|
min-height: 100%;
|
89
98
|
align-items: flex-start;
|
90
99
|
align-content: flex-start;
|
91
|
-
}
|
100
|
+
}
|