@sankhyalabs/sankhyablocks 8.15.0-dev.8 → 8.15.0-rc.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.
Files changed (159) hide show
  1. package/dist/cjs/{ISave-d68ce3cd.js → ISave-e91b70a7.js} +1 -0
  2. package/dist/cjs/{SnkMessageBuilder-7293d0ad.js → SnkMessageBuilder-e7dcf408.js} +13 -0
  3. package/dist/cjs/loader.cjs.js +1 -1
  4. package/dist/cjs/{dataunit-fetcher-14108bec.js → pesquisa-fetcher-e4a7c4c3.js} +235 -26
  5. package/dist/cjs/sankhyablocks.cjs.js +1 -1
  6. package/dist/cjs/snk-actions-button_2.cjs.entry.js +5 -4
  7. package/dist/cjs/snk-application.cjs.entry.js +12 -4
  8. package/dist/cjs/snk-attach.cjs.entry.js +388 -57
  9. package/dist/cjs/snk-crud.cjs.entry.js +3 -4
  10. package/dist/cjs/snk-data-exporter.cjs.entry.js +3 -3
  11. package/dist/cjs/{snk-data-unit-1bc69073.js → snk-data-unit-82c08a8c.js} +1 -1
  12. package/dist/cjs/snk-data-unit.cjs.entry.js +2 -2
  13. package/dist/cjs/snk-detail-view.cjs.entry.js +4 -5
  14. package/dist/cjs/snk-filter-bar.cjs.entry.js +8 -1
  15. package/dist/cjs/snk-filter-item.cjs.entry.js +3 -0
  16. package/dist/cjs/snk-filter-modal.cjs.entry.js +2 -1
  17. package/dist/cjs/snk-filter-multi-select.cjs.entry.js +2 -1
  18. package/dist/cjs/{snk-guides-viewer-c8b9374f.js → snk-guides-viewer-d32c096f.js} +2 -3
  19. package/dist/cjs/snk-guides-viewer.cjs.entry.js +3 -4
  20. package/dist/cjs/snk-pesquisa.cjs.entry.js +1 -1
  21. package/dist/cjs/snk-simple-crud.cjs.entry.js +17 -6
  22. package/dist/collection/collection-manifest.json +1 -1
  23. package/dist/collection/components/snk-application/snk-application.js +52 -9
  24. package/dist/collection/components/snk-attach/snk-attach.js +188 -39
  25. package/dist/collection/components/snk-attach/structure/{crud-config-builder.js → builder/anexo-sistema-crud-config.builder.js} +1 -1
  26. package/dist/collection/components/snk-attach/structure/builder/attach-crud-config.builder.js +62 -0
  27. package/dist/collection/components/snk-attach/structure/{taskbar-builder.js → builder/taskbar-builder.js} +1 -1
  28. package/dist/collection/components/snk-attach/structure/fetcher/facade/fetcher.facade.js +1 -0
  29. package/dist/collection/components/snk-attach/structure/{data-unit-builder.js → fetcher/factory/anexo-sistema-data-unit.factory.js} +14 -11
  30. package/dist/collection/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.js +111 -0
  31. package/dist/collection/components/snk-attach/structure/index.js +6 -3
  32. package/dist/collection/components/snk-crud/snk-crud.js +1 -1
  33. package/dist/collection/components/snk-data-exporter/snk-data-exporter.js +1 -1
  34. package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-multi-select.js +2 -1
  35. package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.js +3 -0
  36. package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.js +19 -1
  37. package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +22 -0
  38. package/dist/collection/components/snk-filter-bar/utils/SnkFilterModalFactory.js +3 -1
  39. package/dist/collection/components/snk-pesquisa/snk-pesquisa.css +2 -4
  40. package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +53 -1
  41. package/dist/collection/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.js +3 -1
  42. package/dist/collection/lib/dataUnit/InMemoryLoader.js +1 -1
  43. package/dist/collection/lib/http/data-fetcher/fetchers/{attach-fetcher.js → AttachFetcher/anexo-sistema-fetcher.js} +16 -15
  44. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/attach-fetcher.js +90 -0
  45. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/facade/attach-fetcher.facade.js +1 -0
  46. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/index.js +2 -0
  47. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/interfaces/IDelete.js +1 -0
  48. package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/interfaces/IDownloadKey.js +1 -0
  49. package/dist/collection/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/ISave.js +1 -0
  50. package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher.js +29 -2
  51. package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/DatasetStrategy.js +37 -23
  52. package/dist/collection/lib/http/data-fetcher/fetchers/pesquisa-fetcher.js +7 -1
  53. package/dist/collection/lib/index.js +1 -1
  54. package/dist/collection/lib/message/resources/snk-attach.msg.js +13 -0
  55. package/dist/components/SnkMessageBuilder.js +13 -0
  56. package/dist/components/dataunit-fetcher.js +74 -27
  57. package/dist/components/snk-actions-button2.js +1 -0
  58. package/dist/components/snk-application2.js +11 -1
  59. package/dist/components/snk-attach2.js +394 -57
  60. package/dist/components/snk-crud.js +1 -1
  61. package/dist/components/snk-data-exporter2.js +1 -1
  62. package/dist/components/snk-filter-bar2.js +9 -1
  63. package/dist/components/snk-filter-item2.js +3 -0
  64. package/dist/components/snk-filter-modal.js +4 -2
  65. package/dist/components/snk-filter-multi-select.js +2 -1
  66. package/dist/components/snk-pesquisa2.js +1 -1
  67. package/dist/components/snk-simple-crud2.js +15 -1
  68. package/dist/components/taskbar-actions-button2.js +3 -1
  69. package/dist/esm/{ISave-4412b20c.js → ISave-d8c8bc59.js} +1 -0
  70. package/dist/esm/{SnkMessageBuilder-ca843d1b.js → SnkMessageBuilder-0fb796b9.js} +13 -0
  71. package/dist/esm/loader.js +1 -1
  72. package/dist/esm/{dataunit-fetcher-cbec1594.js → pesquisa-fetcher-fa0c2540.js} +235 -27
  73. package/dist/esm/sankhyablocks.js +1 -1
  74. package/dist/esm/snk-actions-button_2.entry.js +5 -4
  75. package/dist/esm/snk-application.entry.js +11 -3
  76. package/dist/esm/snk-attach.entry.js +389 -58
  77. package/dist/esm/snk-crud.entry.js +3 -4
  78. package/dist/esm/snk-data-exporter.entry.js +3 -3
  79. package/dist/esm/{snk-data-unit-6208ebf0.js → snk-data-unit-5d201fb3.js} +1 -1
  80. package/dist/esm/snk-data-unit.entry.js +2 -2
  81. package/dist/esm/snk-detail-view.entry.js +4 -5
  82. package/dist/esm/snk-filter-bar.entry.js +8 -1
  83. package/dist/esm/snk-filter-item.entry.js +3 -0
  84. package/dist/esm/snk-filter-modal.entry.js +2 -1
  85. package/dist/esm/snk-filter-multi-select.entry.js +2 -1
  86. package/dist/esm/{snk-guides-viewer-8da24475.js → snk-guides-viewer-f49613c6.js} +2 -3
  87. package/dist/esm/snk-guides-viewer.entry.js +3 -4
  88. package/dist/esm/snk-pesquisa.entry.js +1 -1
  89. package/dist/esm/snk-simple-crud.entry.js +15 -4
  90. package/dist/sankhyablocks/p-02e3a45b.entry.js +1 -0
  91. package/dist/sankhyablocks/{p-ff6064e7.js → p-05243555.js} +1 -1
  92. package/dist/sankhyablocks/p-0ec5b2e5.js +1 -0
  93. package/dist/sankhyablocks/{p-9e7d65a4.js → p-21749402.js} +1 -1
  94. package/dist/sankhyablocks/p-2582537c.entry.js +1 -0
  95. package/dist/sankhyablocks/p-282789a6.entry.js +1 -0
  96. package/dist/sankhyablocks/p-3b0e4e08.js +65 -0
  97. package/dist/sankhyablocks/{p-0874adb5.entry.js → p-40915359.entry.js} +1 -1
  98. package/dist/sankhyablocks/p-62896624.entry.js +1 -0
  99. package/dist/sankhyablocks/p-70a4af56.entry.js +1 -0
  100. package/dist/sankhyablocks/{p-6977a26c.entry.js → p-86801b08.entry.js} +1 -1
  101. package/dist/sankhyablocks/p-9b5944a4.entry.js +1 -0
  102. package/dist/sankhyablocks/p-9bdbc7d8.entry.js +1 -0
  103. package/dist/sankhyablocks/p-ac384baf.entry.js +1 -0
  104. package/dist/sankhyablocks/p-bf2acf72.entry.js +1 -0
  105. package/dist/sankhyablocks/p-c4874327.entry.js +1 -0
  106. package/dist/sankhyablocks/{p-247a8b36.entry.js → p-d1791da2.entry.js} +1 -1
  107. package/dist/sankhyablocks/{p-ba3d3fa9.entry.js → p-e817f254.entry.js} +3 -3
  108. package/dist/sankhyablocks/{p-32f0935f.js → p-f3d1c48e.js} +1 -1
  109. package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
  110. package/dist/types/components/snk-actions-button/subcomponents/snk-actions-form.d.ts +1 -1
  111. package/dist/types/components/snk-application/snk-application.d.ts +7 -0
  112. package/dist/types/components/snk-attach/{structure/crud-config-builder.d.ts → interfaces/ICrudConfig.d.ts} +1 -2
  113. package/dist/types/components/snk-attach/interfaces/TFetcherType.d.ts +1 -0
  114. package/dist/types/components/snk-attach/snk-attach.d.ts +27 -6
  115. package/dist/types/components/snk-attach/structure/builder/anexo-sistema-crud-config.builder.d.ts +2 -0
  116. package/dist/types/components/snk-attach/structure/builder/attach-crud-config.builder.d.ts +31 -0
  117. package/dist/types/components/snk-attach/structure/{taskbar-builder.d.ts → builder/taskbar-builder.d.ts} +1 -1
  118. package/dist/types/components/snk-attach/structure/fetcher/facade/fetcher.facade.d.ts +11 -0
  119. package/dist/types/components/snk-attach/structure/fetcher/factory/anexo-sistema-data-unit.factory.d.ts +17 -0
  120. package/dist/types/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.d.ts +15 -0
  121. package/dist/types/components/snk-attach/structure/index.d.ts +6 -3
  122. package/dist/types/components/snk-filter-bar/filter-item/snk-filter-item.d.ts +1 -1
  123. package/dist/types/components/snk-filter-bar/filter-modal/snk-filter-modal.d.ts +5 -0
  124. package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +5 -0
  125. package/dist/types/components/snk-filter-bar/utils/SnkFilterModalFactory.d.ts +3 -1
  126. package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +10 -1
  127. package/dist/types/components.d.ts +74 -2
  128. package/dist/types/lib/http/data-fetcher/DataFetcher.d.ts +1 -1
  129. package/dist/types/lib/http/data-fetcher/fetchers/{attach-fetcher.d.ts → AttachFetcher/anexo-sistema-fetcher.d.ts} +3 -2
  130. package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/attach-fetcher.d.ts +11 -0
  131. package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/facade/attach-fetcher.facade.d.ts +8 -0
  132. package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/index.d.ts +3 -0
  133. package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/ISave.d.ts +2 -1
  134. package/dist/types/lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher.d.ts +2 -0
  135. package/dist/types/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/DatasetStrategy.d.ts +1 -0
  136. package/dist/types/lib/index.d.ts +1 -1
  137. package/package.json +7 -5
  138. package/dist/cjs/pesquisa-fetcher-ef050a47.js +0 -167
  139. package/dist/esm/pesquisa-fetcher-dd3ca0a5.js +0 -165
  140. package/dist/sankhyablocks/p-20726710.entry.js +0 -1
  141. package/dist/sankhyablocks/p-25927311.entry.js +0 -1
  142. package/dist/sankhyablocks/p-3891ae6f.js +0 -60
  143. package/dist/sankhyablocks/p-4775a293.entry.js +0 -1
  144. package/dist/sankhyablocks/p-7d8d7fe9.entry.js +0 -1
  145. package/dist/sankhyablocks/p-8d70b5d5.entry.js +0 -1
  146. package/dist/sankhyablocks/p-a9e4bb55.entry.js +0 -1
  147. package/dist/sankhyablocks/p-a9e5b094.entry.js +0 -1
  148. package/dist/sankhyablocks/p-aa0ae6bc.entry.js +0 -1
  149. package/dist/sankhyablocks/p-c4d19840.entry.js +0 -1
  150. package/dist/sankhyablocks/p-c6e477ff.js +0 -1
  151. package/dist/sankhyablocks/p-d81f20c4.entry.js +0 -1
  152. package/dist/sankhyablocks/p-d9bb09b3.js +0 -6
  153. package/dist/types/components/snk-attach/structure/data-unit-builder.d.ts +0 -15
  154. /package/dist/collection/{lib/http/data-fetcher/fetchers/fecthAttach/interfaces/IDelete.js → components/snk-attach/interfaces/ICrudConfig.js} +0 -0
  155. /package/dist/collection/{lib/http/data-fetcher/fetchers/fecthAttach/interfaces/IDownloadKey.js → components/snk-attach/interfaces/TFetcherType.js} +0 -0
  156. /package/dist/collection/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/index.js +0 -0
  157. /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/IDelete.d.ts +0 -0
  158. /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/IDownloadKey.d.ts +0 -0
  159. /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/index.d.ts +0 -0
@@ -1,9 +1,13 @@
1
1
  import { proxyCustomElement, HTMLElement, createEvent, h } from '@stencil/core/internal/client';
2
- import { ApplicationContext, DataType, Action } from '@sankhyalabs/core';
2
+ import { ApplicationContext, DataType, Action, UserInterface, StringUtils, DataUnit } from '@sankhyalabs/core';
3
3
  import { D as DataFetcher } from './DataFetcher.js';
4
+ import { a as PreloadManager, D as DataUnitFetcher } from './dataunit-fetcher.js';
5
+ import './index2.js';
4
6
  import { a as SaveErrorsEnum, d as defineCustomElement$8 } from './snk-actions-button2.js';
7
+ import './filter-item-type.enum.js';
8
+ import './form-config-fetcher.js';
5
9
  import { V as VIEW_MODE } from './constants.js';
6
- import { a as PreloadManager, D as DataUnitFetcher } from './dataunit-fetcher.js';
10
+ import { A as AutorizationType } from './auth-fetcher.js';
7
11
  import { T as TaskbarElement, d as defineCustomElement$2 } from './snk-taskbar2.js';
8
12
  import { d as defineCustomElement$7 } from './snk-data-exporter2.js';
9
13
  import { d as defineCustomElement$6 } from './snk-data-unit2.js';
@@ -12,7 +16,101 @@ import { d as defineCustomElement$4 } from './snk-simple-bar2.js';
12
16
  import { d as defineCustomElement$3 } from './snk-simple-crud2.js';
13
17
  import { d as defineCustomElement$1 } from './taskbar-actions-button2.js';
14
18
 
19
+ const SERVICE$1 = {
20
+ save: "Attach.save",
21
+ delete: "Attach.remove",
22
+ view: "Attach.view",
23
+ repository: "RepositorioArquivoSP.abreArquivo"
24
+ };
15
25
  class AttachFetcher {
26
+ constructor(dataUnitName) {
27
+ this.dataUnitName = dataUnitName;
28
+ }
29
+ async save({ dataUnit: dataUnitName, record, updatingFields: fields, operation }) {
30
+ var _a, _b;
31
+ const isInsert = operation == "INSERT";
32
+ const dataBody = isInsert ? fields : record;
33
+ if (!isInsert && (fields === null || fields === void 0 ? void 0 : fields.DESCRICAO) && (fields === null || fields === void 0 ? void 0 : fields.DESCRICAO) !== (record === null || record === void 0 ? void 0 : record.DESCRICAO)) {
34
+ throw new Error(SaveErrorsEnum.DESCRIPTION_CANNOT_BE_CHANGED);
35
+ }
36
+ const reqBody = {
37
+ "anexo": {
38
+ "codata": isInsert ? fields === null || fields === void 0 ? void 0 : fields.REGISTER_KEY : record === null || record === void 0 ? void 0 : record.CODATA,
39
+ "sequencia": (dataBody === null || dataBody === void 0 ? void 0 : dataBody.SEQUENCIA) || "0",
40
+ "tipo": (dataBody === null || dataBody === void 0 ? void 0 : dataBody.TIPO) || "N",
41
+ "descricao": dataBody === null || dataBody === void 0 ? void 0 : dataBody.DESCRICAO,
42
+ "arquivo": (_b = (_a = fields.CAMINHO_ARQUIVO) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.name,
43
+ "ehInclusao": isInsert ? "S" : "N",
44
+ "ehArquivoRepositorio": "N"
45
+ }
46
+ };
47
+ return new Promise((resolve, reject) => {
48
+ DataFetcher.get().callServiceBroker(SERVICE$1.save, JSON.stringify(reqBody))
49
+ .then(result => {
50
+ var _a;
51
+ return resolve([Object.assign(Object.assign(Object.assign({}, result), fields), { __owner__dataunit__name__: (_a = this.dataUnitName) !== null && _a !== void 0 ? _a : dataUnitName })]);
52
+ })
53
+ .catch(error => reject(error));
54
+ });
55
+ }
56
+ async edit(change) {
57
+ throw new Error("Method not implemented.");
58
+ }
59
+ async delete(record) {
60
+ var request = {
61
+ anexo: {
62
+ codata: record.CODATA,
63
+ tipo: record.TIPO,
64
+ descricao: record.DESCRICAO,
65
+ }
66
+ };
67
+ const result = await DataFetcher.get().callServiceBroker(SERVICE$1.delete, JSON.stringify(request));
68
+ return Promise.resolve(result);
69
+ }
70
+ async getDownloadKey(record) {
71
+ var _a, _b, _c;
72
+ if (record.EHARQUIVOREPOSITORIO == 'S') {
73
+ const request = {
74
+ config: {
75
+ path: record.ARQUIVO,
76
+ tipoconteudo: record.TIPOCONTEUDO
77
+ }
78
+ };
79
+ const result = await DataFetcher.get().callServiceBroker(SERVICE$1.repository, JSON.stringify(request));
80
+ return Promise.resolve({
81
+ chave: {
82
+ valor: (_b = (_a = result === null || result === void 0 ? void 0 : result.responseBody) === null || _a === void 0 ? void 0 : _a.chave) === null || _b === void 0 ? void 0 : _b.valor
83
+ }
84
+ });
85
+ }
86
+ const criteria = {
87
+ anexo: {
88
+ codata: record.CODATA,
89
+ codemp: record.CODEMP,
90
+ sequencia: record.SEQUENCIA,
91
+ tipo: record.TIPO,
92
+ descricao: record.DESCRICAO,
93
+ tipoConteudo: record.TIPOCONTEUDO
94
+ }
95
+ };
96
+ const result = await DataFetcher.get().callServiceBroker(SERVICE$1.view, JSON.stringify(criteria));
97
+ if (result === null || result === void 0 ? void 0 : result.chaveAnexo) {
98
+ return Promise.resolve({
99
+ chave: {
100
+ valor: (_c = result === null || result === void 0 ? void 0 : result.chaveAnexo) === null || _c === void 0 ? void 0 : _c.idChaveAnexo
101
+ }
102
+ });
103
+ }
104
+ return Promise.reject(new Error("File not found."));
105
+ }
106
+ }
107
+
108
+ const SERVICE = {
109
+ save: "AnexoSistemaSP.salvar",
110
+ delete: "AnexoSistemaSP.excluir",
111
+ download: "AnexoSistemaSP.baixar",
112
+ };
113
+ class AnexoSistemaFetcher {
16
114
  constructor(entityName, registerKey, dataUnitName) {
17
115
  var _a;
18
116
  this.entityName = entityName;
@@ -30,14 +128,13 @@ class AttachFetcher {
30
128
  }
31
129
  async save(change) {
32
130
  var _a, _b;
33
- const serviceName = "AnexoSistemaSP.salvar";
34
131
  let { updatingFields: fields } = change;
35
132
  fields = Object.assign(Object.assign({}, fields), { NOMEARQUIVO: (_a = fields.NOMEARQUIVO) === null || _a === void 0 ? void 0 : _a[0] });
36
133
  try {
37
134
  this.validateFields(fields);
38
135
  const fileInfo = !fields.LINK ? fields.NOMEARQUIVO : null;
39
136
  const reqBody = {
40
- serviceName,
137
+ serviceName: SERVICE.save,
41
138
  requestBody: {
42
139
  params: {
43
140
  resourceID: this.resourceID,
@@ -53,7 +150,7 @@ class AttachFetcher {
53
150
  }
54
151
  }
55
152
  };
56
- const result = await DataFetcher.get().callServiceBroker(serviceName, JSON.stringify(reqBody));
153
+ const result = await DataFetcher.get().callServiceBroker(SERVICE.save, JSON.stringify(reqBody));
57
154
  return Promise.resolve([Object.assign(Object.assign(Object.assign({}, result), fields), { ARQUIVOOULINK: !!fields.LINK ? fields.LINK : fileInfo === null || fileInfo === void 0 ? void 0 : fileInfo.name, __owner__dataunit__name__: this.dataUnitName })]);
58
155
  }
59
156
  catch (error) {
@@ -62,7 +159,6 @@ class AttachFetcher {
62
159
  }
63
160
  async edit(change) {
64
161
  var _a, _b, _c;
65
- const serviceName = "AnexoSistemaSP.salvar";
66
162
  let { updatingFields: fields, record } = change;
67
163
  const getFieldValue = (fieldValue) => {
68
164
  if (fields[fieldValue] !== undefined)
@@ -76,7 +172,7 @@ class AttachFetcher {
76
172
  try {
77
173
  this.validateFields(fields);
78
174
  const reqBody = {
79
- serviceName,
175
+ serviceName: SERVICE.save,
80
176
  requestBody: {
81
177
  params: {
82
178
  resourceID: this.resourceID,
@@ -94,7 +190,7 @@ class AttachFetcher {
94
190
  }
95
191
  }
96
192
  };
97
- const result = await DataFetcher.get().callServiceBroker(serviceName, JSON.stringify(reqBody));
193
+ const result = await DataFetcher.get().callServiceBroker(SERVICE.save, JSON.stringify(reqBody));
98
194
  return Promise.resolve([Object.assign(Object.assign(Object.assign({}, result), fields), { ARQUIVOOULINK: !!fields.LINK ? fields.LINK : fileInfo === null || fileInfo === void 0 ? void 0 : fileInfo.name, __owner__dataunit__name__: this.dataUnitName })]);
99
195
  }
100
196
  catch (error) {
@@ -103,10 +199,9 @@ class AttachFetcher {
103
199
  }
104
200
  delete(record) {
105
201
  var _a;
106
- const serviceName = "AnexoSistemaSP.excluir";
107
202
  const attachField = ((_a = record.NOMEARQUIVO) === null || _a === void 0 ? void 0 : _a[0]) || {};
108
203
  const reqBody = {
109
- serviceName,
204
+ serviceName: SERVICE.delete,
110
205
  requestBody: {
111
206
  paramsDelete: {
112
207
  keyAttach: record.CHAVEARQUIVO,
@@ -118,17 +213,16 @@ class AttachFetcher {
118
213
  }
119
214
  };
120
215
  return new Promise((resolve, reject) => {
121
- DataFetcher.get().callServiceBroker(serviceName, JSON.stringify(reqBody))
216
+ DataFetcher.get().callServiceBroker(SERVICE.delete, JSON.stringify(reqBody))
122
217
  .then(result => resolve(result))
123
218
  .catch(error => reject(error));
124
219
  });
125
220
  }
126
221
  getDownloadKey(record) {
127
222
  var _a;
128
- const serviceName = "AnexoSistemaSP.baixar";
129
223
  const attachField = ((_a = record.NOMEARQUIVO) === null || _a === void 0 ? void 0 : _a[0]) || {};
130
224
  const reqBody = {
131
- serviceName,
225
+ serviceName: SERVICE.download,
132
226
  requestBody: {
133
227
  paramsDown: {
134
228
  nameAttach: attachField === null || attachField === void 0 ? void 0 : attachField.name,
@@ -140,34 +234,37 @@ class AttachFetcher {
140
234
  }
141
235
  };
142
236
  return new Promise((resolve, reject) => {
143
- DataFetcher.get().callServiceBroker(serviceName, JSON.stringify(reqBody))
237
+ DataFetcher.get().callServiceBroker(SERVICE.download, JSON.stringify(reqBody))
144
238
  .then(result => resolve(result))
145
239
  .catch(error => reject(error));
146
240
  });
147
241
  }
148
242
  }
149
243
 
150
- class AttachmentDataUnitBuilder {
244
+ class AnexoSistemaDataUnitFactory {
151
245
  constructor(entityName, getMessage) {
152
246
  this.entityName = entityName;
153
247
  this.getMessage = getMessage;
154
248
  this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
155
249
  }
156
- initLoaders(dataUnit, attachFetcher, onSuccess) {
250
+ initLoaders(dataUnit, fetcher, onSuccess) {
157
251
  if (!this.loader)
158
252
  this.loader = dataUnit.dataLoader;
159
253
  dataUnit.dataLoader = (dataUnit, request) => this.dataLoader(dataUnit, request);
160
- dataUnit.saveLoader = (_, changes) => this.saveLoader(changes, attachFetcher).then((recordIds) => {
254
+ dataUnit.saveLoader = (_, changes) => this.saveLoader(changes, fetcher).then((recordIds) => {
161
255
  if (recordIds.length)
162
256
  onSuccess();
163
257
  return recordIds;
164
258
  });
165
- dataUnit.removeLoader = (dataUnit, ids) => this.removeLoader(dataUnit, ids, attachFetcher).then((recordIds) => {
259
+ dataUnit.removeLoader = (dataUnit, ids) => this.removeLoader(dataUnit, ids, fetcher).then((recordIds) => {
166
260
  if (recordIds.length)
167
261
  onSuccess();
168
262
  return recordIds;
169
263
  });
170
264
  }
265
+ metadataLoader(dataUnit) {
266
+ throw new Error("Method not implemented.");
267
+ }
171
268
  dataLoader(dataUnit, request) {
172
269
  return new Promise(resolve => {
173
270
  this.loader(dataUnit, request).then(response => {
@@ -183,11 +280,11 @@ class AttachmentDataUnitBuilder {
183
280
  });
184
281
  });
185
282
  }
186
- saveLoader(changes, attachFetcher) {
283
+ saveLoader(changes, fetcher) {
187
284
  return new Promise((resolve) => {
188
285
  var _a;
189
286
  const change = Array.isArray(changes) ? changes[0] : {};
190
- const savePromise = ((_a = change === null || change === void 0 ? void 0 : change.record) === null || _a === void 0 ? void 0 : _a.NUATTACH) >= 0 ? attachFetcher.edit.bind(attachFetcher) : attachFetcher.save.bind(attachFetcher);
287
+ const savePromise = ((_a = change === null || change === void 0 ? void 0 : change.record) === null || _a === void 0 ? void 0 : _a.NUATTACH) >= 0 ? fetcher.edit.bind(fetcher) : fetcher.save.bind(fetcher);
191
288
  savePromise(change).then((records) => {
192
289
  resolve(records);
193
290
  }).catch((error) => {
@@ -207,11 +304,11 @@ class AttachmentDataUnitBuilder {
207
304
  });
208
305
  });
209
306
  }
210
- removeLoader(dataUnit, ids, attachFetcher) {
307
+ removeLoader(dataUnit, ids, fetcher) {
211
308
  return new Promise((resolve) => {
212
309
  const { records } = dataUnit.getSelectionInfo();
213
310
  const recordToDelete = records[0];
214
- attachFetcher.delete(recordToDelete).then(() => {
311
+ fetcher.delete(recordToDelete).then(() => {
215
312
  PreloadManager.removeRecords(dataUnit, [recordToDelete]);
216
313
  return resolve(ids);
217
314
  });
@@ -252,6 +349,175 @@ class AttachmentDataUnitBuilder {
252
349
  }
253
350
  }
254
351
 
352
+ const application$1 = ApplicationContext.getContextValue("__SNK__APPLICATION__");
353
+ const getMessage$1 = (key) => {
354
+ var _a, _b;
355
+ return (_b = (_a = application$1 === null || application$1 === void 0 ? void 0 : application$1.messagesBuilder) === null || _a === void 0 ? void 0 : _a.getMessage) === null || _b === void 0 ? void 0 : _b.call(_a, key, null);
356
+ };
357
+ const attachCrudConfig = {
358
+ grid: {
359
+ columns: [
360
+ { name: "CODATA", orderIndex: 0, width: 0 },
361
+ { name: "DESCRICAO", orderIndex: 1, width: 0 },
362
+ { name: "ARQUIVO", orderIndex: 2, width: 0 },
363
+ { name: "DTALTER", orderIndex: 3, width: 0 },
364
+ { name: "USUARIO", orderIndex: 4, width: 0 },
365
+ ],
366
+ },
367
+ form: {
368
+ emptyConfig: false,
369
+ fields: [
370
+ {
371
+ name: "DESCRICAO",
372
+ label: getMessage$1("snkAttach.attachMetadata.lblDescription"),
373
+ visible: true,
374
+ readOnly: false,
375
+ required: true,
376
+ },
377
+ {
378
+ name: "CAMINHO_ARQUIVO",
379
+ label: getMessage$1("snkAttach.attachMetadata.lblFile"),
380
+ visible: true,
381
+ readOnly: false,
382
+ required: true,
383
+ },
384
+ ],
385
+ },
386
+ };
387
+ const attachFetcherMetadataBuilder = {
388
+ name: "Attach",
389
+ label: "Attach List",
390
+ fields: [
391
+ { name: "CODATA", label: getMessage$1("snkAttach.attachMetadata.lblCode"), dataType: DataType.TEXT },
392
+ { name: "DESCRICAO", label: getMessage$1("snkAttach.attachMetadata.lblDescription"), dataType: DataType.TEXT },
393
+ { name: "ARQUIVO", label: getMessage$1("snkAttach.attachMetadata.lblFileOrLink"), dataType: DataType.TEXT },
394
+ { name: "USUARIO", label: getMessage$1("snkAttach.attachMetadata.lblUser"), dataType: DataType.TEXT },
395
+ { name: "DTALTER", label: getMessage$1("snkAttach.attachMetadata.lblDate"), dataType: DataType.TEXT },
396
+ {
397
+ name: "CAMINHO_ARQUIVO",
398
+ label: getMessage$1("snkAttach.attachMetadata.lblFileUpload"),
399
+ dataType: DataType.OBJECT,
400
+ userInterface: UserInterface.FILE,
401
+ readOnly: false,
402
+ required: true,
403
+ visible: true,
404
+ properties: {
405
+ subTitle: getMessage$1("snkAttach.attachMetadata.lblSubTitle"),
406
+ MAX_FILES: 1,
407
+ STORAGESTRATEGY: "SESSION",
408
+ INTERNAL_FILENAME: "Attach.upload",
409
+ }
410
+ },
411
+ ],
412
+ };
413
+
414
+ const SERVICE_LOAD = "Attach.load";
415
+ class AttachFetcherDataUnitFactory {
416
+ constructor(getMessage) {
417
+ this.getMessage = getMessage;
418
+ this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
419
+ }
420
+ initLoaders(dataUnit, fetcher, onSuccess) {
421
+ dataUnit.metadataLoader = (dataUnit) => this.metadataLoader(dataUnit);
422
+ dataUnit.dataLoader = (dataUnit, request) => this.dataLoader(dataUnit, request);
423
+ dataUnit.saveLoader = (_, changes) => this.saveLoader(changes, fetcher).then((recordIds) => {
424
+ if (recordIds.length)
425
+ onSuccess();
426
+ return recordIds;
427
+ });
428
+ dataUnit.removeLoader = (dataUnit, ids) => this.removeLoader(dataUnit, ids, fetcher).then((recordIds) => {
429
+ if (recordIds.length)
430
+ onSuccess();
431
+ return recordIds;
432
+ });
433
+ }
434
+ metadataLoader(_) {
435
+ return Promise.resolve(attachFetcherMetadataBuilder);
436
+ }
437
+ async dataLoader(_, request) {
438
+ if (!request.source) {
439
+ return Promise.resolve({ records: [] });
440
+ }
441
+ const criteria = {
442
+ criteria: {
443
+ codata: request.source,
444
+ tipoAnexo: "N"
445
+ }
446
+ };
447
+ const applicationDataFetcher = await this._application.getDataFetcher();
448
+ const { anexos: { anexo = [] } } = await applicationDataFetcher.callServiceBroker(SERVICE_LOAD, JSON.stringify(criteria));
449
+ const records = [];
450
+ anexo.forEach((param) => {
451
+ records.push(Object.assign({ __record__id__: StringUtils.generateUUID(), CAMINHO_ARQUIVO: [{
452
+ name: param === null || param === void 0 ? void 0 : param.ARQUIVO,
453
+ }] }, param));
454
+ });
455
+ return Promise.resolve({ records });
456
+ }
457
+ saveLoader(changes, fetcher) {
458
+ return new Promise((resolve) => {
459
+ const change = Array.isArray(changes) ? changes[0] : {};
460
+ fetcher.save(change)
461
+ .then(resolve)
462
+ .catch((error) => {
463
+ if (error.message === SaveErrorsEnum.DESCRIPTION_CANNOT_BE_CHANGED) {
464
+ this._application.alert(this.getMessage('snkAttach.alertValidation.descriptionCannotBeChanged.title'), this.getMessage('snkAttach.alertValidation.descriptionCannotBeChanged.message'));
465
+ return resolve([]);
466
+ }
467
+ if (error.message === SaveErrorsEnum.LINK_AND_FILE_AT_THE_SAME_TIME) {
468
+ this._application.alert(this.getMessage('snkAttach.alertValidation.fileAndLinkAtTheSameTime.title'), this.getMessage('snkAttach.alertValidation.fileAndLinkAtTheSameTime.message'));
469
+ return resolve([]);
470
+ }
471
+ if (error.message === SaveErrorsEnum.ANY_LINK_OR_FILE_FILLED) {
472
+ this._application.alert(this.getMessage('snkAttach.alertValidation.anyLinkOrFileFilled.title'), this.getMessage('snkAttach.alertValidation.anyLinkOrFileFilled.message'));
473
+ return resolve([]);
474
+ }
475
+ if (error.message) {
476
+ this._application.error((error.title || error.name), error.message);
477
+ return resolve([]);
478
+ }
479
+ resolve([]);
480
+ });
481
+ });
482
+ }
483
+ removeLoader(dataUnit, ids, fetcher) {
484
+ return new Promise((resolve) => {
485
+ dataUnit.getSelectionInfo().records.forEach(async (record) => {
486
+ this._application.hasAccess(AutorizationType.REMOVE)
487
+ .then(async (hasAccess) => {
488
+ if (hasAccess) {
489
+ await fetcher.delete(record);
490
+ resolve(ids);
491
+ }
492
+ });
493
+ });
494
+ });
495
+ }
496
+ getFilters() {
497
+ throw new Error('Method not implemented.');
498
+ }
499
+ getInterceptions(dataUnit, action, crudRef) {
500
+ return new Promise((resolve) => {
501
+ if (action.type === Action.EDITION_CANCELED) {
502
+ if (!dataUnit.isDirty())
503
+ return resolve(action);
504
+ return this._application.confirm(this.getMessage('snkAttach.cancelConfirmation.title'), this.getMessage('snkAttach.cancelConfirmation.message')).then((cancellationConfirmed) => {
505
+ if (cancellationConfirmed) {
506
+ crudRef.goToView(VIEW_MODE.GRID);
507
+ return resolve(action);
508
+ }
509
+ return resolve(undefined);
510
+ });
511
+ }
512
+ if (action.type === Action.DATA_SAVED) {
513
+ dataUnit.loadData();
514
+ return resolve(action);
515
+ }
516
+ resolve(action);
517
+ });
518
+ }
519
+ }
520
+
255
521
  const application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
256
522
  const getMessage = (key) => {
257
523
  var _a, _b;
@@ -298,7 +564,7 @@ const buildTaskBarManager = () => {
298
564
  };
299
565
  };
300
566
 
301
- const crudConfig = {
567
+ const anexoSistemaCrudConfig = {
302
568
  grid: {
303
569
  columns: [
304
570
  { name: "ARQUIVOOULINK", orderIndex: 0, width: 0 },
@@ -345,40 +611,60 @@ const SnkAttach = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
345
611
  super();
346
612
  this.__registerHost();
347
613
  this.back = createEvent(this, "back", 7);
348
- this.handleTaskbarClick = ({ detail: taskbar }) => {
614
+ this.handleTaskbarClick = async ({ detail: taskbar }) => {
349
615
  if (["DOWNLOAD", "LINK"].includes(taskbar))
350
- return this.downloadAttachment(this.dataUnit.getSelectedRecord());
616
+ return this.downloadAttachment(this._currentDataUnit.getSelectedRecord());
617
+ if (this.fetcherType === "Attach" && ["SAVE"].includes(taskbar) && this._currentDataUnit.isDirty()) {
618
+ await this._currentDataUnit.setFieldValue("REGISTER_KEY", this.registerKey);
619
+ }
351
620
  };
352
621
  this.handleBack = () => {
353
- this.dataUnit.cancelEdition().then((cancelationConfirmed) => {
622
+ this._currentDataUnit.cancelEdition().then((cancelationConfirmed) => {
354
623
  if (cancelationConfirmed)
355
624
  this.back.emit();
356
625
  });
357
626
  };
358
627
  this.handleFinish = () => {
359
- if (!this.dataUnit.isDirty())
628
+ if (!this._currentDataUnit.isDirty())
360
629
  return this.back.emit();
361
- this.dataUnit.saveData().then(() => {
630
+ this._currentDataUnit.saveData().then(() => {
362
631
  this.showFinishedToast();
363
632
  this.back.emit();
364
633
  });
365
634
  };
635
+ this.fetcherType = "AnexoSistema";
636
+ this.fetcher = undefined;
637
+ this.dataUnit = undefined;
638
+ this.dataUnitBuilder = undefined;
366
639
  this.registerKey = undefined;
367
640
  this.entityName = undefined;
368
641
  this.messagesBuilder = undefined;
369
- this.dataUnit = undefined;
642
+ this._currentFetcher = undefined;
643
+ this._currentDataUnit = undefined;
370
644
  this.crudConfig = undefined;
371
645
  }
372
646
  registerKeyWatcher(newRegisterKey, oldRegisterKey) {
373
- var _a;
374
- if (this.dataUnit == null) {
647
+ var _a, _b, _c, _d;
648
+ if (this._currentDataUnit == null) {
375
649
  this.loadAttachmentDataUnit();
376
650
  }
377
651
  if (oldRegisterKey !== newRegisterKey) {
378
652
  this.returnToGridMode();
379
- this._attachFetcher = new AttachFetcher(this.entityName, this.registerKey, (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.name);
380
- this._dataUnitBuilder.initLoaders(this.dataUnit, this._attachFetcher, () => { this.returnToGridMode(); });
381
- this.dataUnit.loadData();
653
+ if (this.fetcherType === "AnexoSistema") {
654
+ this._currentFetcher = new AnexoSistemaFetcher(this.entityName, this.registerKey, (_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.name);
655
+ (_b = this._currentDataUnitBuilder) === null || _b === void 0 ? void 0 : _b.initLoaders(this._currentDataUnit, this._currentFetcher, this.returnToGridMode.bind(this));
656
+ return (_c = this._currentDataUnit) === null || _c === void 0 ? void 0 : _c.loadData();
657
+ }
658
+ if (this.fetcherType === "Attach") {
659
+ const hasMoreOneItem = ((_d = this.registerKey) === null || _d === void 0 ? void 0 : _d.split("_").length) > 1;
660
+ if (hasMoreOneItem)
661
+ return;
662
+ }
663
+ return this._currentDataUnit
664
+ .loadMetadata()
665
+ .then(() => {
666
+ this._currentDataUnit.loadData(undefined, undefined, true, this.registerKey);
667
+ });
382
668
  }
383
669
  }
384
670
  /**
@@ -401,44 +687,90 @@ const SnkAttach = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
401
687
  window.open(`${selectedRecord.LINK}`);
402
688
  return;
403
689
  }
404
- this._attachFetcher.getDownloadKey(selectedRecord).then(({ chave }) => {
405
- window.open(`/mge/visualizadorArquivos.mge?chaveArquivo=${chave.valor}&forcarDownload=S`);
690
+ this._currentFetcher
691
+ .getDownloadKey(selectedRecord)
692
+ .then(({ chave }) => {
693
+ var _a;
694
+ let forceDownload = false;
695
+ if (!((_a = selectedRecord === null || selectedRecord === void 0 ? void 0 : selectedRecord.ARQUIVO) === null || _a === void 0 ? void 0 : _a.endsWith(".pdf"))) {
696
+ forceDownload = true;
697
+ }
698
+ window.open(`/mge/visualizadorArquivos.mge?chaveArquivo=${chave.valor}${forceDownload ? "&forcarDownload=S" : ""}`);
406
699
  });
407
700
  }
408
701
  returnToGridMode() {
409
- this.dataUnit.clearSelection();
702
+ var _a;
703
+ (_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.clearSelection();
410
704
  if (this._crudElement)
411
705
  this._crudElement.goToView(VIEW_MODE.GRID);
412
706
  }
413
707
  loadAttachmentDataUnit() {
414
- var _a;
415
708
  try {
416
- const dataUnit = this.dataUnit || new DataUnitFetcher().getDataUnit(RESOURCE_ID, DATA_UNIT_NAME);
417
- this._attachFetcher = new AttachFetcher(this.entityName, this.registerKey, (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.name);
418
- if (!dataUnit.metadata)
419
- dataUnit.loadMetadata().then(() => {
420
- this.crudConfig = crudConfig;
421
- });
422
- this._dataUnitBuilder = new AttachmentDataUnitBuilder(this.entityName, this.getMessage.bind(this));
423
- dataUnit.addFilterProvider({ getFilter: () => this._dataUnitBuilder.getFilters(this.registerKey) });
424
- dataUnit.addInterceptor({ interceptAction: (action) => this._dataUnitBuilder.getInterceptions(dataUnit, action, this._crudElement) });
425
- this.dataUnit = dataUnit;
426
- this.dataUnit.loadData().then(() => {
427
- this.disableEditFieldsNotInForm();
428
- });
429
- return this.dataUnit;
709
+ switch (this.fetcherType) {
710
+ case "AnexoSistema":
711
+ this.loadAnexoSistema();
712
+ break;
713
+ case "Attach":
714
+ this.loadAttach();
715
+ break;
716
+ default:
717
+ this._currentFetcher = this.fetcher;
718
+ this._currentDataUnit = this.dataUnit;
719
+ this._currentDataUnitBuilder = this.dataUnitBuilder;
720
+ }
430
721
  }
431
722
  catch (error) {
432
723
  throw new Error('There was an error while creating the data unit');
433
724
  }
434
725
  }
726
+ loadAnexoSistema() {
727
+ var _a;
728
+ this._currentDataUnit = this._currentDataUnit || new DataUnitFetcher().getDataUnit(RESOURCE_ID, DATA_UNIT_NAME);
729
+ this._currentFetcher = new AnexoSistemaFetcher(this.entityName, this.registerKey, (_a = this._currentDataUnit) === null || _a === void 0 ? void 0 : _a.name);
730
+ if (!this._currentDataUnit.metadata) {
731
+ this._currentDataUnit
732
+ .loadMetadata()
733
+ .then(() => this.crudConfig = anexoSistemaCrudConfig);
734
+ }
735
+ this._currentDataUnitBuilder = new AnexoSistemaDataUnitFactory(this.entityName, this.getMessage.bind(this));
736
+ this._currentDataUnit.addFilterProvider({
737
+ getFilter: () => this._currentDataUnitBuilder.getFilters(this.registerKey)
738
+ });
739
+ this._currentDataUnit.addInterceptor({
740
+ interceptAction: (action) => this._currentDataUnitBuilder.getInterceptions(this._currentDataUnit, action, this._crudElement)
741
+ });
742
+ this._currentDataUnit.loadData().then(this.disableEditFieldsNotInForm.bind(this));
743
+ }
744
+ loadAttach() {
745
+ var _a;
746
+ this._currentFetcher = new AttachFetcher();
747
+ this._currentDataUnit = new DataUnit();
748
+ this._currentDataUnit.addInterceptor({
749
+ interceptAction: (action) => this._currentDataUnitBuilder.getInterceptions(this._currentDataUnit, action, this._crudElement)
750
+ });
751
+ this._currentDataUnitBuilder = new AttachFetcherDataUnitFactory(this.getMessage.bind(this));
752
+ (_a = this._currentDataUnitBuilder) === null || _a === void 0 ? void 0 : _a.initLoaders(this._currentDataUnit, this._currentFetcher, async () => {
753
+ await this._currentDataUnit.loadData(undefined, undefined, true, this.registerKey);
754
+ this.returnToGridMode();
755
+ });
756
+ if (!this._currentDataUnit.metadata) {
757
+ this._currentDataUnit
758
+ .loadMetadata()
759
+ .then(() => {
760
+ this.crudConfig = attachCrudConfig;
761
+ this._currentDataUnit
762
+ .loadData(undefined, undefined, true, this.registerKey)
763
+ .then(this.disableEditFieldsNotInForm.bind(this));
764
+ });
765
+ }
766
+ }
435
767
  disableEditFieldsNotInForm() {
436
768
  var _a;
437
769
  (_a = this.crudConfig) === null || _a === void 0 ? void 0 : _a.grid.columns.forEach(column => {
438
770
  var _a;
439
771
  const fieldName = column.name;
440
772
  if (!((_a = this.crudConfig) === null || _a === void 0 ? void 0 : _a.form.fields.some(field => field.name === fieldName))) {
441
- this.dataUnit.disableField(fieldName);
773
+ this._currentDataUnit.disableField(fieldName);
442
774
  }
443
775
  });
444
776
  }
@@ -446,25 +778,30 @@ const SnkAttach = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
446
778
  this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
447
779
  }
448
780
  componentWillRender() {
449
- if (this.dataUnit == null) {
781
+ if (this._currentDataUnit == null) {
450
782
  this.loadAttachmentDataUnit();
451
783
  }
452
784
  }
453
785
  render() {
454
786
  var _a, _b;
455
- if (!this.dataUnit)
787
+ if (!this._currentDataUnit)
456
788
  return null;
457
- return (h("main", { class: "snk-attach__main" }, h("header", { class: "snk-attach__header" }, h("snk-simple-bar", { onExit: this.handleBack, messagesBuilder: this.messagesBuilder }, h("div", { slot: "rightSlot" }, h("ez-button", { class: "ez-button--primary", label: this.getMessage("snkAttach.finish"), onClick: this.handleFinish })))), h("div", { class: "snk-attach__crud-section ez-size-height--full ez-size-width--full ez-flex ez-flex--column" }, h("div", { class: "ez-box__container" }, h("snk-simple-crud", { ref: (el) => this._crudElement = el, dataUnit: this.dataUnit, taskbarManager: buildTaskBarManager(), gridConfig: (_a = this.crudConfig) === null || _a === void 0 ? void 0 : _a.grid, formConfig: (_b = this.crudConfig) === null || _b === void 0 ? void 0 : _b.form, useCancelConfirm: false, onActionClick: this.handleTaskbarClick, messagesBuilder: this.messagesBuilder }, h("div", { slot: "snkSimpleCrudHeader" }, h("div", { class: "ez-flex ez-flex--column" }, h("span", { class: "ez-title--primary ez-text ez-text--large ez-text--bold ez-padding-bottom--medium" }, this.getMessage("snkAttach.title")), h("span", { class: "ez-text ez-text--medium ez-text--secondary" }, this.getMessage("snkAttach.description")))))))));
789
+ return (h("main", { class: "snk-attach__main" }, h("header", { class: "snk-attach__header" }, h("snk-simple-bar", { onExit: this.handleBack, messagesBuilder: this.messagesBuilder }, h("div", { slot: "rightSlot" }, h("ez-button", { class: "ez-button--primary", label: this.getMessage("snkAttach.finish"), onClick: this.handleFinish })))), h("div", { class: "snk-attach__crud-section ez-size-height--full ez-size-width--full ez-flex ez-flex--column" }, h("div", { class: "ez-box__container" }, h("snk-simple-crud", { ref: (el) => this._crudElement = el, dataUnit: this._currentDataUnit, taskbarManager: buildTaskBarManager(), gridConfig: (_a = this.crudConfig) === null || _a === void 0 ? void 0 : _a.grid, formConfig: (_b = this.crudConfig) === null || _b === void 0 ? void 0 : _b.form, useCancelConfirm: false, onActionClick: this.handleTaskbarClick, messagesBuilder: this.messagesBuilder }, h("div", { slot: "snkSimpleCrudHeader" }, h("div", { class: "ez-flex ez-flex--column" }, h("span", { class: "ez-title--primary ez-text ez-text--large ez-text--bold ez-padding-bottom--medium" }, this.getMessage("snkAttach.title")), h("span", { class: "ez-text ez-text--medium ez-text--secondary" }, this.getMessage("snkAttach.description")))))))));
458
790
  }
459
791
  static get watchers() { return {
460
792
  "registerKey": ["registerKeyWatcher"]
461
793
  }; }
462
794
  static get style() { return snkAttachCss; }
463
795
  }, [2, "snk-attach", {
796
+ "fetcherType": [1, "fetcher-type"],
797
+ "fetcher": [16],
798
+ "dataUnit": [16],
799
+ "dataUnitBuilder": [16],
464
800
  "registerKey": [1, "register-key"],
465
801
  "entityName": [1, "entity-name"],
466
802
  "messagesBuilder": [1040],
467
- "dataUnit": [32],
803
+ "_currentFetcher": [32],
804
+ "_currentDataUnit": [32],
468
805
  "crudConfig": [32]
469
806
  }]);
470
807
  function defineCustomElement() {