@sankhyalabs/sankhyablocks 1.3.33 → 1.4.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/SnkMessageBuilder-7717f1e4.js +326 -0
- package/dist/cjs/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/css-shim-b8158822.js +6 -0
- package/dist/cjs/dom-36862b77.js +75 -0
- package/dist/cjs/filter-item-type.enum-e2e1bc5b.js +14 -0
- package/dist/cjs/index-02201bc9.js +2397 -0
- package/dist/cjs/index-b0b676c5.js +3298 -0
- package/dist/cjs/loader.cjs.js +19 -3
- package/dist/cjs/sankhyablocks.cjs.js +117 -5
- package/dist/cjs/shadow-css-346c0795.js +389 -0
- package/dist/cjs/snk-application.cjs.entry.js +721 -169
- package/dist/cjs/snk-crud.cjs.entry.js +70 -0
- package/dist/cjs/snk-data-unit.cjs.entry.js +280 -0
- package/dist/cjs/snk-filter-bar.cjs.entry.js +278 -0
- package/dist/cjs/snk-filter-binary-select.cjs.entry.js +47 -0
- package/dist/cjs/snk-filter-detail.cjs.entry.js +49 -0
- package/dist/cjs/snk-filter-item.cjs.entry.js +154 -0
- package/dist/cjs/snk-filter-list.cjs.entry.js +91 -0
- package/dist/cjs/snk-filter-multi-select.cjs.entry.js +23 -0
- package/dist/cjs/snk-filter-number.cjs.entry.js +24 -0
- package/dist/cjs/snk-filter-period.cjs.entry.js +37 -0
- package/dist/cjs/snk-filter-search.cjs.entry.js +44 -0
- package/dist/cjs/snk-filter-text.cjs.entry.js +22 -0
- package/dist/cjs/snk-form.cjs.entry.js +133 -0
- package/dist/cjs/snk-grid.cjs.entry.js +79 -0
- package/dist/cjs/snk-pesquisa.cjs.entry.js +5 -5
- package/dist/cjs/snk-taskbar.cjs.entry.js +160 -0
- package/dist/cjs/taskbar-elements-283c737e.js +93 -0
- package/dist/cjs/taskbar-processor-6bd0d35c.js +47 -0
- package/dist/cjs/teste-pesquisa.cjs.entry.js +5 -5
- package/dist/collection/collection-manifest.json +17 -2
- package/dist/collection/components/snk-application/errorhandler/snk-error-handler.js +9 -2
- package/dist/collection/components/snk-application/snk-application.js +1126 -621
- package/dist/collection/components/snk-crud/snk-crud.css +6 -0
- package/dist/collection/components/snk-crud/snk-crud.js +203 -0
- package/dist/collection/components/snk-data-unit/snk-data-unit.css +6 -0
- package/dist/collection/components/snk-data-unit/snk-data-unit.js +544 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-binary-select.js +88 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-multi-select.js +64 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-number.js +65 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-period.js +78 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-search.js +118 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-text.js +63 -0
- package/dist/collection/components/snk-filter-bar/filter-item/filter-item-type.enum.js +10 -0
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-detail.js +118 -0
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.js +255 -0
- package/dist/collection/components/snk-filter-bar/filter-list/snk-filter-list.js +233 -0
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.css +114 -0
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +353 -0
- package/dist/collection/components/snk-form/snk-form.css +34 -0
- package/dist/collection/components/snk-form/snk-form.js +258 -0
- package/dist/collection/components/snk-grid/snk-grid.css +18 -0
- package/dist/collection/components/snk-grid/snk-grid.js +205 -0
- package/dist/collection/components/snk-pesquisa/snk-pesquisa.js +80 -79
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +86 -0
- package/dist/collection/components/snk-taskbar/processor/taskbar-processor.js +43 -0
- package/dist/collection/components/snk-taskbar/snk-taskbar.css +3 -0
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +307 -0
- package/dist/collection/components/teste-pesquisa/teste-pesquisa.js +12 -9
- package/dist/collection/lib/http/data-fetcher/DataFetcher.js +38 -13
- package/dist/collection/lib/http/data-fetcher/fetchers/dataunit-fetcher.js +52 -21
- package/dist/collection/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.js +54 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/grid-config-fetcher.js +4 -3
- package/dist/collection/lib/http/data-fetcher/fetchers/totals-fetcher.js +47 -0
- package/dist/collection/lib/index.js +1 -0
- package/dist/collection/lib/message/SnkMessageBuilder.js +121 -0
- package/dist/collection/lib/message/resources/snk-data-unit.msg.js +23 -0
- package/dist/collection/lib/message/resources/snk-filter-bar.msg.js +18 -0
- package/dist/collection/lib/message/resources/snk-form.msg.js +10 -0
- package/dist/collection/lib/message/resources/snk-taskbar.msg.js +17 -0
- package/dist/components/SnkMessageBuilder.js +303 -0
- package/dist/components/filter-item-type.enum.js +12 -0
- package/dist/components/index.d.ts +18 -5
- package/dist/components/index.js +22 -0
- package/dist/components/index2.js +2384 -0
- package/dist/components/snk-application2.js +701 -140
- package/dist/components/snk-crud.d.ts +11 -0
- package/dist/components/snk-crud.js +133 -0
- package/dist/components/snk-data-unit.d.ts +11 -0
- package/dist/components/snk-data-unit.js +303 -0
- package/dist/components/snk-filter-bar.d.ts +11 -0
- package/dist/components/snk-filter-bar.js +6 -0
- package/dist/components/snk-filter-bar2.js +310 -0
- package/dist/components/snk-filter-binary-select.d.ts +11 -0
- package/dist/components/snk-filter-binary-select.js +63 -0
- package/dist/components/snk-filter-detail.d.ts +11 -0
- package/dist/components/snk-filter-detail.js +6 -0
- package/dist/components/snk-filter-detail2.js +63 -0
- package/dist/components/snk-filter-item.d.ts +11 -0
- package/dist/components/snk-filter-item.js +6 -0
- package/dist/components/snk-filter-item2.js +175 -0
- package/dist/components/snk-filter-list.d.ts +11 -0
- package/dist/components/snk-filter-list.js +6 -0
- package/dist/components/snk-filter-list2.js +111 -0
- package/dist/components/snk-filter-multi-select.d.ts +11 -0
- package/dist/components/snk-filter-multi-select.js +39 -0
- package/dist/components/snk-filter-number.d.ts +11 -0
- package/dist/components/snk-filter-number.js +40 -0
- package/dist/components/snk-filter-period.d.ts +11 -0
- package/dist/components/snk-filter-period.js +53 -0
- package/dist/components/snk-filter-search.d.ts +11 -0
- package/dist/components/snk-filter-search.js +62 -0
- package/dist/components/snk-filter-text.d.ts +11 -0
- package/dist/components/snk-filter-text.js +38 -0
- package/dist/components/snk-form.d.ts +11 -0
- package/dist/components/snk-form.js +6 -0
- package/dist/components/snk-form2.js +159 -0
- package/dist/components/snk-grid.d.ts +11 -0
- package/dist/components/snk-grid.js +6 -0
- package/dist/components/snk-grid2.js +127 -0
- package/dist/components/snk-pesquisa2.js +1 -1
- package/dist/components/snk-taskbar.d.ts +11 -0
- package/dist/components/snk-taskbar.js +6 -0
- package/dist/components/snk-taskbar2.js +264 -0
- package/dist/components/taskbar-processor.js +45 -0
- package/dist/components/teste-pesquisa.js +1 -1
- package/dist/esm/SnkMessageBuilder-a7da466b.js +303 -0
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/css-shim-b3f2ee8d.js +4 -0
- package/dist/esm/dom-665d6011.js +73 -0
- package/dist/esm/filter-item-type.enum-61fbf80a.js +12 -0
- package/dist/esm/index-2b4d2d14.js +3262 -0
- package/dist/esm/index-f1d3e4da.js +2384 -0
- package/dist/esm/loader.js +19 -3
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/sankhyablocks.js +117 -5
- package/dist/esm/shadow-css-b18e99d7.js +387 -0
- package/dist/esm/snk-application.entry.js +693 -141
- package/dist/esm/snk-crud.entry.js +66 -0
- package/dist/esm/snk-data-unit.entry.js +276 -0
- package/dist/esm/snk-filter-bar.entry.js +274 -0
- package/dist/esm/snk-filter-binary-select.entry.js +43 -0
- package/dist/esm/snk-filter-detail.entry.js +45 -0
- package/dist/esm/snk-filter-item.entry.js +150 -0
- package/dist/esm/snk-filter-list.entry.js +87 -0
- package/dist/esm/snk-filter-multi-select.entry.js +19 -0
- package/dist/esm/snk-filter-number.entry.js +20 -0
- package/dist/esm/snk-filter-period.entry.js +33 -0
- package/dist/esm/snk-filter-search.entry.js +40 -0
- package/dist/esm/snk-filter-text.entry.js +18 -0
- package/dist/esm/snk-form.entry.js +129 -0
- package/dist/esm/snk-grid.entry.js +75 -0
- package/dist/esm/snk-pesquisa.entry.js +2 -2
- package/dist/esm/snk-taskbar.entry.js +156 -0
- package/dist/esm/taskbar-elements-35d64ff9.js +90 -0
- package/dist/esm/taskbar-processor-aa6772c9.js +45 -0
- package/dist/esm/teste-pesquisa.entry.js +2 -2
- package/dist/sankhyablocks/SnkMessageBuilder-a7da466b.js +303 -0
- package/dist/sankhyablocks/app-globals-0f993ce5.js +3 -0
- package/dist/sankhyablocks/css-shim-b3f2ee8d.js +4 -0
- package/dist/sankhyablocks/dom-665d6011.js +73 -0
- package/dist/sankhyablocks/filter-item-type.enum-61fbf80a.js +12 -0
- package/dist/sankhyablocks/index-2b4d2d14.js +3262 -0
- package/dist/sankhyablocks/index-f1d3e4da.js +2384 -0
- package/dist/sankhyablocks/index.esm.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +129 -1
- package/dist/sankhyablocks/shadow-css-b18e99d7.js +387 -0
- package/dist/sankhyablocks/snk-application.entry.js +8148 -0
- package/dist/sankhyablocks/snk-crud.entry.js +66 -0
- package/dist/sankhyablocks/snk-data-unit.entry.js +276 -0
- package/dist/sankhyablocks/snk-filter-bar.entry.js +274 -0
- package/dist/sankhyablocks/snk-filter-binary-select.entry.js +43 -0
- package/dist/sankhyablocks/snk-filter-detail.entry.js +45 -0
- package/dist/sankhyablocks/snk-filter-item.entry.js +150 -0
- package/dist/sankhyablocks/snk-filter-list.entry.js +87 -0
- package/dist/sankhyablocks/snk-filter-multi-select.entry.js +19 -0
- package/dist/sankhyablocks/snk-filter-number.entry.js +20 -0
- package/dist/sankhyablocks/snk-filter-period.entry.js +33 -0
- package/dist/sankhyablocks/snk-filter-search.entry.js +40 -0
- package/dist/sankhyablocks/snk-filter-text.entry.js +18 -0
- package/dist/sankhyablocks/snk-form.entry.js +129 -0
- package/dist/sankhyablocks/snk-grid.entry.js +75 -0
- package/dist/sankhyablocks/snk-pesquisa.entry.js +311 -0
- package/dist/sankhyablocks/snk-taskbar.entry.js +156 -0
- package/dist/sankhyablocks/taskbar-elements-35d64ff9.js +90 -0
- package/dist/sankhyablocks/taskbar-processor-aa6772c9.js +45 -0
- package/dist/sankhyablocks/teste-pesquisa.entry.js +33 -0
- package/dist/types/components/snk-application/errorhandler/snk-error-handler.d.ts +1 -0
- package/dist/types/components/snk-application/snk-application.d.ts +145 -15
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-binary-select.d.ts +12 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-multi-select.d.ts +7 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-number.d.ts +7 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-period.d.ts +14 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-search.d.ts +12 -0
- package/dist/types/components/snk-filter-bar/filter-item/editors/snk-filter-text.d.ts +7 -0
- package/dist/types/components/snk-filter-bar/filter-item/filter-item-type.enum.d.ts +9 -0
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-detail.d.ts +14 -0
- package/dist/types/components/snk-filter-bar/filter-list/snk-filter-list.d.ts +40 -0
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +51 -0
- package/dist/types/components/snk-taskbar/elements/taskbar-elements.d.ts +29 -0
- package/dist/types/components/snk-taskbar/processor/taskbar-processor.d.ts +12 -0
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +84 -0
- package/dist/types/components.d.ts +696 -8
- package/dist/types/lib/http/data-fetcher/DataFetcher.d.ts +7 -6
- package/dist/types/lib/http/data-fetcher/fetchers/dataunit-fetcher.d.ts +2 -0
- package/dist/types/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.d.ts +6 -0
- package/dist/types/lib/http/data-fetcher/fetchers/grid-config-fetcher.d.ts +1 -1
- package/dist/types/lib/http/data-fetcher/fetchers/totals-fetcher.d.ts +8 -0
- package/dist/types/lib/index.d.ts +1 -0
- package/dist/types/lib/message/SnkMessageBuilder.d.ts +42 -0
- package/dist/types/lib/message/resources/snk-data-unit.msg.d.ts +2 -0
- package/dist/types/lib/message/resources/snk-filter-bar.msg.d.ts +2 -0
- package/dist/types/lib/message/resources/snk-form.msg.d.ts +2 -0
- package/dist/types/lib/message/resources/snk-taskbar.msg.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +15 -4
- package/loader/package.json +1 -0
- package/package.json +5 -5
- package/react/components.d.ts +0 -2
- package/react/components.js +0 -2
- package/react/components.js.map +1 -1
- package/dist/cjs/index-1133bc2a.js +0 -1235
- package/dist/esm/index-ffda6382.js +0 -1208
- package/dist/sankhyablocks/p-2a7b4cb3.entry.js +0 -1
- package/dist/sankhyablocks/p-9520d78a.entry.js +0 -1
- package/dist/sankhyablocks/p-bd1b31db.entry.js +0 -69
- package/dist/sankhyablocks/p-edcb9d8e.js +0 -2
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const filterItemType_enum = require('./filter-item-type.enum-e2e1bc5b.js');
|
|
7
|
+
|
|
8
|
+
const SnkFilterDetail = class {
|
|
9
|
+
constructor(hostRef) {
|
|
10
|
+
index.registerInstance(this, hostRef);
|
|
11
|
+
this.filterChange = index.createEvent(this, "filterChange", 7);
|
|
12
|
+
}
|
|
13
|
+
changeConfig(newConfig) {
|
|
14
|
+
this.filterChange.emit(newConfig);
|
|
15
|
+
}
|
|
16
|
+
getContentEditor() {
|
|
17
|
+
switch (this.config.type) {
|
|
18
|
+
case filterItemType_enum.FilterItemType.BINARY_SELECT:
|
|
19
|
+
return "snk-filter-binary-select";
|
|
20
|
+
case filterItemType_enum.FilterItemType.MULTI_SELECT:
|
|
21
|
+
return "snk-filter-multi-select";
|
|
22
|
+
case filterItemType_enum.FilterItemType.PERIOD:
|
|
23
|
+
return "snk-filter-period";
|
|
24
|
+
case filterItemType_enum.FilterItemType.SEARCH:
|
|
25
|
+
return "snk-filter-search";
|
|
26
|
+
case filterItemType_enum.FilterItemType.NUMBER:
|
|
27
|
+
return "snk-filter-number";
|
|
28
|
+
}
|
|
29
|
+
return "snk-filter-text";
|
|
30
|
+
}
|
|
31
|
+
removeItem() {
|
|
32
|
+
this.changeConfig(Object.assign(Object.assign({}, this.config), { visible: false, fixed: false, value: undefined }));
|
|
33
|
+
}
|
|
34
|
+
getPopUpHeaderButtons() {
|
|
35
|
+
if (this.config.hardFixed) {
|
|
36
|
+
return undefined;
|
|
37
|
+
}
|
|
38
|
+
return ([
|
|
39
|
+
index.h("ez-icon", { title: this.getMessage("snkFilterBar.removeFilter"), class: "sc-snk-filter-bar snk-filter-item__editor-header-button", iconName: "delete", onClick: () => this.removeItem() }),
|
|
40
|
+
index.h("ez-icon", { title: this.getMessage(this.config.fixed ? "snkFilterBar.unpinFilter" : "snkFilterBar.pinFilter"), class: "ez-margin-left--small sc-snk-filter-bar snk-filter-item__editor-header-button", iconName: this.config.fixed ? "un-pin" : "push-pin", onClick: () => this.changeConfig(Object.assign(Object.assign({}, this.config), { fixed: !this.config.fixed })) })
|
|
41
|
+
]);
|
|
42
|
+
}
|
|
43
|
+
render() {
|
|
44
|
+
const ContentEditor = this.getContentEditor();
|
|
45
|
+
return (index.h(index.Host, null, index.h("div", { class: "col ez-col--sd-12 ez-align--right ez-padding-medium ez-flex--align-items-center" }, index.h("div", { class: "ez-text ez-title ez-title--small ez-padding--small sc-snk-filter-bar snk-filter-item__editor-header" }, this.config.detailTitle), this.getPopUpHeaderButtons()), index.h(ContentEditor, { ref: ref => this._editor = ref, value: this.config.value, config: this.config, fix: () => this.keepOpened = true, unfix: () => this.keepOpened = false }), index.h("hr", { class: "sc-snk-filter-bar snk-filter__popover-rule" }), index.h("div", { class: "ez-col ez-col--sd-12 ez-align--right" }, index.h("ez-button", { label: this.getMessage("snkFilterBar.cleanFilter"), onClick: () => this.changeConfig(Object.assign(Object.assign({}, this.config), { value: undefined })) }), index.h("ez-button", { label: this.getMessage("snkFilterBar.applyFilter"), onClick: () => this.changeConfig(Object.assign(Object.assign({}, this.config), { value: this._editor["value"] })), class: "ez-button--primary ez-padding-left--medium" }))));
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
exports.snk_filter_detail = SnkFilterDetail;
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const index$1 = require('./index-02201bc9.js');
|
|
7
|
+
const filterItemType_enum = require('./filter-item-type.enum-e2e1bc5b.js');
|
|
8
|
+
|
|
9
|
+
const SnkFilterItem = class {
|
|
10
|
+
constructor(hostRef) {
|
|
11
|
+
index.registerInstance(this, hostRef);
|
|
12
|
+
this.filterChange = index.createEvent(this, "filterChange", 7);
|
|
13
|
+
this.innerClickCheck = (floatingContainer, node) => {
|
|
14
|
+
if (this._popover.keepOpened) {
|
|
15
|
+
return true;
|
|
16
|
+
}
|
|
17
|
+
if (node && floatingContainer) {
|
|
18
|
+
if (!node.offsetParent) {
|
|
19
|
+
return true;
|
|
20
|
+
}
|
|
21
|
+
let current = node;
|
|
22
|
+
do {
|
|
23
|
+
if (current === floatingContainer) {
|
|
24
|
+
return true;
|
|
25
|
+
}
|
|
26
|
+
} while ((current = current.offsetParent) != null);
|
|
27
|
+
}
|
|
28
|
+
this.detailIsVisible = false;
|
|
29
|
+
return false;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
async showUp(open = false) {
|
|
33
|
+
this._filterItemElement.scrollIntoView({ behavior: "auto", block: "nearest", inline: "nearest" });
|
|
34
|
+
if (open) {
|
|
35
|
+
window.requestAnimationFrame(() => {
|
|
36
|
+
this.showDetail();
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
showDetail() {
|
|
41
|
+
this._floatingID = index$1.FloatingManager.float(this._popover, this._popoverContainer, { autoClose: true, innerClickTest: this.innerClickCheck, left: this.getScrollOffset() });
|
|
42
|
+
this.detailIsVisible = true;
|
|
43
|
+
}
|
|
44
|
+
getScrollOffset() {
|
|
45
|
+
return `${this._filterItemElement.getBoundingClientRect().left + 12}px`;
|
|
46
|
+
}
|
|
47
|
+
hideDetail() {
|
|
48
|
+
if (this._floatingID != undefined) {
|
|
49
|
+
index$1.FloatingManager.close(this._floatingID);
|
|
50
|
+
}
|
|
51
|
+
this._floatingID = undefined;
|
|
52
|
+
this.detailIsVisible = false;
|
|
53
|
+
}
|
|
54
|
+
//---------------------------------------------
|
|
55
|
+
// Event handlers
|
|
56
|
+
//---------------------------------------------
|
|
57
|
+
clickListener(evt) {
|
|
58
|
+
if ([this._chipElement, this._leftIconElement, this._rightIconElement].includes(evt.target)) {
|
|
59
|
+
if (evt.target === this._rightIconElement && this.config.value != undefined) {
|
|
60
|
+
this.filterChange.emit(Object.assign(Object.assign({}, this.config), { value: undefined }));
|
|
61
|
+
}
|
|
62
|
+
else {
|
|
63
|
+
if (this.detailIsVisible) {
|
|
64
|
+
this.hideDetail();
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
this.showDetail();
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
evt.preventDefault();
|
|
71
|
+
evt.stopImmediatePropagation();
|
|
72
|
+
evt.stopPropagation();
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
mouseDownListener(evt) {
|
|
76
|
+
if (this.detailIsVisible && [this._chipElement, this._leftIconElement, this._rightIconElement].includes(evt.target)) {
|
|
77
|
+
evt.preventDefault();
|
|
78
|
+
evt.stopImmediatePropagation();
|
|
79
|
+
evt.stopPropagation();
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
getLabel() {
|
|
83
|
+
const { type, value, label, props } = this.config;
|
|
84
|
+
if (value) {
|
|
85
|
+
if (type === filterItemType_enum.FilterItemType.BINARY_SELECT) {
|
|
86
|
+
const [optOne, optTwo] = props.options;
|
|
87
|
+
if (optOne.name === value) {
|
|
88
|
+
return optOne.label;
|
|
89
|
+
}
|
|
90
|
+
if (optTwo.name === value) {
|
|
91
|
+
return optTwo.label;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
if (type === filterItemType_enum.FilterItemType.MULTI_SELECT) {
|
|
95
|
+
const opt = props.options.find(opt => opt.value === value);
|
|
96
|
+
return `${label}: ${opt.label}`;
|
|
97
|
+
}
|
|
98
|
+
if (type === filterItemType_enum.FilterItemType.PERIOD) {
|
|
99
|
+
let { end, start } = value;
|
|
100
|
+
if (typeof end === "string") {
|
|
101
|
+
end = new Date(end);
|
|
102
|
+
end.setMinutes(end.getMinutes() + end.getTimezoneOffset());
|
|
103
|
+
}
|
|
104
|
+
if (typeof start === "string") {
|
|
105
|
+
start = new Date(start);
|
|
106
|
+
start.setMinutes(start.getMinutes() + start.getTimezoneOffset());
|
|
107
|
+
}
|
|
108
|
+
const dateFormater = new Intl.DateTimeFormat("pt-BR");
|
|
109
|
+
if (end && start) {
|
|
110
|
+
return `${label}: ${dateFormater.format(start)} a ${dateFormater.format(end)}`;
|
|
111
|
+
}
|
|
112
|
+
else {
|
|
113
|
+
if (start) {
|
|
114
|
+
return `${label}: A partir de ${dateFormater.format(start)}`;
|
|
115
|
+
}
|
|
116
|
+
else if (end) {
|
|
117
|
+
return `${label}: Até ${dateFormater.format(end)}`;
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
return label;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
if (type === filterItemType_enum.FilterItemType.SEARCH) {
|
|
125
|
+
return `${label}: ${value.value} - ${value.label}`;
|
|
126
|
+
}
|
|
127
|
+
return `${label}: ${value}`;
|
|
128
|
+
}
|
|
129
|
+
return label;
|
|
130
|
+
}
|
|
131
|
+
componentDidRender() {
|
|
132
|
+
if (this._floatingID == undefined) {
|
|
133
|
+
if (this._popover) {
|
|
134
|
+
this._popover.remove();
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
filterChangeListener() {
|
|
139
|
+
this.hideDetail();
|
|
140
|
+
}
|
|
141
|
+
getIconName() {
|
|
142
|
+
if (this.config.value != undefined) {
|
|
143
|
+
return "close";
|
|
144
|
+
}
|
|
145
|
+
return this.detailIsVisible ? "chevron-up" : "chevron-down";
|
|
146
|
+
}
|
|
147
|
+
render() {
|
|
148
|
+
const leftIcon = this.config.type === filterItemType_enum.FilterItemType.PERIOD ? "calendar" : undefined;
|
|
149
|
+
return (index.h(index.Host, null, index.h("ez-chip", { ref: ref => this._chipElement = ref, label: this.getLabel(), value: this.config.value != undefined }, leftIcon ? index.h("ez-icon", { ref: ref => this._leftIconElement = ref, iconName: leftIcon, class: "ez-padding-right--small", slot: "leftIcon" }) : undefined, index.h("ez-icon", { ref: ref => this._rightIconElement = ref, iconName: this.getIconName(), class: "ez-padding-left--small", slot: "rightIcon" })), index.h("section", { class: "ez-margin-top--small sc-snk-filter-bar snk-filter__popover-container", ref: elem => this._popoverContainer = elem }, index.h("snk-filter-detail", { config: this.config, getMessage: this.getMessage, class: "sc-snk-filter-bar snk-filter__popover ez-padding--small", ref: elem => this._popover = elem, key: this.config.id }))));
|
|
150
|
+
}
|
|
151
|
+
get _filterItemElement() { return index.getElement(this); }
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
exports.snk_filter_item = SnkFilterItem;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const index$1 = require('./index-02201bc9.js');
|
|
7
|
+
|
|
8
|
+
const SHOW_MORE_ITEM_NAME = "__SHOWMORE__";
|
|
9
|
+
const MAX_FILTERS = 5;
|
|
10
|
+
const SnkFilterList = class {
|
|
11
|
+
constructor(hostRef) {
|
|
12
|
+
index.registerInstance(this, hostRef);
|
|
13
|
+
this.snkItemSelected = index.createEvent(this, "snkItemSelected", 7);
|
|
14
|
+
this.innerClickCheck = (floatingContainer, node) => {
|
|
15
|
+
if (node && floatingContainer) {
|
|
16
|
+
if (!node.offsetParent) {
|
|
17
|
+
return true;
|
|
18
|
+
}
|
|
19
|
+
let current = node;
|
|
20
|
+
do {
|
|
21
|
+
if (current === floatingContainer || current === this._element) {
|
|
22
|
+
return true;
|
|
23
|
+
}
|
|
24
|
+
} while ((current = current.offsetParent) != null);
|
|
25
|
+
}
|
|
26
|
+
this._detailIsVisible = false;
|
|
27
|
+
return false;
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
showList() {
|
|
31
|
+
this._floatingID = index$1.FloatingManager.float(this._popover, this._popoverContainer, { autoClose: true, innerClickTest: this.innerClickCheck });
|
|
32
|
+
this._detailIsVisible = true;
|
|
33
|
+
this._showAll = false;
|
|
34
|
+
this._filterArgument = "";
|
|
35
|
+
}
|
|
36
|
+
hideList() {
|
|
37
|
+
if (this._floatingID != undefined) {
|
|
38
|
+
index$1.FloatingManager.close(this._floatingID);
|
|
39
|
+
}
|
|
40
|
+
this._floatingID = undefined;
|
|
41
|
+
this._detailIsVisible = false;
|
|
42
|
+
}
|
|
43
|
+
buttonClick() {
|
|
44
|
+
if (this._detailIsVisible) {
|
|
45
|
+
this.hideList();
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
this.showList();
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
componentDidRender() {
|
|
52
|
+
if (this._floatingID == undefined) {
|
|
53
|
+
if (this._popover) {
|
|
54
|
+
this._popover.remove();
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
buildItemElement(item) {
|
|
59
|
+
return (index.h("div", { class: "ez-col ez-col--sd-12 ez-align--middle ez-padding--small sc-snk-filter-bar snk-filter-bar__filter-list-item", onClick: () => this.itemSelected(item.name) }, item.iconName ? index.h("ez-icon", { iconName: item.iconName, size: "small", class: `ez-padding-right--extra-small sc-snk-filter-bar snk-filter-bar__filter-list-item__icon ${item.iconClass || ""}` }) : undefined, index.h("div", { class: `ez-text ez-text--medium ez-text--primary ez-padding--extra-small sc-snk-filter-bar snk-filter-bar__filter-list-item__label ${item.labelClass || ""}` }, item.label)));
|
|
60
|
+
}
|
|
61
|
+
itemSelected(itemName) {
|
|
62
|
+
if (itemName === SHOW_MORE_ITEM_NAME) {
|
|
63
|
+
this._showAll = true;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
this.hideList();
|
|
67
|
+
this.snkItemSelected.emit(itemName);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
getFilterItems() {
|
|
71
|
+
const items = this.items ? index$1.ArrayUtils.applyStringFilter(this._filterArgument, this.items.filter(item => item.kind === "FILTER")) : [];
|
|
72
|
+
if (items.length === 0) {
|
|
73
|
+
return index.h("div", { class: "ez-text ez-text--medium ez-text--primary ez-padding--extra-small sc-snk-filter-bar snk-filter-bar__filter-list-items-container--empty" }, this.emptyText);
|
|
74
|
+
}
|
|
75
|
+
const hideItems = !this._filterArgument && !this._showAll && (items.length > MAX_FILTERS + 1);
|
|
76
|
+
if (hideItems) {
|
|
77
|
+
items.splice(MAX_FILTERS);
|
|
78
|
+
items.push({ kind: "INTERNAL", label: "Mostrar mais", iconName: "dots-horizontal", name: SHOW_MORE_ITEM_NAME, iconClass: "snk-filter-bar__filter-list-item__icon--secondary", labelClass: "snk-filter-bar__filter-list-item__label--secondary" });
|
|
79
|
+
}
|
|
80
|
+
return index.h("div", { class: "sc-snk-filter-bar snk-filter-bar__filter-list-items-container" }, items.map(item => this.buildItemElement(item)));
|
|
81
|
+
}
|
|
82
|
+
getFooterItems() {
|
|
83
|
+
return this.items.filter(item => item.kind === "FOOTER");
|
|
84
|
+
}
|
|
85
|
+
render() {
|
|
86
|
+
return (index.h(index.Host, { class: "ez-flex ez-flex--column" }, index.h("ez-button", { class: this.buttonClass, label: this.label, onClick: () => this.buttonClick(), mode: this.iconName ? "icon" : undefined, iconName: this.iconName, size: "small" }, index.h("slot", { name: "leftIcon" })), index.h("section", { class: "ez-margin-top--small sc-snk-filter-bar snk-filter__popover-container", ref: elem => this._popoverContainer = elem }, index.h("div", { class: "sc-snk-filter-bar snk-filter__popover ez-padding--small", ref: elem => this._popover = elem }, index.h("ez-filter-input", { ref: ref => this._filterInput = ref, mode: "slim", label: this.findFilterText, value: this._filterArgument, onEzChange: (evt) => this._filterArgument = evt.detail }), this.getFilterItems(), index.h("hr", { class: "sc-snk-filter-bar snk-filter__popover-rule" }), this.items ? this.getFooterItems().map(item => this.buildItemElement(item)) : undefined))));
|
|
87
|
+
}
|
|
88
|
+
get _element() { return index.getElement(this); }
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
exports.snk_filter_list = SnkFilterList;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const filterItemType_enum = require('./filter-item-type.enum-e2e1bc5b.js');
|
|
7
|
+
|
|
8
|
+
const SnkFilterMultiSelect = class {
|
|
9
|
+
constructor(hostRef) {
|
|
10
|
+
index.registerInstance(this, hostRef);
|
|
11
|
+
}
|
|
12
|
+
ezChangeListener(evt) {
|
|
13
|
+
this.value = evt.detail.value;
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
if (!this.config || this.config.type !== filterItemType_enum.FilterItemType.MULTI_SELECT) {
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
return (index.h("ez-combo-box", { label: this.config.label, value: this.config.value, options: this.config.props.options }));
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
exports.snk_filter_multi_select = SnkFilterMultiSelect;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const filterItemType_enum = require('./filter-item-type.enum-e2e1bc5b.js');
|
|
7
|
+
|
|
8
|
+
const SnkFilterPeriod = class {
|
|
9
|
+
constructor(hostRef) {
|
|
10
|
+
index.registerInstance(this, hostRef);
|
|
11
|
+
}
|
|
12
|
+
ezChangeListener(evt) {
|
|
13
|
+
this.value = evt.detail;
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
var _a;
|
|
17
|
+
if (!this.config || this.config.type !== filterItemType_enum.FilterItemType.NUMBER) {
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
return (index.h("ez-number-input", { label: this.config.label, value: this.config.value, precision: (_a = this.config.props) === null || _a === void 0 ? void 0 : _a.precision }));
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
exports.snk_filter_number = SnkFilterPeriod;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const filterItemType_enum = require('./filter-item-type.enum-e2e1bc5b.js');
|
|
7
|
+
|
|
8
|
+
const SnkFilterPeriod = class {
|
|
9
|
+
constructor(hostRef) {
|
|
10
|
+
index.registerInstance(this, hostRef);
|
|
11
|
+
}
|
|
12
|
+
ezChangeListener() {
|
|
13
|
+
const start = this._startDate.value;
|
|
14
|
+
const end = this._endDate.value;
|
|
15
|
+
this.value = (start || end ? { start, end } : undefined);
|
|
16
|
+
}
|
|
17
|
+
getDate(prop) {
|
|
18
|
+
const objValue = this.value ? this.value[prop] : null;
|
|
19
|
+
if (objValue instanceof Date) {
|
|
20
|
+
return objValue;
|
|
21
|
+
}
|
|
22
|
+
if (typeof objValue === "string") {
|
|
23
|
+
let date = new Date(objValue);
|
|
24
|
+
date.setMinutes(date.getMinutes() + date.getTimezoneOffset());
|
|
25
|
+
return date;
|
|
26
|
+
}
|
|
27
|
+
return null;
|
|
28
|
+
}
|
|
29
|
+
render() {
|
|
30
|
+
if (!this.config || this.config.type !== filterItemType_enum.FilterItemType.PERIOD) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
return (index.h("div", { class: "ez-col ez-col--nowrap" }, index.h("ez-date-input", { label: this.config.label, ref: ref => this._startDate = ref, value: this.getDate("start") }), index.h("label", { class: "ez-text ez-text--medium ez-text--primary ez-margin--medium" }, "at\u00E9"), index.h("ez-date-input", { label: this.config.label, ref: ref => this._endDate = ref, value: this.getDate("end") })));
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
exports.snk_filter_period = SnkFilterPeriod;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const index$1 = require('./index-02201bc9.js');
|
|
7
|
+
const filterItemType_enum = require('./filter-item-type.enum-e2e1bc5b.js');
|
|
8
|
+
|
|
9
|
+
const SnkFilterSearch = class {
|
|
10
|
+
constructor(hostRef) {
|
|
11
|
+
index.registerInstance(this, hostRef);
|
|
12
|
+
}
|
|
13
|
+
ezChangeListener(_evt) {
|
|
14
|
+
this.value = this._searchInput.value;
|
|
15
|
+
}
|
|
16
|
+
doSearch(mode, argument) {
|
|
17
|
+
const application = index$1.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
18
|
+
if (this.fix) {
|
|
19
|
+
this.fix();
|
|
20
|
+
}
|
|
21
|
+
return new Promise((resolve, reject) => {
|
|
22
|
+
application.executePreparedSearch(mode, argument, this.config.props.searchContext)
|
|
23
|
+
.then(result => {
|
|
24
|
+
resolve(result);
|
|
25
|
+
if (this.unfix) {
|
|
26
|
+
this.unfix();
|
|
27
|
+
}
|
|
28
|
+
}).catch(reason => {
|
|
29
|
+
reject(reason);
|
|
30
|
+
if (this.unfix) {
|
|
31
|
+
this.unfix();
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
render() {
|
|
37
|
+
if (!this.config || this.config.type !== filterItemType_enum.FilterItemType.SEARCH) {
|
|
38
|
+
return undefined;
|
|
39
|
+
}
|
|
40
|
+
return (index.h("ez-search", { suppressEmptyOption: true, value: this.config.value, label: this.config.label, ref: ref => this._searchInput = ref, optionLoader: ({ mode, argument }) => this.doSearch(mode, argument) }));
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
exports.snk_filter_search = SnkFilterSearch;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
|
|
7
|
+
const SnkFilterText = class {
|
|
8
|
+
constructor(hostRef) {
|
|
9
|
+
index.registerInstance(this, hostRef);
|
|
10
|
+
}
|
|
11
|
+
ezChangeListener(evt) {
|
|
12
|
+
this.value = evt.detail;
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
if (!this.config) {
|
|
16
|
+
return undefined;
|
|
17
|
+
}
|
|
18
|
+
return (index.h("ez-text-input", { label: this.config.label, value: this.config.value }));
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
exports.snk_filter_text = SnkFilterText;
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const index$1 = require('./index-02201bc9.js');
|
|
7
|
+
const taskbarProcessor = require('./taskbar-processor-6bd0d35c.js');
|
|
8
|
+
|
|
9
|
+
const snkFormCss = ".sc-snk-form-h{display:block}.snk-form.sc-snk-form{position:relative;padding:var(--space--large);padding-top:var(--space--medium)}.snk-form__header.sc-snk-form{position:relative;padding-top:var(--space--medium);padding-bottom:var(--space--medium);margin-bottom:var(--space--medium)}.snk-form__header--fixed.sc-snk-form{position:sticky;top:0;background:var(--background--body);z-index:var(--more-visible, 2);padding-left:var(--space--large);padding-right:var(--space--large);margin-left:calc(var(--space--large) * -1);margin-right:calc(var(--space--large) * -1);width:calc(100% + (var(--space--large) * 2))}";
|
|
10
|
+
|
|
11
|
+
const SnkForm = class {
|
|
12
|
+
constructor(hostRef) {
|
|
13
|
+
index.registerInstance(this, hostRef);
|
|
14
|
+
this.exit = index.createEvent(this, "exit", 7);
|
|
15
|
+
this.actionClick = index.createEvent(this, "actionClick", 7);
|
|
16
|
+
this._taskbarProcessor = new taskbarProcessor.TaskbarProcessor({
|
|
17
|
+
"snkForm.regular": ["PREVIOUS", "NEXT", "DIVIDER", "CLONE", "REMOVE", "MORE_OPTIONS", "DIVIDER", "GRID_MODE", "INSERT"],
|
|
18
|
+
"snkForm.finish_edition": ["CANCEL", "SAVE"]
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
getFormConfig() {
|
|
22
|
+
return (this._dataState && this._dataState.insertionMode ? this._insertionFormConfig : this._editionFormConfig);
|
|
23
|
+
}
|
|
24
|
+
getInsertionHiddenFields(formConfig) {
|
|
25
|
+
const hiddenFields = [];
|
|
26
|
+
formConfig === null || formConfig === void 0 ? void 0 : formConfig.forEach(cfg => {
|
|
27
|
+
const def = this._dataUnit.getField(cfg.name);
|
|
28
|
+
if (def === null || def === void 0 ? void 0 : def.readOnly) {
|
|
29
|
+
hiddenFields.push(cfg.name);
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
return hiddenFields;
|
|
33
|
+
}
|
|
34
|
+
exitForm() {
|
|
35
|
+
if (this._dataUnit.isDirty()) {
|
|
36
|
+
this._dataUnit.cancelEdition({ after: () => this.exit.emit() });
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
this.exit.emit();
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
getDisabledButtons() {
|
|
43
|
+
const disabled = [];
|
|
44
|
+
if (!this._dataState.hasPrevious) {
|
|
45
|
+
disabled.push("PREVIOUS");
|
|
46
|
+
}
|
|
47
|
+
if (!this._dataState.hasNext) {
|
|
48
|
+
disabled.push("NEXT");
|
|
49
|
+
}
|
|
50
|
+
return disabled;
|
|
51
|
+
}
|
|
52
|
+
loadInsertionConfig() {
|
|
53
|
+
if (this._dataUnit && this._configLoaded) {
|
|
54
|
+
this._insertionFormConfig = this._editionFormConfig.filter(fieldCfg => {
|
|
55
|
+
const def = this._dataUnit.getField(fieldCfg.name);
|
|
56
|
+
if (def === null || def === void 0 ? void 0 : def.readOnly) {
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
return true;
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Conforme mecanismo de mensagens, é possível customizar as mensagens dos blocos de construção
|
|
65
|
+
* através de um pequeno modulo na estrutura da aplicação:
|
|
66
|
+
* - Criar um arquivo no seguinte caminho: /messages/appmessages.msg.js.
|
|
67
|
+
* Para conhecer os detalhes do módulo, vide o arquivo neste projeto "/src/lib/message/resources/snk-form.msg.ts"
|
|
68
|
+
*/
|
|
69
|
+
getMessage(key) {
|
|
70
|
+
return this._application.messagesBuilder.getMessage(key, this.getMessageParams());
|
|
71
|
+
}
|
|
72
|
+
getMessageParams() {
|
|
73
|
+
var _a;
|
|
74
|
+
return ((_a = this._dataState) === null || _a === void 0 ? void 0 : _a.selectedRecords) ? this._dataState.selectedRecords[0] : undefined;
|
|
75
|
+
}
|
|
76
|
+
componentWillLoad() {
|
|
77
|
+
this._application = index$1.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
78
|
+
if (this._application) {
|
|
79
|
+
this._application.loadFormConfig(this.configName).then(cfg => {
|
|
80
|
+
this._configLoaded = true;
|
|
81
|
+
this._editionFormConfig = cfg;
|
|
82
|
+
this.loadInsertionConfig();
|
|
83
|
+
});
|
|
84
|
+
//Forçamos a carga dos acessos pra aproveitar a request inicial.
|
|
85
|
+
this._application.getAllAccess();
|
|
86
|
+
}
|
|
87
|
+
let parent = this._element.parentElement;
|
|
88
|
+
while (parent) {
|
|
89
|
+
if (parent.tagName.toUpperCase() === "SNK-DATA-UNIT") {
|
|
90
|
+
this._snkDataUnit = parent;
|
|
91
|
+
this._dataUnit = this._snkDataUnit.dataUnit;
|
|
92
|
+
this._dataState = this._snkDataUnit.dataState;
|
|
93
|
+
if (this._dataUnit) {
|
|
94
|
+
this.loadInsertionConfig();
|
|
95
|
+
}
|
|
96
|
+
else {
|
|
97
|
+
this._snkDataUnit.addEventListener("dataUnitReady", (evt) => {
|
|
98
|
+
this._dataUnit = evt.detail;
|
|
99
|
+
this.loadInsertionConfig();
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
this._snkDataUnit.addEventListener("dataStateChange", (evt) => {
|
|
103
|
+
this._dataState = evt.detail;
|
|
104
|
+
});
|
|
105
|
+
break;
|
|
106
|
+
}
|
|
107
|
+
parent = parent.parentElement;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
componentWillRender() {
|
|
111
|
+
var _a;
|
|
112
|
+
const taskbarId = ((_a = this._dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "snkForm.finish_edition" : "snkForm.regular";
|
|
113
|
+
const disabledButtons = [];
|
|
114
|
+
if (!this._dataState || !this._dataState.hasPrevious) {
|
|
115
|
+
disabledButtons.push("PREVIOUS");
|
|
116
|
+
}
|
|
117
|
+
if (!this._dataState || !this._dataState.hasNext) {
|
|
118
|
+
disabledButtons.push("NEXT");
|
|
119
|
+
}
|
|
120
|
+
this._taskbarProcessor.process(taskbarId, this.taskbarManager, this._dataState, disabledButtons);
|
|
121
|
+
}
|
|
122
|
+
render() {
|
|
123
|
+
var _a;
|
|
124
|
+
if (!this._configLoaded || !this._dataUnit || !this._dataState) {
|
|
125
|
+
return undefined;
|
|
126
|
+
}
|
|
127
|
+
return (index.h("section", { class: "snk-form" }, index.h("div", { class: "snk-form__header snk-form__header--fixed ez-row" }, index.h("div", { class: "ez-col ez-col--sd-6 ez-col--tb-6", key: "formHeader" }, index.h("ez-button", { title: this.getMessage("snkForm.goBackTitle"), mode: "icon", iconName: "arrow_back", class: "ez-padding-right--medium", size: "small", onClick: () => this.exitForm() }), index.h("h1", { class: "ez-title ez-title--primary ez-title--xlarge ez-align--middle" }, this.getMessage("snkForm.title"))), index.h("div", { class: "ez-col ez-col--sd-6 ez-col--tb-6 ez-align--right" }, index.h("snk-taskbar", { key: "formTaskbar", buttons: this._taskbarProcessor.buttons, disabledButtons: this._taskbarProcessor.disabledButtons, customButtons: this._taskbarProcessor.customButtons, actionsList: this.actionsList, primaryButton: ((_a = this._dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "SAVE" : "INSERT", dataUnit: this._dataUnit }))), index.h("section", null, index.h("div", { class: "ez-row" }, index.h("div", { class: "ez-col ez-col--sd-12" }, index.h("ez-form", { key: "ezForm" + this._snkDataUnit.entityName, dataUnit: this._dataUnit, config: this.getFormConfig(), recordsValidator: this.recordsValidator }))))));
|
|
128
|
+
}
|
|
129
|
+
get _element() { return index.getElement(this); }
|
|
130
|
+
};
|
|
131
|
+
SnkForm.style = snkFormCss;
|
|
132
|
+
|
|
133
|
+
exports.snk_form = SnkForm;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-b0b676c5.js');
|
|
6
|
+
const index$1 = require('./index-02201bc9.js');
|
|
7
|
+
const taskbarElements = require('./taskbar-elements-283c737e.js');
|
|
8
|
+
const taskbarProcessor = require('./taskbar-processor-6bd0d35c.js');
|
|
9
|
+
|
|
10
|
+
const snkGridCss = ".snk-grid__container.sc-snk-grid{display:flex;height:100%;width:100%}.snk-grid__header.sc-snk-grid{display:flex;flex-wrap:nowrap;width:100%}.snk-grid__filter-bar.sc-snk-grid{width:100%}.snk-grid__header-divider.sc-snk-grid{margin-bottom:var(--space--small)}";
|
|
11
|
+
|
|
12
|
+
const SnkGrid = class {
|
|
13
|
+
constructor(hostRef) {
|
|
14
|
+
index.registerInstance(this, hostRef);
|
|
15
|
+
this.actionClick = index.createEvent(this, "actionClick", 7);
|
|
16
|
+
this.gridDoubleClick = index.createEvent(this, "gridDoubleClick", 7);
|
|
17
|
+
this._topTaskbarProcessor = new taskbarProcessor.TaskbarProcessor({
|
|
18
|
+
"snkGridTopTaskbar": ["FORM_MODE", "CONFIG_GRID", "INSERT"]
|
|
19
|
+
});
|
|
20
|
+
this._headerTaskbarProcessor = new taskbarProcessor.TaskbarProcessor({
|
|
21
|
+
"snkGridHeaderTaskbar.unselected": ["REFRESH"],
|
|
22
|
+
"snkGridHeaderTaskbar.selected": ["UPDATE", "CLONE", "REMOVE", "MORE_OPTIONS", "DIVIDER", "REFRESH"]
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
actionClickHandler(evt) {
|
|
26
|
+
if (evt.detail === taskbarElements.TaskbarElement.CONFIG_GRID && this._grid) {
|
|
27
|
+
this._grid.openGridConfig();
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
saveConfig(config) {
|
|
31
|
+
const snkApplication = index$1.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
32
|
+
if (snkApplication) {
|
|
33
|
+
snkApplication.saveGridConfig(config);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
componentWillLoad() {
|
|
37
|
+
const snkApplication = index$1.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
38
|
+
if (snkApplication) {
|
|
39
|
+
snkApplication.loadGridConfig(this.configName).then(cfg => {
|
|
40
|
+
this._gridConfig = cfg;
|
|
41
|
+
this._configLoaded = true;
|
|
42
|
+
});
|
|
43
|
+
//Forçamos a carga dos acessos pra aproveitar a request inicial.
|
|
44
|
+
snkApplication.getAllAccess();
|
|
45
|
+
}
|
|
46
|
+
let parent = this._element.parentElement;
|
|
47
|
+
while (parent) {
|
|
48
|
+
if (parent.tagName.toUpperCase() === "SNK-DATA-UNIT") {
|
|
49
|
+
this._snkDataUnit = parent;
|
|
50
|
+
this._dataUnit = this._snkDataUnit.dataUnit;
|
|
51
|
+
if (!this._dataUnit) {
|
|
52
|
+
this._snkDataUnit.addEventListener("dataUnitReady", (evt) => {
|
|
53
|
+
this._dataUnit = evt.detail;
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
this._snkDataUnit.addEventListener("dataStateChange", (evt) => {
|
|
57
|
+
this._dataState = evt.detail;
|
|
58
|
+
});
|
|
59
|
+
break;
|
|
60
|
+
}
|
|
61
|
+
parent = parent.parentElement;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
componentWillRender() {
|
|
65
|
+
const headerTaskbarId = this._dataState && this._dataState.selectedRecords.length > 0 ? "snkGridHeaderTaskbar.selected" : "snkGridHeaderTaskbar.unselected";
|
|
66
|
+
this._headerTaskbarProcessor.process(headerTaskbarId, this.taskbarManager, this._dataState);
|
|
67
|
+
this._topTaskbarProcessor.process("snkGridTopTaskbar", this.taskbarManager, this._dataState);
|
|
68
|
+
}
|
|
69
|
+
render() {
|
|
70
|
+
if (!this._configLoaded || !this._dataUnit) {
|
|
71
|
+
return undefined;
|
|
72
|
+
}
|
|
73
|
+
return (index.h("div", { class: "snk-grid__container ez-flex ez-flex--column ez-flex-item--auto ez-padding--large" }, index.h("div", { class: "snk-grid__header ez-padding-bottom--medium ez-margin-bottom--medium" }, index.h("snk-filter-bar", { dataUnit: this._dataUnit, class: "snk-grid__filter-bar ez-align--top", configName: this.configName }), index.h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" }), index.h("snk-taskbar", { class: "ez-padding-left--medium", onActionClick: evt => this.actionClickHandler(evt), key: "topTaskbar", dataUnit: this._dataUnit, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: "INSERT" })), index.h("ez-grid", { ref: ref => this._grid = ref, dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: evt => { this.saveConfig(evt.detail); }, onEzDoubleClick: () => this.gridDoubleClick.emit(), statusResolver: this.statusResolver }, index.h("snk-taskbar", { dataUnit: this._dataUnit, buttons: this._headerTaskbarProcessor.buttons, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.actionsList })), index.h("div", { class: "ez-col ez-col--sd-12" }, index.h("slot", { name: "SnkGridFooter" }))));
|
|
74
|
+
}
|
|
75
|
+
get _element() { return index.getElement(this); }
|
|
76
|
+
};
|
|
77
|
+
SnkGrid.style = snkGridCss;
|
|
78
|
+
|
|
79
|
+
exports.snk_grid = SnkGrid;
|