@sankhyalabs/sankhyablocks 2.6.0 → 2.8.0
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/AuthorizationConfig-79ffae4b.js +7 -0
- package/dist/cjs/{SnkMessageBuilder-09b25b0a.js → SnkMessageBuilder-248b5105.js} +7 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/snk-application.cjs.entry.js +24 -2
- package/dist/cjs/snk-configurator_3.cjs.entry.js +6 -38
- package/dist/cjs/{snk-data-exporter_9.cjs.entry.js → snk-data-exporter_8.cjs.entry.js} +83 -155
- package/dist/cjs/snk-data-unit.cjs.entry.js +1 -1
- package/dist/cjs/snk-exporter-email-sender.cjs.entry.js +129 -0
- package/dist/collection/components/snk-application/snk-application.js +30 -0
- package/dist/collection/components/snk-data-exporter/exporter-email-sender/email-info-step.js +3 -2
- package/dist/collection/components/snk-data-exporter/exporter-email-sender/options-step.js +1 -1
- package/dist/collection/components/snk-data-exporter/exporter-email-sender/snk-exporter-email-sender.js +29 -6
- package/dist/collection/components/snk-data-exporter/snk-data-exporter.js +49 -31
- package/dist/collection/components/snk-grid/snk-grid.js +1 -43
- package/dist/collection/lib/http/data-fetcher/fetchers/dataunit-fetcher.js +9 -1
- package/dist/collection/lib/http/data-fetcher/fetchers/fetchDataExporter/permission-export-pdf.js +7 -0
- package/dist/collection/lib/message/resources/snk-data-exporter.msg.js +7 -0
- package/dist/components/SnkMessageBuilder.js +7 -0
- package/dist/components/snk-application2.js +25 -2
- package/dist/components/snk-data-exporter2.js +58 -17
- package/dist/components/snk-exporter-email-sender2.js +18 -13
- package/dist/components/snk-form2.js +10 -4
- package/dist/components/snk-grid2.js +3 -35
- package/dist/components/snk-taskbar2.js +8 -2
- package/dist/esm/AuthorizationConfig-dcbd207a.js +7 -0
- package/dist/esm/{SnkMessageBuilder-47db5d75.js → SnkMessageBuilder-4a060599.js} +7 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/snk-application.entry.js +24 -2
- package/dist/esm/snk-configurator_3.entry.js +2 -34
- package/dist/esm/{snk-data-exporter_9.entry.js → snk-data-exporter_8.entry.js} +64 -135
- package/dist/esm/snk-data-unit.entry.js +1 -1
- package/dist/esm/snk-exporter-email-sender.entry.js +125 -0
- package/dist/sankhyablocks/{p-d96bf6a7.entry.js → p-3480f2fa.entry.js} +1 -1
- package/dist/sankhyablocks/{p-02d430a7.entry.js → p-43eff4d3.entry.js} +12 -5
- package/dist/sankhyablocks/p-48d7ba04.entry.js +1 -0
- package/dist/sankhyablocks/p-97347faf.entry.js +1 -0
- package/dist/sankhyablocks/p-dc36cfbf.js +1 -0
- package/dist/sankhyablocks/p-f5246cd6.entry.js +1 -0
- package/dist/sankhyablocks/{p-1d7a0daf.js → p-f624979d.js} +1 -1
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-application/snk-application.d.ts +4 -0
- package/dist/types/components/snk-data-exporter/data/export-config.d.ts +1 -1
- package/dist/types/components/snk-data-exporter/exporter-email-sender/email-info-step.d.ts +2 -2
- package/dist/types/components/snk-data-exporter/snk-data-exporter.d.ts +5 -5
- package/dist/types/components.d.ts +5 -8
- package/dist/types/lib/http/data-fetcher/fetchers/fetchDataExporter/interfaces/IFetchDataExporterParams.d.ts +5 -1
- package/dist/types/lib/http/data-fetcher/fetchers/fetchDataExporter/permission-export-pdf.d.ts +1 -0
- package/package.json +2 -2
- package/dist/cjs/data-exporter-option-417da37a.js +0 -19
- package/dist/esm/data-exporter-option-006307dd.js +0 -19
- package/dist/sankhyablocks/p-04581d0c.entry.js +0 -1
- package/dist/sankhyablocks/p-50c8bcb7.entry.js +0 -1
- package/dist/sankhyablocks/p-719e570a.js +0 -1
|
@@ -3,8 +3,8 @@ import { ApplicationContext, ElementIDUtils, DataType } from '@sankhyalabs/core'
|
|
|
3
3
|
import { UserInterface } from '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
|
4
4
|
import { T as TaskbarProcessor } from './taskbar-processor.js';
|
|
5
5
|
import { C as ConfigStorage } from './ConfigStorage.js';
|
|
6
|
-
import { D as DataExporterOption, d as defineCustomElement$a } from './snk-data-exporter2.js';
|
|
7
6
|
import { s as store, d as defineCustomElement$1 } from './snk-taskbar2.js';
|
|
7
|
+
import { d as defineCustomElement$a } from './snk-data-exporter2.js';
|
|
8
8
|
import { d as defineCustomElement$9 } from './snk-exporter-email-sender2.js';
|
|
9
9
|
import { d as defineCustomElement$8 } from './snk-filter-bar2.js';
|
|
10
10
|
import { d as defineCustomElement$7 } from './snk-filter-detail2.js';
|
|
@@ -59,38 +59,6 @@ const SnkGrid = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
|
59
59
|
async setConfig(config) {
|
|
60
60
|
this.setGridConfig(config);
|
|
61
61
|
}
|
|
62
|
-
ezClickDataExporterHandler(event) {
|
|
63
|
-
var _a;
|
|
64
|
-
if (((_a = event === null || event === void 0 ? void 0 : event.detail) === null || _a === void 0 ? void 0 : _a.id) === DataExporterOption.EXPORT_BY_EMAIL) {
|
|
65
|
-
// TODO: Quando o exportador de grades for implementado, essa ação
|
|
66
|
-
// vai fazer mostrar as opções disponíveis. Enviar por email será
|
|
67
|
-
// apenas mais uma
|
|
68
|
-
const selectedRows = this._dataState.selectedRecords.length;
|
|
69
|
-
const config = {
|
|
70
|
-
format: "pdf",
|
|
71
|
-
type: selectedRows > 0 ? "selection" : "all",
|
|
72
|
-
selectedRows,
|
|
73
|
-
email: {
|
|
74
|
-
attachments: [
|
|
75
|
-
{ name: "Movimentação Financeira.pdf", size: 1024 * 231 }
|
|
76
|
-
]
|
|
77
|
-
}
|
|
78
|
-
};
|
|
79
|
-
this._snkEmailSender.open(config)
|
|
80
|
-
.then((result) => {
|
|
81
|
-
this._application.message("resultado", JSON.stringify(result));
|
|
82
|
-
});
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
/**
|
|
86
|
-
* Conforme mecanismo de mensagens, é possível customizar as mensagens dos blocos de construção
|
|
87
|
-
* através de um pequeno modulo na estrutura da aplicação:
|
|
88
|
-
* - Criar um arquivo no seguinte caminho: /messages/appmessages.msg.js.
|
|
89
|
-
* Para conhecer os detalhes do módulo, vide o arquivo neste projeto "/src/lib/message/resources/snk-grid.msg.ts"
|
|
90
|
-
*/
|
|
91
|
-
getMessage(key, params) {
|
|
92
|
-
return this._application.messagesBuilder.getMessage(key, params);
|
|
93
|
-
}
|
|
94
62
|
openGridConfig() {
|
|
95
63
|
this._grid.getColumnsState()
|
|
96
64
|
.then((gridColumns) => {
|
|
@@ -225,7 +193,7 @@ const SnkGrid = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
|
225
193
|
if (!this._dataUnit) {
|
|
226
194
|
return undefined;
|
|
227
195
|
}
|
|
228
|
-
return (h("div", { class: "snk-grid__container ez-flex ez-flex--column ez-flex-item--auto ez-padding--large" }, h("div", { class: "snk-grid__header ez-margin-bottom--medium" }, h("snk-filter-bar", { dataUnit: this._dataUnit, "data-element-id": "gridFilter", class: "snk-grid__filter-bar ez-align--top", configName: this.configName }), h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" }), h("snk-taskbar", { class: "ez-padding-left--medium", "data-element-id": "grid_top", key: "topTaskbar", configName: this.configName, dataUnit: this._dataUnit, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: "INSERT" })), h("ez-grid", { ref: ref => this._grid = ref, "data-element-id": "embedded", dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: (evt) => { this.saveConfig(evt.detail); }, onEzDoubleClick: () => this.gridDoubleClick.emit(), statusResolver: this.statusResolver, multipleSelection: this.multipleSelection }, h("snk-taskbar", { dataUnit: this._dataUnit, configName: this.configName, "data-element-id": "grid_left", buttons: this._headerTaskbarProcessor.buttons, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.actionsList })), h("div", { class: "ez-col ez-col--sd-12" }, h("slot", { name: "SnkGridFooter" })), h("
|
|
196
|
+
return (h("div", { class: "snk-grid__container ez-flex ez-flex--column ez-flex-item--auto ez-padding--large" }, h("div", { class: "snk-grid__header ez-margin-bottom--medium" }, h("snk-filter-bar", { dataUnit: this._dataUnit, "data-element-id": "gridFilter", class: "snk-grid__filter-bar ez-align--top", configName: this.configName }), h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" }), h("snk-taskbar", { class: "ez-padding-left--medium", "data-element-id": "grid_top", key: "topTaskbar", configName: this.configName, dataUnit: this._dataUnit, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: "INSERT" })), h("ez-grid", { ref: ref => this._grid = ref, "data-element-id": "embedded", dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: (evt) => { this.saveConfig(evt.detail); }, onEzDoubleClick: () => this.gridDoubleClick.emit(), statusResolver: this.statusResolver, multipleSelection: this.multipleSelection }, h("snk-taskbar", { dataUnit: this._dataUnit, configName: this.configName, "data-element-id": "grid_left", buttons: this._headerTaskbarProcessor.buttons, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.actionsList })), h("div", { class: "ez-col ez-col--sd-12" }, h("slot", { name: "SnkGridFooter" })), h("ez-modal", { modalSize: "small", closeEsc: false, closeOutsideClick: false, opened: this._popUpGridConfig, onEzCloseModal: () => this.closeGridConfig() }, h("snk-grid-config", { ref: ref => this._snkGridConfig = ref, config: this._gridConfig, "data-element-id": this._element.getAttribute(ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME), application: this._application, selectedIndex: 0, onConfigChange: (evt) => this.changeConfig(evt.detail), onConfigCancel: () => this.closeGridConfig() }))));
|
|
229
197
|
}
|
|
230
198
|
get _element() { return this; }
|
|
231
199
|
static get style() { return snkGridCss; }
|
|
@@ -243,7 +211,7 @@ const SnkGrid = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
|
243
211
|
"showConfig": [64],
|
|
244
212
|
"hideConfig": [64],
|
|
245
213
|
"setConfig": [64]
|
|
246
|
-
}
|
|
214
|
+
}]);
|
|
247
215
|
function defineCustomElement() {
|
|
248
216
|
if (typeof customElements === "undefined") {
|
|
249
217
|
return;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { getRenderingRef, forceUpdate, h, proxyCustomElement, HTMLElement, createEvent, Host } from '@stencil/core/internal/client';
|
|
2
2
|
import { StringUtils, ApplicationContext, ElementIDUtils } from '@sankhyalabs/core';
|
|
3
3
|
import { A as AuthorizationConfig } from './AuthorizationConfig.js';
|
|
4
|
-
import { d as defineCustomElement$
|
|
4
|
+
import { d as defineCustomElement$2 } from './snk-data-exporter2.js';
|
|
5
|
+
import { d as defineCustomElement$1 } from './snk-exporter-email-sender2.js';
|
|
5
6
|
|
|
6
7
|
const appendToMap = (map, propName, value) => {
|
|
7
8
|
const items = map.get(propName);
|
|
@@ -497,7 +498,7 @@ function defineCustomElement() {
|
|
|
497
498
|
if (typeof customElements === "undefined") {
|
|
498
499
|
return;
|
|
499
500
|
}
|
|
500
|
-
const components = ["snk-taskbar", "snk-data-exporter"];
|
|
501
|
+
const components = ["snk-taskbar", "snk-data-exporter", "snk-exporter-email-sender"];
|
|
501
502
|
components.forEach(tagName => { switch (tagName) {
|
|
502
503
|
case "snk-taskbar":
|
|
503
504
|
if (!customElements.get(tagName)) {
|
|
@@ -505,6 +506,11 @@ function defineCustomElement() {
|
|
|
505
506
|
}
|
|
506
507
|
break;
|
|
507
508
|
case "snk-data-exporter":
|
|
509
|
+
if (!customElements.get(tagName)) {
|
|
510
|
+
defineCustomElement$2();
|
|
511
|
+
}
|
|
512
|
+
break;
|
|
513
|
+
case "snk-exporter-email-sender":
|
|
508
514
|
if (!customElements.get(tagName)) {
|
|
509
515
|
defineCustomElement$1();
|
|
510
516
|
}
|
|
@@ -220,6 +220,13 @@ const snkDataExporterMessages = {
|
|
|
220
220
|
spreadsheet: "Planilha",
|
|
221
221
|
cube: "Cubo",
|
|
222
222
|
sendByEmail: "Enviar por email",
|
|
223
|
+
},
|
|
224
|
+
message: {
|
|
225
|
+
emailSuccess: "E-mail enviado com sucesso",
|
|
226
|
+
exportError: "Erro ao realizar a exportação",
|
|
227
|
+
},
|
|
228
|
+
title: {
|
|
229
|
+
error: "Erro",
|
|
223
230
|
}
|
|
224
231
|
};
|
|
225
232
|
|
package/dist/esm/loader.js
CHANGED
|
@@ -10,7 +10,7 @@ const patchEsm = () => {
|
|
|
10
10
|
const defineCustomElements = (win, options) => {
|
|
11
11
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
12
12
|
return patchEsm().then(() => {
|
|
13
|
-
return bootstrapLazy([["teste-pesquisa",[[1,"teste-pesquisa"]]],["snk-data-unit",[[2,"snk-data-unit",{"dataState":[1040],"dataUnitName":[1,"data-unit-name"],"entityName":[1,"entity-name"],"pageSize":[2,"page-size"],"dataUnit":[1040],"beforeSave":[16],"afterSave":[16],"getDataUnit":[64]}]]],["snk-filter-binary-select",[[0,"snk-filter-binary-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-multi-select",[[0,"snk-filter-multi-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-number",[[0,"snk-filter-number",{"config":[16],"value":[2],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-period",[[0,"snk-filter-period",{"config":[16],"value":[8],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-personalized",[[0,"snk-filter-personalized",{"config":[16],"value":[1040],"fix":[16],"unfix":[16],"show":[64]}]]],["snk-filter-search",[[0,"snk-filter-search",{"config":[16],"value":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-text",[[0,"snk-filter-text",{"config":[16],"value":[1]},[[0,"ezChange","ezChangeListener"]]]]],["snk-pesquisa",[[2,"snk-pesquisa",{"searchLoader":[16],"selectItem":[16],"argument":[1025],"_itemList":[32],"_startLoading":[32]}]]],["snk-config-options",[[2,"snk-config-options",{"fieldConfig":[16],"idConfig":[513,"id-config"],"dataUnit":[16],"_defaultType":[32]}]]],["snk-tab-config",[[6,"snk-tab-config",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"_activeEditText":[32],"_activeEditTextIndex":[32],"_actionsHide":[32],"_actionsShow":[32]}]]],["snk-filter-detail",[[0,"snk-filter-detail",{"config":[1040],"getMessage":[16],"show":[64]}]]],["snk-configurator_3",[[6,"snk-grid",{"configName":[1,"config-name"],"actionsList":[16],"taskbarManager":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"enableDataExporter":[4,"enable-data-exporter"],"_dataUnit":[32],"_dataState":[32],"_gridConfig":[32],"_popUpGridConfig":[32],"showConfig":[64],"hideConfig":[64],"setConfig":[64]}
|
|
13
|
+
return bootstrapLazy([["teste-pesquisa",[[1,"teste-pesquisa"]]],["snk-data-unit",[[2,"snk-data-unit",{"dataState":[1040],"dataUnitName":[1,"data-unit-name"],"entityName":[1,"entity-name"],"pageSize":[2,"page-size"],"dataUnit":[1040],"beforeSave":[16],"afterSave":[16],"getDataUnit":[64]}]]],["snk-filter-binary-select",[[0,"snk-filter-binary-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-multi-select",[[0,"snk-filter-multi-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-number",[[0,"snk-filter-number",{"config":[16],"value":[2],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-period",[[0,"snk-filter-period",{"config":[16],"value":[8],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-personalized",[[0,"snk-filter-personalized",{"config":[16],"value":[1040],"fix":[16],"unfix":[16],"show":[64]}]]],["snk-filter-search",[[0,"snk-filter-search",{"config":[16],"value":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-text",[[0,"snk-filter-text",{"config":[16],"value":[1]},[[0,"ezChange","ezChangeListener"]]]]],["snk-pesquisa",[[2,"snk-pesquisa",{"searchLoader":[16],"selectItem":[16],"argument":[1025],"_itemList":[32],"_startLoading":[32]}]]],["snk-config-options",[[2,"snk-config-options",{"fieldConfig":[16],"idConfig":[513,"id-config"],"dataUnit":[16],"_defaultType":[32]}]]],["snk-tab-config",[[6,"snk-tab-config",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"_activeEditText":[32],"_activeEditTextIndex":[32],"_actionsHide":[32],"_actionsShow":[32]}]]],["snk-filter-detail",[[0,"snk-filter-detail",{"config":[1040],"getMessage":[16],"show":[64]}]]],["snk-configurator_3",[[6,"snk-grid",{"configName":[1,"config-name"],"actionsList":[16],"taskbarManager":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"enableDataExporter":[4,"enable-data-exporter"],"_dataUnit":[32],"_dataState":[32],"_gridConfig":[32],"_popUpGridConfig":[32],"showConfig":[64],"hideConfig":[64],"setConfig":[64]}],[2,"snk-configurator",{"configName":[1,"config-name"],"viewMode":[1,"view-mode"],"_opened":[32],"_permissions":[32],"open":[64],"close":[64]}],[2,"snk-field-config",{"isConfigActive":[16],"fieldConfig":[16],"modeInsertion":[516,"mode-insertion"],"dataUnit":[16]}]]],["snk-form-config",[[2,"snk-form-config",{"dataUnit":[16],"formConfig":[16],"configName":[513,"config-name"],"_formConfigOptions":[32],"_fieldConfigSelected":[32],"_layoutFormConfig":[32],"_fieldsAvailable":[32],"_formConfig":[32],"_formConfigChanged":[32],"_optionFormConfigSelected":[32],"_optionFormConfigChanged":[32],"_tempGroups":[32]}]]],["snk-exporter-email-sender",[[0,"snk-exporter-email-sender",{"getMessage":[16],"_config":[32],"_opened":[32],"_currentStep":[32],"open":[64],"close":[64]}]]],["snk-data-exporter_8",[[2,"snk-filter-bar",{"dataUnit":[1040],"configName":[1,"config-name"],"filterConfig":[1040],"allowDefault":[32],"scrollerLocked":[32]},[[0,"filterChange","filterChangeListener"]]],[2,"snk-grid-config",{"selectedIndex":[1026,"selected-index"],"application":[16],"columns":[1040],"config":[1040],"saveConfig":[64]}],[6,"snk-taskbar",{"configName":[1,"config-name"],"buttons":[1],"customButtons":[16],"actionsList":[16],"primaryButton":[1,"primary-button"],"disabledButtons":[16],"dataUnit":[16],"_permissions":[32]}],[0,"snk-filter-item",{"config":[1040],"getMessage":[16],"detailIsVisible":[32],"showUp":[64],"hideDetail":[64]},[[2,"click","clickListener"],[2,"mousedown","mouseDownListener"],[0,"filterChange","filterChangeListener"]]],[4,"snk-filter-list",{"label":[1],"iconName":[1,"icon-name"],"items":[16],"getMessage":[16],"emptyText":[1,"empty-text"],"findFilterText":[1,"find-filter-text"],"buttonClass":[1,"button-class"],"_filterArgument":[32],"_showAll":[32],"hideDetail":[64]},[[2,"keydown","keyDownHandler"]]],[0,"snk-filter-modal",{"getMessage":[16],"items":[1040],"modalTitle":[1,"modal-title"],"modalSubTitle":[1,"modal-sub-title"],"cancelButtonLabel":[1,"cancel-button-label"],"okButtonLabel":[1,"ok-button-label"],"infoText":[1,"info-text"],"useSearch":[4,"use-search"],"processModalAction":[16],"_filterArgument":[32]}],[1,"snk-select-box",{"selectedOption":[1,"selected-option"]}],[2,"snk-data-exporter",{"provider":[16],"_showDropdown":[32],"_releasedToExport":[32]}]]],["snk-form",[[2,"snk-form",{"configName":[1,"config-name"],"recordsValidator":[16],"actionsList":[16],"taskbarManager":[16],"_dataUnit":[32],"_dataState":[32],"_editionFormConfig":[32],"_insertionFormConfig":[32],"_showFormConfig":[32],"showConfig":[64],"hideConfig":[64]}]]],["snk-crud",[[6,"snk-crud",{"configName":[1025,"config-name"],"actionsList":[16],"taskbarManager":[16],"recordsValidator":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"enableDataExporter":[4,"enable-data-exporter"],"_dataUnit":[32],"_dataState":[32],"_viewMode":[32],"goToView":[64]}]]],["snk-application",[[2,"snk-application",{"messagesBuilder":[1040],"configName":[1,"config-name"],"isUserSup":[64],"hasAccess":[64],"getAllAccess":[64],"getStringParam":[64],"getIntParam":[64],"getFloatParam":[64],"getBooleanParam":[64],"getDateParam":[64],"showPopUp":[64],"showModal":[64],"closeModal":[64],"closePopUp":[64],"temOpcional":[64],"getConfig":[64],"saveConfig":[64],"getAttributeFromHTMLWrapper":[64],"openApp":[64],"createDataunit":[64],"getDataUnit":[64],"getResourceID":[64],"getUserID":[64],"alert":[64],"error":[64],"success":[64],"message":[64],"confirm":[64],"info":[64],"loadFormConfig":[64],"loadGridConfig":[64],"fetchUserAvailableConfigs":[64],"fetchLegacyConfig":[64],"fetchDefaultConfig":[64],"loadTotals":[64],"saveGridConfig":[64],"getFilterBarConfig":[64],"saveFilterBarConfig":[64],"saveFormConfig":[64],"getDefaultValues":[64],"getDefaultValue":[64],"executeSearch":[64],"executePreparedSearch":[64],"isDebugMode":[64],"getAppLabel":[64]}]]]], options);
|
|
14
14
|
});
|
|
15
15
|
};
|
|
16
16
|
|
|
@@ -13,5 +13,5 @@ const patchBrowser = () => {
|
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
patchBrowser().then(options => {
|
|
16
|
-
return bootstrapLazy([["teste-pesquisa",[[1,"teste-pesquisa"]]],["snk-data-unit",[[2,"snk-data-unit",{"dataState":[1040],"dataUnitName":[1,"data-unit-name"],"entityName":[1,"entity-name"],"pageSize":[2,"page-size"],"dataUnit":[1040],"beforeSave":[16],"afterSave":[16],"getDataUnit":[64]}]]],["snk-filter-binary-select",[[0,"snk-filter-binary-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-multi-select",[[0,"snk-filter-multi-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-number",[[0,"snk-filter-number",{"config":[16],"value":[2],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-period",[[0,"snk-filter-period",{"config":[16],"value":[8],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-personalized",[[0,"snk-filter-personalized",{"config":[16],"value":[1040],"fix":[16],"unfix":[16],"show":[64]}]]],["snk-filter-search",[[0,"snk-filter-search",{"config":[16],"value":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-text",[[0,"snk-filter-text",{"config":[16],"value":[1]},[[0,"ezChange","ezChangeListener"]]]]],["snk-pesquisa",[[2,"snk-pesquisa",{"searchLoader":[16],"selectItem":[16],"argument":[1025],"_itemList":[32],"_startLoading":[32]}]]],["snk-config-options",[[2,"snk-config-options",{"fieldConfig":[16],"idConfig":[513,"id-config"],"dataUnit":[16],"_defaultType":[32]}]]],["snk-tab-config",[[6,"snk-tab-config",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"_activeEditText":[32],"_activeEditTextIndex":[32],"_actionsHide":[32],"_actionsShow":[32]}]]],["snk-filter-detail",[[0,"snk-filter-detail",{"config":[1040],"getMessage":[16],"show":[64]}]]],["snk-configurator_3",[[6,"snk-grid",{"configName":[1,"config-name"],"actionsList":[16],"taskbarManager":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"enableDataExporter":[4,"enable-data-exporter"],"_dataUnit":[32],"_dataState":[32],"_gridConfig":[32],"_popUpGridConfig":[32],"showConfig":[64],"hideConfig":[64],"setConfig":[64]}
|
|
16
|
+
return bootstrapLazy([["teste-pesquisa",[[1,"teste-pesquisa"]]],["snk-data-unit",[[2,"snk-data-unit",{"dataState":[1040],"dataUnitName":[1,"data-unit-name"],"entityName":[1,"entity-name"],"pageSize":[2,"page-size"],"dataUnit":[1040],"beforeSave":[16],"afterSave":[16],"getDataUnit":[64]}]]],["snk-filter-binary-select",[[0,"snk-filter-binary-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-multi-select",[[0,"snk-filter-multi-select",{"value":[1544],"config":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-number",[[0,"snk-filter-number",{"config":[16],"value":[2],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-period",[[0,"snk-filter-period",{"config":[16],"value":[8],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-personalized",[[0,"snk-filter-personalized",{"config":[16],"value":[1040],"fix":[16],"unfix":[16],"show":[64]}]]],["snk-filter-search",[[0,"snk-filter-search",{"config":[16],"value":[16],"show":[64]},[[0,"ezChange","ezChangeListener"]]]]],["snk-filter-text",[[0,"snk-filter-text",{"config":[16],"value":[1]},[[0,"ezChange","ezChangeListener"]]]]],["snk-pesquisa",[[2,"snk-pesquisa",{"searchLoader":[16],"selectItem":[16],"argument":[1025],"_itemList":[32],"_startLoading":[32]}]]],["snk-config-options",[[2,"snk-config-options",{"fieldConfig":[16],"idConfig":[513,"id-config"],"dataUnit":[16],"_defaultType":[32]}]]],["snk-tab-config",[[6,"snk-tab-config",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"_activeEditText":[32],"_activeEditTextIndex":[32],"_actionsHide":[32],"_actionsShow":[32]}]]],["snk-filter-detail",[[0,"snk-filter-detail",{"config":[1040],"getMessage":[16],"show":[64]}]]],["snk-configurator_3",[[6,"snk-grid",{"configName":[1,"config-name"],"actionsList":[16],"taskbarManager":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"enableDataExporter":[4,"enable-data-exporter"],"_dataUnit":[32],"_dataState":[32],"_gridConfig":[32],"_popUpGridConfig":[32],"showConfig":[64],"hideConfig":[64],"setConfig":[64]}],[2,"snk-configurator",{"configName":[1,"config-name"],"viewMode":[1,"view-mode"],"_opened":[32],"_permissions":[32],"open":[64],"close":[64]}],[2,"snk-field-config",{"isConfigActive":[16],"fieldConfig":[16],"modeInsertion":[516,"mode-insertion"],"dataUnit":[16]}]]],["snk-form-config",[[2,"snk-form-config",{"dataUnit":[16],"formConfig":[16],"configName":[513,"config-name"],"_formConfigOptions":[32],"_fieldConfigSelected":[32],"_layoutFormConfig":[32],"_fieldsAvailable":[32],"_formConfig":[32],"_formConfigChanged":[32],"_optionFormConfigSelected":[32],"_optionFormConfigChanged":[32],"_tempGroups":[32]}]]],["snk-exporter-email-sender",[[0,"snk-exporter-email-sender",{"getMessage":[16],"_config":[32],"_opened":[32],"_currentStep":[32],"open":[64],"close":[64]}]]],["snk-data-exporter_8",[[2,"snk-filter-bar",{"dataUnit":[1040],"configName":[1,"config-name"],"filterConfig":[1040],"allowDefault":[32],"scrollerLocked":[32]},[[0,"filterChange","filterChangeListener"]]],[2,"snk-grid-config",{"selectedIndex":[1026,"selected-index"],"application":[16],"columns":[1040],"config":[1040],"saveConfig":[64]}],[6,"snk-taskbar",{"configName":[1,"config-name"],"buttons":[1],"customButtons":[16],"actionsList":[16],"primaryButton":[1,"primary-button"],"disabledButtons":[16],"dataUnit":[16],"_permissions":[32]}],[0,"snk-filter-item",{"config":[1040],"getMessage":[16],"detailIsVisible":[32],"showUp":[64],"hideDetail":[64]},[[2,"click","clickListener"],[2,"mousedown","mouseDownListener"],[0,"filterChange","filterChangeListener"]]],[4,"snk-filter-list",{"label":[1],"iconName":[1,"icon-name"],"items":[16],"getMessage":[16],"emptyText":[1,"empty-text"],"findFilterText":[1,"find-filter-text"],"buttonClass":[1,"button-class"],"_filterArgument":[32],"_showAll":[32],"hideDetail":[64]},[[2,"keydown","keyDownHandler"]]],[0,"snk-filter-modal",{"getMessage":[16],"items":[1040],"modalTitle":[1,"modal-title"],"modalSubTitle":[1,"modal-sub-title"],"cancelButtonLabel":[1,"cancel-button-label"],"okButtonLabel":[1,"ok-button-label"],"infoText":[1,"info-text"],"useSearch":[4,"use-search"],"processModalAction":[16],"_filterArgument":[32]}],[1,"snk-select-box",{"selectedOption":[1,"selected-option"]}],[2,"snk-data-exporter",{"provider":[16],"_showDropdown":[32],"_releasedToExport":[32]}]]],["snk-form",[[2,"snk-form",{"configName":[1,"config-name"],"recordsValidator":[16],"actionsList":[16],"taskbarManager":[16],"_dataUnit":[32],"_dataState":[32],"_editionFormConfig":[32],"_insertionFormConfig":[32],"_showFormConfig":[32],"showConfig":[64],"hideConfig":[64]}]]],["snk-crud",[[6,"snk-crud",{"configName":[1025,"config-name"],"actionsList":[16],"taskbarManager":[16],"recordsValidator":[16],"statusResolver":[16],"multipleSelection":[4,"multiple-selection"],"enableDataExporter":[4,"enable-data-exporter"],"_dataUnit":[32],"_dataState":[32],"_viewMode":[32],"goToView":[64]}]]],["snk-application",[[2,"snk-application",{"messagesBuilder":[1040],"configName":[1,"config-name"],"isUserSup":[64],"hasAccess":[64],"getAllAccess":[64],"getStringParam":[64],"getIntParam":[64],"getFloatParam":[64],"getBooleanParam":[64],"getDateParam":[64],"showPopUp":[64],"showModal":[64],"closeModal":[64],"closePopUp":[64],"temOpcional":[64],"getConfig":[64],"saveConfig":[64],"getAttributeFromHTMLWrapper":[64],"openApp":[64],"createDataunit":[64],"getDataUnit":[64],"getResourceID":[64],"getUserID":[64],"alert":[64],"error":[64],"success":[64],"message":[64],"confirm":[64],"info":[64],"loadFormConfig":[64],"loadGridConfig":[64],"fetchUserAvailableConfigs":[64],"fetchLegacyConfig":[64],"fetchDefaultConfig":[64],"loadTotals":[64],"saveGridConfig":[64],"getFilterBarConfig":[64],"saveFilterBarConfig":[64],"saveFormConfig":[64],"getDefaultValues":[64],"getDefaultValue":[64],"executeSearch":[64],"executePreparedSearch":[64],"isDebugMode":[64],"getAppLabel":[64]}]]]], options);
|
|
17
17
|
});
|
|
@@ -2,7 +2,7 @@ import { r as registerInstance, c as createEvent, h, g as getElement } from './i
|
|
|
2
2
|
import { WaitingChangeException, WarningException, ErrorException, ObjectUtils, DataType, DataUnit, StringUtils, ChangeOperation, DateUtils, DependencyType, ElementIDUtils, ApplicationContext, ErrorTracking } from '@sankhyalabs/core';
|
|
3
3
|
import { d as dist, D as DataFetcher, R as ResourceFetcher, U as UrlUtils, F as FormConfigFetcher, G as GridConfigFetcher, C as ConfigStorage } from './ConfigStorage-b59461d8.js';
|
|
4
4
|
import { ApplicationUtils } from '@sankhyalabs/ezui/dist/collection/utils';
|
|
5
|
-
import { S as SnkMessageBuilder } from './SnkMessageBuilder-
|
|
5
|
+
import { S as SnkMessageBuilder } from './SnkMessageBuilder-4a060599.js';
|
|
6
6
|
import './_commonjsHelpers-9943807e.js';
|
|
7
7
|
|
|
8
8
|
class SnkErrorHandler {
|
|
@@ -238,6 +238,13 @@ class DataUnitFetcher {
|
|
|
238
238
|
expression
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
|
+
children{
|
|
242
|
+
name
|
|
243
|
+
links{
|
|
244
|
+
source
|
|
245
|
+
target
|
|
246
|
+
}
|
|
247
|
+
}
|
|
241
248
|
}
|
|
242
249
|
}`);
|
|
243
250
|
this.templateByQuery.set("fetchData", dist.gql `query($dataunit: String! $limit: Int $offset:Int $filters: [InputFilter!] $sort: [InputSort!]) {
|
|
@@ -300,7 +307,8 @@ class DataUnitFetcher {
|
|
|
300
307
|
const metadata = {
|
|
301
308
|
name: resp.name,
|
|
302
309
|
label: resp.name,
|
|
303
|
-
|
|
310
|
+
children: [...resp.children],
|
|
311
|
+
fields: []
|
|
304
312
|
};
|
|
305
313
|
(_a = resp.fields) === null || _a === void 0 ? void 0 : _a.forEach((source) => {
|
|
306
314
|
let properties = undefined;
|
|
@@ -1209,6 +1217,20 @@ const SnkApplication = class {
|
|
|
1209
1217
|
accept(window['isDebugMode']);
|
|
1210
1218
|
});
|
|
1211
1219
|
}
|
|
1220
|
+
/**
|
|
1221
|
+
* Obtém o nome das telas da aplicação
|
|
1222
|
+
*/
|
|
1223
|
+
async getAppLabel() {
|
|
1224
|
+
if ((window === null || window === void 0 ? void 0 : window["workspace"]) == undefined) {
|
|
1225
|
+
return;
|
|
1226
|
+
}
|
|
1227
|
+
if (window["workspace"].getAppLabel == undefined) {
|
|
1228
|
+
window["workspace"].getAppLabel = (resourceID) => {
|
|
1229
|
+
return (resourceID || "").split(".").pop();
|
|
1230
|
+
};
|
|
1231
|
+
}
|
|
1232
|
+
return window["workspace"].getAppLabel(this._resourceID);
|
|
1233
|
+
}
|
|
1212
1234
|
clearContent(container) {
|
|
1213
1235
|
if (container) {
|
|
1214
1236
|
Array.from(container.children).forEach(child => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './index-a77b6f35.js';
|
|
2
2
|
import { ApplicationContext, ElementIDUtils, DataType } from '@sankhyalabs/core';
|
|
3
3
|
import { c as VIEW_MODE, A as ACTION_CONFIG } from './constants-babe1a08.js';
|
|
4
|
-
import { A as AuthorizationConfig
|
|
4
|
+
import { A as AuthorizationConfig } from './AuthorizationConfig-dcbd207a.js';
|
|
5
5
|
import { UserInterface } from '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
|
6
6
|
import { T as TaskbarProcessor } from './taskbar-processor-c2a99aba.js';
|
|
7
7
|
import { C as ConfigStorage } from './ConfigStorage-b59461d8.js';
|
|
@@ -197,38 +197,6 @@ const SnkGrid = class {
|
|
|
197
197
|
async setConfig(config) {
|
|
198
198
|
this.setGridConfig(config);
|
|
199
199
|
}
|
|
200
|
-
ezClickDataExporterHandler(event) {
|
|
201
|
-
var _a;
|
|
202
|
-
if (((_a = event === null || event === void 0 ? void 0 : event.detail) === null || _a === void 0 ? void 0 : _a.id) === DataExporterOption.EXPORT_BY_EMAIL) {
|
|
203
|
-
// TODO: Quando o exportador de grades for implementado, essa ação
|
|
204
|
-
// vai fazer mostrar as opções disponíveis. Enviar por email será
|
|
205
|
-
// apenas mais uma
|
|
206
|
-
const selectedRows = this._dataState.selectedRecords.length;
|
|
207
|
-
const config = {
|
|
208
|
-
format: "pdf",
|
|
209
|
-
type: selectedRows > 0 ? "selection" : "all",
|
|
210
|
-
selectedRows,
|
|
211
|
-
email: {
|
|
212
|
-
attachments: [
|
|
213
|
-
{ name: "Movimentação Financeira.pdf", size: 1024 * 231 }
|
|
214
|
-
]
|
|
215
|
-
}
|
|
216
|
-
};
|
|
217
|
-
this._snkEmailSender.open(config)
|
|
218
|
-
.then((result) => {
|
|
219
|
-
this._application.message("resultado", JSON.stringify(result));
|
|
220
|
-
});
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* Conforme mecanismo de mensagens, é possível customizar as mensagens dos blocos de construção
|
|
225
|
-
* através de um pequeno modulo na estrutura da aplicação:
|
|
226
|
-
* - Criar um arquivo no seguinte caminho: /messages/appmessages.msg.js.
|
|
227
|
-
* Para conhecer os detalhes do módulo, vide o arquivo neste projeto "/src/lib/message/resources/snk-grid.msg.ts"
|
|
228
|
-
*/
|
|
229
|
-
getMessage(key, params) {
|
|
230
|
-
return this._application.messagesBuilder.getMessage(key, params);
|
|
231
|
-
}
|
|
232
200
|
openGridConfig() {
|
|
233
201
|
this._grid.getColumnsState()
|
|
234
202
|
.then((gridColumns) => {
|
|
@@ -363,7 +331,7 @@ const SnkGrid = class {
|
|
|
363
331
|
if (!this._dataUnit) {
|
|
364
332
|
return undefined;
|
|
365
333
|
}
|
|
366
|
-
return (h("div", { class: "snk-grid__container ez-flex ez-flex--column ez-flex-item--auto ez-padding--large" }, h("div", { class: "snk-grid__header ez-margin-bottom--medium" }, h("snk-filter-bar", { dataUnit: this._dataUnit, "data-element-id": "gridFilter", class: "snk-grid__filter-bar ez-align--top", configName: this.configName }), h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" }), h("snk-taskbar", { class: "ez-padding-left--medium", "data-element-id": "grid_top", key: "topTaskbar", configName: this.configName, dataUnit: this._dataUnit, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: "INSERT" })), h("ez-grid", { ref: ref => this._grid = ref, "data-element-id": "embedded", dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: (evt) => { this.saveConfig(evt.detail); }, onEzDoubleClick: () => this.gridDoubleClick.emit(), statusResolver: this.statusResolver, multipleSelection: this.multipleSelection }, h("snk-taskbar", { dataUnit: this._dataUnit, configName: this.configName, "data-element-id": "grid_left", buttons: this._headerTaskbarProcessor.buttons, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.actionsList })), h("div", { class: "ez-col ez-col--sd-12" }, h("slot", { name: "SnkGridFooter" })), h("
|
|
334
|
+
return (h("div", { class: "snk-grid__container ez-flex ez-flex--column ez-flex-item--auto ez-padding--large" }, h("div", { class: "snk-grid__header ez-margin-bottom--medium" }, h("snk-filter-bar", { dataUnit: this._dataUnit, "data-element-id": "gridFilter", class: "snk-grid__filter-bar ez-align--top", configName: this.configName }), h("hr", { class: "ez-divider-vertical ez-divider--dark ez-margin-left--medium snk-grid__header-divider" }), h("snk-taskbar", { class: "ez-padding-left--medium", "data-element-id": "grid_top", key: "topTaskbar", configName: this.configName, dataUnit: this._dataUnit, buttons: this._topTaskbarProcessor.buttons, disabledButtons: this._topTaskbarProcessor.disabledButtons, customButtons: this._topTaskbarProcessor.customButtons, primaryButton: "INSERT" })), h("ez-grid", { ref: ref => this._grid = ref, "data-element-id": "embedded", dataUnit: this._dataUnit, key: "grid-" + this._snkDataUnit.entityName, config: this._gridConfig, onConfigChange: (evt) => { this.saveConfig(evt.detail); }, onEzDoubleClick: () => this.gridDoubleClick.emit(), statusResolver: this.statusResolver, multipleSelection: this.multipleSelection }, h("snk-taskbar", { dataUnit: this._dataUnit, configName: this.configName, "data-element-id": "grid_left", buttons: this._headerTaskbarProcessor.buttons, disabledButtons: this._headerTaskbarProcessor.disabledButtons, customButtons: this._headerTaskbarProcessor.customButtons, slot: "leftButtons", actionsList: this.actionsList })), h("div", { class: "ez-col ez-col--sd-12" }, h("slot", { name: "SnkGridFooter" })), h("ez-modal", { modalSize: "small", closeEsc: false, closeOutsideClick: false, opened: this._popUpGridConfig, onEzCloseModal: () => this.closeGridConfig() }, h("snk-grid-config", { ref: ref => this._snkGridConfig = ref, config: this._gridConfig, "data-element-id": this._element.getAttribute(ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME), application: this._application, selectedIndex: 0, onConfigChange: (evt) => this.changeConfig(evt.detail), onConfigCancel: () => this.closeGridConfig() }))));
|
|
367
335
|
}
|
|
368
336
|
get _element() { return getElement(this); }
|
|
369
337
|
};
|
|
@@ -1,16 +1,28 @@
|
|
|
1
|
-
import { r as registerInstance,
|
|
1
|
+
import { r as registerInstance, h, H as Host, g as getElement, c as createEvent } from './index-a77b6f35.js';
|
|
2
2
|
import { ObjectUtils, ApplicationContext, ElementIDUtils, DataType, StringUtils, ErrorException, FloatingManager, ArrayUtils } from '@sankhyalabs/core';
|
|
3
|
-
import {
|
|
3
|
+
import { ApplicationUtils, CheckMode, DialogType } from '@sankhyalabs/ezui/dist/collection/utils';
|
|
4
4
|
import { D as DataFetcher, C as ConfigStorage } from './ConfigStorage-b59461d8.js';
|
|
5
5
|
import { F as FilterItemType } from './filter-item-type.enum-a79b2fa8.js';
|
|
6
6
|
import { ModalAction, ModalButtonStatus } from '@sankhyalabs/ezui/dist/collection/components/ez-modal-container';
|
|
7
7
|
import { toString } from '@sankhyalabs/core/dist/dataunit/metadata/DataType';
|
|
8
|
-
import { CheckMode, ApplicationUtils, DialogType } from '@sankhyalabs/ezui/dist/collection/utils';
|
|
9
8
|
import { O as ORDER_VALUES } from './constants-babe1a08.js';
|
|
9
|
+
import { A as AuthorizationConfig } from './AuthorizationConfig-dcbd207a.js';
|
|
10
10
|
import { T as TaskbarElement, V as VisibleWhenForbidden, A as AuthorizationElements, b as buildElem, a as buildCustomButton } from './taskbar-elements-beec3b27.js';
|
|
11
11
|
import './_commonjsHelpers-9943807e.js';
|
|
12
12
|
import './index-d89e384f.js';
|
|
13
13
|
|
|
14
|
+
var DataExporterOption;
|
|
15
|
+
(function (DataExporterOption) {
|
|
16
|
+
DataExporterOption["EXPORT_TO_PDF"] = "exportToPDF";
|
|
17
|
+
DataExporterOption["EXPORT_TO_XLS"] = "exportToXLS";
|
|
18
|
+
DataExporterOption["EXPORT_CURRENT_PAGE"] = "exportCurrentPage";
|
|
19
|
+
DataExporterOption["EXPORT_PAGE_TO_PDF"] = "exportPageToPDF";
|
|
20
|
+
DataExporterOption["EXPORT_PAGE_TO_XLS"] = "exportPageToXLS";
|
|
21
|
+
DataExporterOption["EXPORT_BY_EMAIL"] = "exportToEmail";
|
|
22
|
+
DataExporterOption["EXPORT_PDF_TO_EMAIL"] = "exportPDFToEmail";
|
|
23
|
+
DataExporterOption["EXPORT_XLS_TO_EMAIL"] = "exportXLSToEmail";
|
|
24
|
+
})(DataExporterOption || (DataExporterOption = {}));
|
|
25
|
+
|
|
14
26
|
var __rest = (undefined && undefined.__rest) || function (s, e) {
|
|
15
27
|
var t = {};
|
|
16
28
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -191,7 +203,6 @@ const snkDataExporterCss = ".sc-snk-data-exporter-h{--snk-data-exporter--z-index
|
|
|
191
203
|
const SnkDataExporter = class {
|
|
192
204
|
constructor(hostRef) {
|
|
193
205
|
registerInstance(this, hostRef);
|
|
194
|
-
this.ezClickDataExporter = createEvent(this, "ezClickDataExporter", 7);
|
|
195
206
|
this._items = [];
|
|
196
207
|
this._selectedNumber = 0;
|
|
197
208
|
this._showDropdown = false;
|
|
@@ -206,6 +217,32 @@ const SnkDataExporter = class {
|
|
|
206
217
|
*/
|
|
207
218
|
this.provider = null;
|
|
208
219
|
}
|
|
220
|
+
async exportByEmail() {
|
|
221
|
+
const selectedRows = this._selectedNumber;
|
|
222
|
+
const config = {
|
|
223
|
+
type: selectedRows > 0 ? "selection" : "all",
|
|
224
|
+
selectedRows,
|
|
225
|
+
email: {
|
|
226
|
+
attachments: [
|
|
227
|
+
{ name: this._appLabel }
|
|
228
|
+
]
|
|
229
|
+
}
|
|
230
|
+
};
|
|
231
|
+
this._snkEmailSender.open(config)
|
|
232
|
+
.then(({ format, email: { to, subject, message } }) => {
|
|
233
|
+
const methodName = this.getFormatExporter(format);
|
|
234
|
+
this.resolveExporter({ methodName, to, subject, message, fileName: this._appLabel, titleGrid: this._appLabel }, () => {
|
|
235
|
+
this._snkEmailSender.close();
|
|
236
|
+
ApplicationUtils.info(this.getMessage("snkDataExporter.message.emailSuccess"), { iconName: "check" });
|
|
237
|
+
});
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
getFormatExporter(format) {
|
|
241
|
+
if (format === "xlsx") {
|
|
242
|
+
return DataExporterOption.EXPORT_XLS_TO_EMAIL;
|
|
243
|
+
}
|
|
244
|
+
return DataExporterOption.EXPORT_PDF_TO_EMAIL;
|
|
245
|
+
}
|
|
209
246
|
/**
|
|
210
247
|
* Conforme mecanismo de mensagens, é possível customizar as mensagens dos blocos de construção
|
|
211
248
|
* através de um pequeno modulo na estrutura da aplicação:
|
|
@@ -242,24 +279,32 @@ const SnkDataExporter = class {
|
|
|
242
279
|
controlDropdown() {
|
|
243
280
|
this._showDropdown = !this._showDropdown;
|
|
244
281
|
}
|
|
282
|
+
resolveExporter(resolveProps, callbackResolver) {
|
|
283
|
+
if (this.provider == undefined) {
|
|
284
|
+
return;
|
|
285
|
+
}
|
|
286
|
+
const filters = this.provider.getFilters();
|
|
287
|
+
const columns = this.provider.getColumnsMetadata();
|
|
288
|
+
const sort = this.provider.getOrders();
|
|
289
|
+
const resourceURI = this.provider.getResourceURI();
|
|
290
|
+
fetchDataExporter(Object.assign({ filters,
|
|
291
|
+
columns,
|
|
292
|
+
sort,
|
|
293
|
+
resourceURI }, resolveProps))
|
|
294
|
+
.then((result) => callbackResolver(result))
|
|
295
|
+
.catch(() => ApplicationUtils.error(this.getMessage("snkDataExporter.title.error"), this.getMessage("snkDataExporter.message.exportError")));
|
|
296
|
+
}
|
|
245
297
|
async processExporter(evt) {
|
|
246
298
|
const item = evt === null || evt === void 0 ? void 0 : evt.detail;
|
|
247
299
|
if (!this._releasedToExport.includes(item === null || item === void 0 ? void 0 : item.id)) {
|
|
248
300
|
return;
|
|
249
301
|
}
|
|
250
|
-
if (item.id
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
const columns = this.provider.getColumnsMetadata();
|
|
256
|
-
const sort = this.provider.getOrders();
|
|
257
|
-
const resourceURI = this.provider.getResourceURI();
|
|
258
|
-
fetchDataExporter({ filters, columns, sort, resourceURI, methodName: item.id })
|
|
259
|
-
.then((response) => fileViewer(Object.assign(Object.assign({}, response), { fileType: "PDF" })))
|
|
260
|
-
.catch(err => console.log(err));
|
|
302
|
+
if (item.id === DataExporterOption.EXPORT_BY_EMAIL) {
|
|
303
|
+
this.exportByEmail();
|
|
304
|
+
}
|
|
305
|
+
else {
|
|
306
|
+
this.resolveExporter({ methodName: item.id, fileName: this._appLabel, titleGrid: this._appLabel }, (response) => (fileViewer(Object.assign(Object.assign({}, response), { fileType: "PDF" }))));
|
|
261
307
|
}
|
|
262
|
-
this.ezClickDataExporter.emit(item);
|
|
263
308
|
this._showDropdown = false;
|
|
264
309
|
}
|
|
265
310
|
getItems() {
|
|
@@ -278,6 +323,7 @@ const SnkDataExporter = class {
|
|
|
278
323
|
}
|
|
279
324
|
componentWillLoad() {
|
|
280
325
|
this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
326
|
+
this._application.getAppLabel().then(result => this._appLabel = result);
|
|
281
327
|
this.loadDropdown();
|
|
282
328
|
this.setEvents();
|
|
283
329
|
}
|
|
@@ -300,129 +346,12 @@ const SnkDataExporter = class {
|
|
|
300
346
|
render() {
|
|
301
347
|
return (h(Host, null, h("div", { class: "snk-data-exporter" }, h("ez-button", Object.assign({ ref: (ref) => this._ezButton = ref, iconName: "file-download", size: "small", mode: "icon", onClick: () => this.controlDropdown() }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("button")}` })), this._showDropdown &&
|
|
302
348
|
h("ez-dropdown", Object.assign({ ref: (ref) => this._ezDropdown = ref, items: this._items, onEzClick: (evt) => this.processExporter(evt) }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("dropdown")}` }))), this._showDropdown &&
|
|
303
|
-
h("div", Object.assign({ class: "ez-scrim ez-scrim-light" }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("ezScrim")}` }))));
|
|
349
|
+
h("div", Object.assign({ class: "ez-scrim ez-scrim-light" }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("ezScrim")}` })), h("snk-exporter-email-sender", { ref: ref => this._snkEmailSender = ref, getMessage: (key, params) => this.getMessage(key, params) })));
|
|
304
350
|
}
|
|
305
351
|
get _element() { return getElement(this); }
|
|
306
352
|
};
|
|
307
353
|
SnkDataExporter.style = snkDataExporterCss;
|
|
308
354
|
|
|
309
|
-
const EmailInfoStep = ({ getMessage, changeInfo, data }) => {
|
|
310
|
-
return h("div", null,
|
|
311
|
-
h("ez-text-input", Object.assign({ label: `${getMessage("snkExporter.emailSenderInfoStep_sendTo")} (obrigatório) *`, required: true, value: data === null || data === void 0 ? void 0 : data.to, onEzChange: evt => changeInfo("to", evt.detail) }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("sendTo")}` })),
|
|
312
|
-
h("ez-text-input", Object.assign({ label: `${getMessage("snkExporter.emailSenderInfoStep_subject")} (obrigatório) *`, required: true, value: data === null || data === void 0 ? void 0 : data.subject, onEzChange: evt => changeInfo("subject", evt.detail) }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("subject")}` })),
|
|
313
|
-
h("ez-text-area", Object.assign({ label: getMessage("snkExporter.emailSenderInfoStep_message"), value: data === null || data === void 0 ? void 0 : data.message, onEzChange: evt => changeInfo("message", evt.detail) }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("message")}` })),
|
|
314
|
-
((data === null || data === void 0 ? void 0 : data.attachments) || [])
|
|
315
|
-
.map((file, index) => h("ez-file-item", Object.assign({ class: "ez-padding-bottom--large", fileName: file.name, fileSize: file.size, canRemove: false }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("fileItem_") + (index + 1)}` }))));
|
|
316
|
-
};
|
|
317
|
-
|
|
318
|
-
const OptionsStep = ({ getMessage, changeInfo, data }) => {
|
|
319
|
-
const selectionCount = (data === null || data === void 0 ? void 0 : data.selectedRows) || 0;
|
|
320
|
-
const formatOptions = [
|
|
321
|
-
{ label: getMessage("snkExporter.emailSenderOptStep_formatPDF"), value: "pdf" },
|
|
322
|
-
{ label: getMessage("snkExporter.emailSenderOptStep_formatXLSX"), value: "xlsx" }
|
|
323
|
-
];
|
|
324
|
-
const typeOptions = [
|
|
325
|
-
{ label: getMessage("snkExporter.emailSenderOptStep_allData"), value: "all" },
|
|
326
|
-
{ label: getMessage("snkExporter.emailSenderOptStep_currentPage"), value: "page" },
|
|
327
|
-
];
|
|
328
|
-
if (selectionCount > 0) {
|
|
329
|
-
const label = getMessage(selectionCount > 1 ? "snkExporter.emailSenderOptStep_someRecords" : "snkExporter.emailSenderOptStep_oneRecord", { SELECTION_COUNT: selectionCount });
|
|
330
|
-
typeOptions.push({
|
|
331
|
-
label,
|
|
332
|
-
value: "selection"
|
|
333
|
-
});
|
|
334
|
-
}
|
|
335
|
-
return h("div", null,
|
|
336
|
-
h("ez-radio-button", Object.assign({ class: "ez-margin-bottom--large" }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("formato")}` }, { label: getMessage("snkExporter.emailSenderOptStep_lblFormat"), direction: "horizontal", value: (data === null || data === void 0 ? void 0 : data.format) || "pdf", onEzChange: evt => changeInfo("format", evt.detail), options: formatOptions })),
|
|
337
|
-
h("ez-radio-button", Object.assign({ class: "ez-margin-bottom--large" }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("type")}` }, { label: getMessage("snkExporter.emailSenderOptStep_export"), value: (data === null || data === void 0 ? void 0 : data.type) || "all", onEzChange: evt => changeInfo("type", evt.detail), options: typeOptions })));
|
|
338
|
-
};
|
|
339
|
-
|
|
340
|
-
const SnkExporterEmailSender = class {
|
|
341
|
-
constructor(hostRef) {
|
|
342
|
-
registerInstance(this, hostRef);
|
|
343
|
-
this._stepInfo = [
|
|
344
|
-
{
|
|
345
|
-
subTitle: "snkExporter.emailSenderOptStep_subtitle",
|
|
346
|
-
firstButton: "snkExporter.emailSenderCancelButton",
|
|
347
|
-
secondButton: "snkExporter.emailSenderNextButton",
|
|
348
|
-
firstButtonAction: () => this.close(),
|
|
349
|
-
secondButtonAction: () => this.changeStep(1)
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
subTitle: "snkExporter.emailSenderInfoStep_subtitle",
|
|
353
|
-
firstButton: "snkExporter.emailSenderBackButton",
|
|
354
|
-
secondButton: "snkExporter.emailSenderSendButton",
|
|
355
|
-
firstButtonAction: () => this.changeStep(0),
|
|
356
|
-
secondButtonAction: () => this.send(),
|
|
357
|
-
secondButtonEnabledTester: () => this.isFilled(),
|
|
358
|
-
secondButtonClass: "ez-button--primary"
|
|
359
|
-
}
|
|
360
|
-
];
|
|
361
|
-
this._opened = false;
|
|
362
|
-
this._currentStep = 0;
|
|
363
|
-
}
|
|
364
|
-
open(config) {
|
|
365
|
-
this._config = config;
|
|
366
|
-
this._opened = true;
|
|
367
|
-
this.changeStep(0);
|
|
368
|
-
return new Promise(accept => {
|
|
369
|
-
this._promiseResolver = accept;
|
|
370
|
-
});
|
|
371
|
-
}
|
|
372
|
-
getStepMessage(key) {
|
|
373
|
-
const stepInfo = this._stepInfo[this._currentStep] || {};
|
|
374
|
-
return this.getMessage(stepInfo[key]);
|
|
375
|
-
}
|
|
376
|
-
executeButtonAction(first) {
|
|
377
|
-
const stepInfo = this._stepInfo[this._currentStep] || {};
|
|
378
|
-
stepInfo[first ? "firstButtonAction" : "secondButtonAction"]();
|
|
379
|
-
}
|
|
380
|
-
checkButtonEnabled(first) {
|
|
381
|
-
const stepInfo = this._stepInfo[this._currentStep] || {};
|
|
382
|
-
const testFunction = stepInfo[first ? "firstButtonEnabledTester" : "secondButtonEnabledTester"];
|
|
383
|
-
if (testFunction) {
|
|
384
|
-
return testFunction();
|
|
385
|
-
}
|
|
386
|
-
return true;
|
|
387
|
-
}
|
|
388
|
-
changeStep(index) {
|
|
389
|
-
this._currentStep = index;
|
|
390
|
-
if (this._viewStack) {
|
|
391
|
-
this._viewStack.show(this._currentStep);
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
send() {
|
|
395
|
-
const { format, type, email } = this._config;
|
|
396
|
-
this._promiseResolver({ format, type, email, report: undefined });
|
|
397
|
-
}
|
|
398
|
-
close() {
|
|
399
|
-
this._opened = false;
|
|
400
|
-
}
|
|
401
|
-
isFilled() {
|
|
402
|
-
var _a, _b;
|
|
403
|
-
return ((_a = this._config.email) === null || _a === void 0 ? void 0 : _a.to) && ((_b = this._config.email) === null || _b === void 0 ? void 0 : _b.subject) ? true : false;
|
|
404
|
-
}
|
|
405
|
-
updateEmailInfo(field, value) {
|
|
406
|
-
this._config = Object.assign(Object.assign({}, this._config), { email: Object.assign(Object.assign({}, this._config.email), { [field]: value }) });
|
|
407
|
-
}
|
|
408
|
-
updateConfigInfo(field, value) {
|
|
409
|
-
this._config = Object.assign(Object.assign({}, this._config), { [field]: value });
|
|
410
|
-
}
|
|
411
|
-
getSecondButtonClass() {
|
|
412
|
-
const stepInfo = this._stepInfo[this._currentStep] || {};
|
|
413
|
-
return stepInfo["secondButtonClass"] || "ez-button--secondary";
|
|
414
|
-
}
|
|
415
|
-
render() {
|
|
416
|
-
var _a;
|
|
417
|
-
ElementIDUtils.addIDInfoIfNotExists(this._element, 'snkExporterEmailSender');
|
|
418
|
-
return (h("ez-popup", { useHeader: false, size: "x-small", heightMode: "auto", opened: this._opened }, h("ez-modal-container", { onEzModalAction: evt => {
|
|
419
|
-
if (evt.detail === "CLOSE")
|
|
420
|
-
this.close();
|
|
421
|
-
}, modalTitle: this.getMessage("snkExporter.emailSenderTitle"), modalSubTitle: this.getStepMessage("subTitle") }, h("ez-view-stack", { ref: ref => this._viewStack = ref }, h("stack-item", null, h(OptionsStep, { getMessage: this.getMessage, data: this._config, changeInfo: (field, value) => this.updateConfigInfo(field, value) })), h("stack-item", null, h(EmailInfoStep, { getMessage: this.getMessage, data: (_a = this._config) === null || _a === void 0 ? void 0 : _a.email, changeInfo: (field, value) => this.updateEmailInfo(field, value) }))), h("div", { class: "ez-col ez-col--sd-12 ez-flex--justify-end ez-margin-vertical--small" }, h("ez-button", Object.assign({ class: "ez-button--tertiary ez-padding-right--medium", label: this.getStepMessage("firstButton"), onClick: () => this.executeButtonAction(true), enabled: this.checkButtonEnabled(true) }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("firstButton")}` })), h("ez-button", Object.assign({ class: this.getSecondButtonClass(), label: this.getStepMessage("secondButton"), onClick: () => this.executeButtonAction(false), enabled: this.checkButtonEnabled(false) }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("secondButton")}` }))))));
|
|
422
|
-
}
|
|
423
|
-
get _element() { return getElement(this); }
|
|
424
|
-
};
|
|
425
|
-
|
|
426
355
|
const buildFilter = (item) => {
|
|
427
356
|
switch (item.type) {
|
|
428
357
|
case FilterItemType.DEFAULT_FILTER:
|
|
@@ -1977,4 +1906,4 @@ const SnkTaskbar = class {
|
|
|
1977
1906
|
};
|
|
1978
1907
|
SnkTaskbar.style = snkTaskbarCss;
|
|
1979
1908
|
|
|
1980
|
-
export { SnkDataExporter as snk_data_exporter,
|
|
1909
|
+
export { SnkDataExporter as snk_data_exporter, SnkFilterBar as snk_filter_bar, SnkFilterItem as snk_filter_item, SnkFilterList as snk_filter_list, SnkFilterModal as snk_filter_modal, EzGridConfig as snk_grid_config, SelectBox as snk_select_box, SnkTaskbar as snk_taskbar };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, g as getElement, H as Host } from './index-a77b6f35.js';
|
|
2
2
|
import { Action, ApplicationContext } from '@sankhyalabs/core';
|
|
3
3
|
import { ApplicationUtils, DialogType } from '@sankhyalabs/ezui/dist/collection/utils';
|
|
4
|
-
import { O as OperationMap } from './SnkMessageBuilder-
|
|
4
|
+
import { O as OperationMap } from './SnkMessageBuilder-4a060599.js';
|
|
5
5
|
|
|
6
6
|
const snkDataUnitCss = ".sc-snk-data-unit-h{display:flex;flex-direction:column;height:100%}";
|
|
7
7
|
|