@sankhyalabs/sankhyablocks 8.1.0 → 8.2.0-dev.2

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 (221) hide show
  1. package/dist/cjs/{ConfigStorage-73e7afff.js → ConfigStorage-12397f18.js} +163 -51
  2. package/dist/cjs/{DataFetcher-004811c6.js → DataFetcher-f2da1f79.js} +68 -30
  3. package/dist/cjs/ISave-d68ce3cd.js +8 -0
  4. package/dist/cjs/ResourceIDUtils-5ff86aa7.js +12 -0
  5. package/dist/cjs/{SnkFormConfigManager-d1f1a222.js → SnkFormConfigManager-13f79e37.js} +19 -21
  6. package/dist/cjs/auth-fetcher-319a4cb2.js +34 -0
  7. package/dist/cjs/{dataunit-fetcher-029eafbd.js → dataunit-fetcher-e72068c1.js} +1 -1
  8. package/dist/cjs/{form-config-fetcher-181767c9.js → form-config-fetcher-5d62ab62.js} +66 -3
  9. package/dist/cjs/loader.cjs.js +1 -1
  10. package/dist/cjs/{pesquisa-fetcher-9a97994a.js → pesquisa-fetcher-8c363096.js} +1 -1
  11. package/dist/cjs/sankhyablocks.cjs.js +1 -1
  12. package/dist/cjs/snk-actions-button.cjs.entry.js +18 -11
  13. package/dist/cjs/snk-application.cjs.entry.js +51 -73
  14. package/dist/cjs/snk-attach.cjs.entry.js +7 -13
  15. package/dist/cjs/snk-configurator.cjs.entry.js +2 -1
  16. package/dist/cjs/snk-crud.cjs.entry.js +28 -9
  17. package/dist/cjs/snk-data-exporter.cjs.entry.js +2 -2
  18. package/dist/cjs/{snk-data-unit-d5109a08.js → snk-data-unit-80a00ae4.js} +8 -6
  19. package/dist/cjs/snk-data-unit.cjs.entry.js +1 -1
  20. package/dist/cjs/snk-detail-view.cjs.entry.js +18 -25
  21. package/dist/cjs/snk-entity-list.cjs.entry.js +0 -4
  22. package/dist/cjs/snk-filter-bar.cjs.entry.js +14 -17
  23. package/dist/cjs/snk-filter-detail.cjs.entry.js +1 -15
  24. package/dist/cjs/snk-filter-modal-item.cjs.entry.js +5 -19
  25. package/dist/cjs/snk-form-config.cjs.entry.js +6 -17
  26. package/dist/cjs/snk-form-view.cjs.entry.js +6 -1
  27. package/dist/cjs/snk-form.cjs.entry.js +12 -8
  28. package/dist/cjs/snk-grid-config.cjs.entry.js +5 -6
  29. package/dist/cjs/snk-grid.cjs.entry.js +20 -20
  30. package/dist/cjs/{snk-guides-viewer-aa3e3bfa.js → snk-guides-viewer-a7cd6fda.js} +18 -9
  31. package/dist/cjs/snk-guides-viewer.cjs.entry.js +8 -8
  32. package/dist/cjs/snk-personalized-filter.cjs.entry.js +13 -16
  33. package/dist/cjs/snk-print-selector.cjs.entry.js +1 -1
  34. package/dist/cjs/snk-simple-crud.cjs.entry.js +43 -92
  35. package/dist/cjs/snk-taskbar.cjs.entry.js +2 -1
  36. package/dist/collection/components/snk-actions-button/actions/index.js +3 -4
  37. package/dist/collection/components/snk-actions-button/snk-actions-button.js +8 -4
  38. package/dist/collection/components/snk-application/snk-application.js +60 -65
  39. package/dist/collection/components/snk-configurator/snk-configurator.js +19 -1
  40. package/dist/collection/components/snk-crud/snk-crud.js +63 -8
  41. package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js +65 -15
  42. package/dist/collection/components/snk-crud/subcomponents/snk-form-view.js +27 -1
  43. package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +66 -30
  44. package/dist/collection/components/snk-data-unit/snk-data-unit.js +42 -7
  45. package/dist/collection/components/snk-entity-list/snk-entity-list.js +0 -23
  46. package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-detail.js +2 -12
  47. package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.js +1 -1
  48. package/dist/collection/components/snk-filter-bar/filter-modal/subcomponents/snk-filter-modal-item.js +21 -16
  49. package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +28 -12
  50. package/dist/collection/components/snk-form/SnkFormConfigManager.js +17 -19
  51. package/dist/collection/components/snk-form/snk-form.js +46 -2
  52. package/dist/collection/components/snk-form/subcomponents/snk-form-config/snk-form-config.js +5 -15
  53. package/dist/collection/components/snk-grid/snk-grid.js +110 -16
  54. package/dist/collection/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.js +19 -1
  55. package/dist/collection/components/snk-personalized-filter/snk-personalized-filter.js +28 -12
  56. package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +43 -9
  57. package/dist/collection/components/snk-taskbar/snk-taskbar.js +19 -1
  58. package/dist/collection/lib/configs/ConfigStorage.js +33 -44
  59. package/dist/collection/lib/dataUnit/InMemoryLoader.js +23 -71
  60. package/dist/collection/lib/http/data-fetcher/DataFetcher.js +39 -30
  61. package/dist/collection/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.js +0 -24
  62. package/dist/collection/lib/index.js +10 -0
  63. package/dist/collection/lib/resourceid/ResourceIDUtils.js +7 -0
  64. package/dist/collection/lib/utils/urlutils.js +29 -0
  65. package/dist/components/ConfigStorage.js +161 -48
  66. package/dist/components/DataFetcher.js +68 -30
  67. package/dist/components/ResourceIDUtils.js +10 -0
  68. package/dist/components/SnkFormConfigManager.js +17 -19
  69. package/dist/components/auth-fetcher.js +32 -0
  70. package/dist/components/form-config-fetcher.js +64 -2
  71. package/dist/components/snk-actions-button2.js +23 -9
  72. package/dist/components/snk-application2.js +132 -154
  73. package/dist/components/snk-attach2.js +1 -8
  74. package/dist/components/snk-configurator2.js +3 -1
  75. package/dist/components/snk-crud.js +29 -7
  76. package/dist/components/snk-data-unit2.js +10 -6
  77. package/dist/components/snk-detail-view2.js +28 -23
  78. package/dist/components/snk-entity-list.js +0 -4
  79. package/dist/components/snk-filter-bar2.js +12 -12
  80. package/dist/components/snk-filter-detail2.js +2 -12
  81. package/dist/components/snk-filter-modal-item2.js +5 -16
  82. package/dist/components/snk-form-config2.js +5 -15
  83. package/dist/components/snk-form-view2.js +6 -1
  84. package/dist/components/snk-form.js +9 -2
  85. package/dist/components/snk-grid-config2.js +4 -2
  86. package/dist/components/snk-grid2.js +23 -16
  87. package/dist/components/snk-personalized-filter2.js +11 -11
  88. package/dist/components/snk-simple-crud2.js +33 -81
  89. package/dist/components/snk-taskbar2.js +3 -1
  90. package/dist/esm/{ConfigStorage-19a7260b.js → ConfigStorage-932ab366.js} +162 -49
  91. package/dist/esm/{DataFetcher-e0fc5549.js → DataFetcher-7e18aa30.js} +68 -30
  92. package/dist/esm/ISave-4412b20c.js +8 -0
  93. package/dist/esm/ResourceIDUtils-a114189a.js +10 -0
  94. package/dist/esm/{SnkFormConfigManager-1a42eb02.js → SnkFormConfigManager-bb9afc3f.js} +19 -21
  95. package/dist/esm/auth-fetcher-6d9664b7.js +32 -0
  96. package/dist/esm/{dataunit-fetcher-6a695723.js → dataunit-fetcher-91a4eb82.js} +1 -1
  97. package/dist/esm/{form-config-fetcher-9e167008.js → form-config-fetcher-aaaa79a6.js} +65 -3
  98. package/dist/esm/loader.js +1 -1
  99. package/dist/esm/{pesquisa-fetcher-9118eb7a.js → pesquisa-fetcher-56b30fb4.js} +1 -1
  100. package/dist/esm/sankhyablocks.js +1 -1
  101. package/dist/esm/snk-actions-button.entry.js +18 -11
  102. package/dist/esm/snk-application.entry.js +49 -71
  103. package/dist/esm/snk-attach.entry.js +3 -9
  104. package/dist/esm/snk-configurator.entry.js +2 -1
  105. package/dist/esm/snk-crud.entry.js +28 -9
  106. package/dist/esm/snk-data-exporter.entry.js +2 -2
  107. package/dist/esm/{snk-data-unit-3a0bbfcb.js → snk-data-unit-3ab57d1a.js} +8 -6
  108. package/dist/esm/snk-data-unit.entry.js +1 -1
  109. package/dist/esm/snk-detail-view.entry.js +18 -25
  110. package/dist/esm/snk-entity-list.entry.js +0 -4
  111. package/dist/esm/snk-filter-bar.entry.js +14 -17
  112. package/dist/esm/snk-filter-detail.entry.js +2 -16
  113. package/dist/esm/snk-filter-modal-item.entry.js +6 -20
  114. package/dist/esm/snk-form-config.entry.js +7 -18
  115. package/dist/esm/snk-form-view.entry.js +6 -1
  116. package/dist/esm/snk-form.entry.js +12 -8
  117. package/dist/esm/snk-grid-config.entry.js +5 -6
  118. package/dist/esm/snk-grid.entry.js +20 -20
  119. package/dist/esm/{snk-guides-viewer-aa386f6e.js → snk-guides-viewer-cc709b5f.js} +18 -9
  120. package/dist/esm/snk-guides-viewer.entry.js +8 -8
  121. package/dist/esm/snk-personalized-filter.entry.js +13 -16
  122. package/dist/esm/snk-print-selector.entry.js +1 -1
  123. package/dist/esm/snk-simple-crud.entry.js +34 -83
  124. package/dist/esm/snk-taskbar.entry.js +2 -1
  125. package/dist/sankhyablocks/p-01739b21.entry.js +1 -0
  126. package/dist/sankhyablocks/{p-e7e54737.entry.js → p-03bb1aea.entry.js} +1 -1
  127. package/dist/sankhyablocks/p-05dbc70e.entry.js +1 -0
  128. package/dist/sankhyablocks/{p-0a4c753d.js → p-14eac6fe.js} +1 -1
  129. package/dist/sankhyablocks/{p-2ac9c585.js → p-2d333d22.js} +1 -1
  130. package/dist/sankhyablocks/p-41e897f1.js +56 -0
  131. package/dist/sankhyablocks/p-48a40939.js +1 -0
  132. package/dist/sankhyablocks/p-611aa624.entry.js +1 -0
  133. package/dist/sankhyablocks/p-66bb8c20.entry.js +1 -0
  134. package/dist/sankhyablocks/p-688dcb4c.js +1 -0
  135. package/dist/sankhyablocks/p-6f154396.entry.js +1 -0
  136. package/dist/sankhyablocks/p-787071a8.js +1 -0
  137. package/dist/sankhyablocks/p-8818d8f6.entry.js +1 -0
  138. package/dist/sankhyablocks/p-93f6ca04.entry.js +1 -0
  139. package/dist/sankhyablocks/p-9a270401.entry.js +1 -0
  140. package/dist/sankhyablocks/p-9e7d65a4.js +1 -0
  141. package/dist/sankhyablocks/p-a52a6c9d.js +26 -0
  142. package/dist/sankhyablocks/p-b6003974.entry.js +1 -0
  143. package/dist/sankhyablocks/p-c555075c.entry.js +1 -0
  144. package/dist/sankhyablocks/p-cfb33a4a.entry.js +1 -0
  145. package/dist/sankhyablocks/{p-7c7764bf.entry.js → p-d13c00b6.entry.js} +1 -1
  146. package/dist/sankhyablocks/p-d4f9ee17.entry.js +1 -0
  147. package/dist/sankhyablocks/p-d53a9169.entry.js +1 -0
  148. package/dist/sankhyablocks/p-d7638f45.entry.js +11 -0
  149. package/dist/sankhyablocks/p-e086cc2a.entry.js +1 -0
  150. package/dist/sankhyablocks/p-e64f3e17.entry.js +1 -0
  151. package/dist/sankhyablocks/p-ed41b38c.js +1 -0
  152. package/dist/sankhyablocks/p-ed705cbb.entry.js +1 -0
  153. package/dist/sankhyablocks/p-efc10705.entry.js +1 -0
  154. package/dist/sankhyablocks/p-f74fe358.js +1 -0
  155. package/dist/sankhyablocks/{p-df8621b4.js → p-f8e6b97e.js} +1 -1
  156. package/dist/sankhyablocks/p-f91e0c5d.entry.js +1 -0
  157. package/dist/sankhyablocks/p-fa523d6b.entry.js +1 -0
  158. package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
  159. package/dist/types/components/snk-actions-button/actions/index.d.ts +2 -1
  160. package/dist/types/components/snk-application/snk-application.d.ts +8 -13
  161. package/dist/types/components/snk-configurator/snk-configurator.d.ts +4 -0
  162. package/dist/types/components/snk-crud/snk-crud.d.ts +10 -0
  163. package/dist/types/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.d.ts +13 -0
  164. package/dist/types/components/snk-crud/subcomponents/snk-form-view.d.ts +5 -0
  165. package/dist/types/components/snk-crud/subcomponents/snk-guides-viewer.d.ts +13 -2
  166. package/dist/types/components/snk-data-unit/snk-data-unit.d.ts +8 -0
  167. package/dist/types/components/snk-entity-list/snk-entity-list.d.ts +0 -4
  168. package/dist/types/components/snk-filter-bar/filter-item/snk-filter-detail.d.ts +0 -3
  169. package/dist/types/components/snk-filter-bar/filter-modal/snk-filter-modal.d.ts +1 -1
  170. package/dist/types/components/snk-filter-bar/filter-modal/subcomponents/snk-filter-modal-item.d.ts +5 -4
  171. package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +4 -0
  172. package/dist/types/components/snk-form/SnkFormConfigManager.d.ts +5 -4
  173. package/dist/types/components/snk-form/snk-form.d.ts +9 -1
  174. package/dist/types/components/snk-form/subcomponents/snk-form-config/snk-form-config.d.ts +0 -2
  175. package/dist/types/components/snk-grid/snk-grid.d.ts +18 -1
  176. package/dist/types/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.d.ts +4 -0
  177. package/dist/types/components/snk-personalized-filter/snk-personalized-filter.d.ts +5 -1
  178. package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +8 -0
  179. package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +4 -0
  180. package/dist/types/components.d.ts +189 -21
  181. package/dist/types/lib/configs/ConfigStorage.d.ts +11 -13
  182. package/dist/types/lib/dataUnit/InMemoryLoader.d.ts +2 -8
  183. package/dist/types/lib/http/data-fetcher/DataFetcher.d.ts +1 -1
  184. package/dist/types/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.d.ts +0 -1
  185. package/dist/types/lib/index.d.ts +11 -0
  186. package/dist/types/lib/resourceid/ResourceIDUtils.d.ts +3 -0
  187. package/dist/types/lib/utils/urlutils.d.ts +14 -0
  188. package/package.json +2 -2
  189. package/dist/cjs/filter-bar-config-fetcher-2b8ed9d0.js +0 -155
  190. package/dist/cjs/resource-fetcher-c0332609.js +0 -68
  191. package/dist/components/filter-bar-config-fetcher.js +0 -153
  192. package/dist/components/resource-fetcher.js +0 -66
  193. package/dist/esm/filter-bar-config-fetcher-06e02851.js +0 -153
  194. package/dist/esm/resource-fetcher-768d5556.js +0 -66
  195. package/dist/sankhyablocks/p-0a94fdbd.entry.js +0 -1
  196. package/dist/sankhyablocks/p-0ed0fc02.entry.js +0 -1
  197. package/dist/sankhyablocks/p-1e0189ff.entry.js +0 -1
  198. package/dist/sankhyablocks/p-216f081a.entry.js +0 -1
  199. package/dist/sankhyablocks/p-50d72261.entry.js +0 -1
  200. package/dist/sankhyablocks/p-6759adae.entry.js +0 -1
  201. package/dist/sankhyablocks/p-7b8b8ae9.js +0 -10
  202. package/dist/sankhyablocks/p-815a42c0.entry.js +0 -1
  203. package/dist/sankhyablocks/p-8a41172a.entry.js +0 -1
  204. package/dist/sankhyablocks/p-8f8184ff.js +0 -56
  205. package/dist/sankhyablocks/p-8fdc3108.js +0 -1
  206. package/dist/sankhyablocks/p-976e56e9.js +0 -1
  207. package/dist/sankhyablocks/p-98f9d076.js +0 -17
  208. package/dist/sankhyablocks/p-9edad923.js +0 -1
  209. package/dist/sankhyablocks/p-abdcac04.entry.js +0 -1
  210. package/dist/sankhyablocks/p-b0847056.entry.js +0 -1
  211. package/dist/sankhyablocks/p-bc735728.entry.js +0 -1
  212. package/dist/sankhyablocks/p-be684b38.entry.js +0 -1
  213. package/dist/sankhyablocks/p-befbc9ee.entry.js +0 -1
  214. package/dist/sankhyablocks/p-c0f656af.entry.js +0 -1
  215. package/dist/sankhyablocks/p-c6380ea2.entry.js +0 -1
  216. package/dist/sankhyablocks/p-ccbfb1cf.entry.js +0 -1
  217. package/dist/sankhyablocks/p-d1b89765.js +0 -1
  218. package/dist/sankhyablocks/p-de69b4b0.entry.js +0 -1
  219. package/dist/sankhyablocks/p-e28129aa.entry.js +0 -1
  220. package/dist/sankhyablocks/p-f31bfdee.entry.js +0 -1
  221. package/dist/sankhyablocks/p-f92fda53.entry.js +0 -11
@@ -4,44 +4,61 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-f9e81701.js');
6
6
  const core = require('@sankhyalabs/core');
7
- const constants$1 = require('./constants-d187e03e.js');
7
+ const constants = require('./constants-d187e03e.js');
8
8
  const taskbarElements = require('./taskbar-elements-b98dd6e9.js');
9
- require('./DataFetcher-004811c6.js');
10
- require('./pesquisa-fetcher-9a97994a.js');
9
+ require('./DataFetcher-f2da1f79.js');
10
+ require('./pesquisa-fetcher-8c363096.js');
11
11
  const index$1 = require('./index-0e663819.js');
12
+ require('./ISave-d68ce3cd.js');
13
+ require('@sankhyalabs/ezui/dist/collection/utils/constants');
14
+ require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
15
+ require('./filter-item-type.enum-aa823a00.js');
16
+ require('./form-config-fetcher-5d62ab62.js');
12
17
  const taskbarProcessor = require('./taskbar-processor-bce3f499.js');
13
- const constants = require('@sankhyalabs/ezui/dist/collection/utils/constants');
14
18
  const SnkMultiSelectionListDataSource = require('./SnkMultiSelectionListDataSource-804ff4c7.js');
15
19
  require('./index-102ba62d.js');
16
20
  require('./_commonjsHelpers-537d719a.js');
17
- require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
18
21
 
19
22
  class InMemoryLoader {
20
23
  constructor(metadata, records) {
21
- this.records = records || [];
24
+ this.records = records;
22
25
  this.metadata = metadata;
23
26
  this._dataUnit = new core.DataUnit(InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME);
24
27
  this._dataUnit.metadataLoader = () => this.metadaLoader();
25
- this._dataUnit.dataLoader = (dataUnit, request) => this.dataLoader(dataUnit, request);
28
+ this._dataUnit.dataLoader = (dataUnit, request) => core.defaultDataLoader(dataUnit, request, this.getRecordsToLoad());
26
29
  this._dataUnit.saveLoader = (_dataUnit, changes) => this.saveLoader(_dataUnit, changes);
27
30
  this._dataUnit.removeLoader = (_dataUnit, recordIds) => this.removeLoader(_dataUnit, recordIds);
28
31
  this.dataUnit.loadMetadata().then(() => this.dataUnit.loadData());
29
32
  }
33
+ getRecordsToLoad() {
34
+ if (this._initialRecords) {
35
+ try {
36
+ return this._initialRecords;
37
+ }
38
+ finally {
39
+ this._initialRecords = undefined;
40
+ }
41
+ }
42
+ return this.dataUnit.records;
43
+ }
30
44
  get dataUnit() {
31
45
  return this._dataUnit;
32
46
  }
33
47
  get records() {
34
- return this._records;
48
+ return this.dataUnit.records;
35
49
  }
36
50
  set records(records) {
37
- this._records = records === null || records === void 0 ? void 0 : records.map(record => {
51
+ const newRecords = records === null || records === void 0 ? void 0 : records.map(record => {
38
52
  if (!record["__record__id__"]) {
39
53
  record["__record__id__"] = this.generateUniqueId();
40
54
  }
41
55
  return record;
42
56
  });
43
57
  if (this._dataUnit) {
44
- this._dataUnit.records = [...this._records];
58
+ this._dataUnit.records = newRecords;
59
+ }
60
+ else {
61
+ this._initialRecords = newRecords;
45
62
  }
46
63
  }
47
64
  get metadata() {
@@ -59,76 +76,16 @@ class InMemoryLoader {
59
76
  metadaLoader() {
60
77
  return Promise.resolve(this._metadata);
61
78
  }
62
- dataLoader(dataUnit, request) {
63
- const filters = this.getColumnFilters(dataUnit);
64
- let records = this.applyFilters(filters);
65
- if (request.sort) {
66
- request.sort.forEach(sort => {
67
- records = records.sort((recordA, recordB) => {
68
- const fieldA = recordA[sort.field];
69
- const fieldB = recordB[sort.field];
70
- const sortFn = this.getSortFn(sort.dataType);
71
- return sortFn(fieldA, fieldB) * (sort.mode == core.SortMode.ASC ? 1 : -1);
72
- });
73
- });
74
- }
75
- return Promise.resolve({ records: records });
76
- }
77
- applyFilters(filters) {
78
- let records = [...this._records];
79
- filters.forEach(filter => {
80
- records = records.filter(record => { var _a; return filter.values.includes((_a = record[filter.column]) === null || _a === void 0 ? void 0 : _a.toString()); });
81
- });
82
- return records;
83
- }
84
- getColumnFilters(dataUnit) {
85
- var _a, _b;
86
- const allFilters = (_a = dataUnit.getFilters()) !== null && _a !== void 0 ? _a : [];
87
- const columnFilters = (_b = allFilters.filter(filter => { var _a; return (_a = filter.name) === null || _a === void 0 ? void 0 : _a.includes(constants.DISTINCT_FILTER_NAME_PREFIX); })) !== null && _b !== void 0 ? _b : [];
88
- return columnFilters.map(filter => {
89
- var _a, _b;
90
- return {
91
- column: (_b = (_a = filter.name) === null || _a === void 0 ? void 0 : _a.replace(constants.DISTINCT_FILTER_NAME_PREFIX, "")) !== null && _b !== void 0 ? _b : "",
92
- values: filter.params.map(param => param.value),
93
- };
94
- });
95
- }
96
- getSortFn(type) {
97
- switch (type) {
98
- case core.DataType.NUMBER:
99
- return this.sortNumber;
100
- case core.DataType.DATE:
101
- return this.sortDate;
102
- case core.DataType.OBJECT:
103
- return this.sortObject;
104
- default:
105
- return core.StringUtils.compare;
106
- }
107
- }
108
- sortObject(a, b) {
109
- return core.StringUtils.compare(a === null || a === void 0 ? void 0 : a["label"], b === null || b === void 0 ? void 0 : b["label"]);
110
- }
111
- sortNumber(a, b) {
112
- return a - b;
113
- }
114
- sortDate(a, b) {
115
- let timeA = a.getTime(), timeB = b.getTime();
116
- return timeA === timeB ? 0 : (timeA < timeB ? -1 : 1);
117
- }
118
79
  saveLoader(_dataUnit, changes) {
119
80
  return new Promise((resolve) => {
120
81
  let dataUnitRecords = [];
121
82
  changes.forEach(change => {
122
83
  let { record, updatingFields, operation } = change;
123
- let isAdd = false;
84
+ const changedRecord = Object.assign(Object.assign({}, record), updatingFields);
124
85
  if (operation === core.ChangeOperation.INSERT ||
125
86
  operation === core.ChangeOperation.COPY) {
126
- record["__old__id__"] = record["__record__id__"];
127
- record["__record__id__"] = this.generateUniqueId();
128
- isAdd = true;
129
- }
130
- const changedRecord = Object.assign(Object.assign({}, record), updatingFields);
131
- if (isAdd) {
87
+ changedRecord["__old__id__"] = record["__record__id__"];
88
+ changedRecord["__record__id__"] = this.generateUniqueId();
132
89
  this.records.push(changedRecord);
133
90
  }
134
91
  else {
@@ -142,7 +99,6 @@ class InMemoryLoader {
142
99
  }
143
100
  removeLoader(_dataUnit, recordIds) {
144
101
  return new Promise((resolve) => {
145
- this._records = this._records.filter(record => !recordIds.includes(record["__record__id__"]));
146
102
  resolve(recordIds);
147
103
  });
148
104
  }
@@ -157,14 +113,10 @@ const SnkSimpleCrud = class {
157
113
  this.dataStateChange = index.createEvent(this, "dataStateChange", 3);
158
114
  this.dataUnitReady = index.createEvent(this, "dataUnitReady", 3);
159
115
  this.actionClick = index.createEvent(this, "actionClick", 7);
116
+ this.formItemsReady = index.createEvent(this, "formItemsReady", 7);
160
117
  this.REGULAR_DEFAULT_BTNS = ["INSERT", "REFRESH", "PREVIOUS", "NEXT", "DIVIDER"];
161
118
  this.REGULAR_SELECTED_BTNS = ["INSERT", "REFRESH", "PREVIOUS", "NEXT", "DIVIDER", "CLONE", "REMOVE", "DIVIDER"];
162
119
  this._multiSelectionListDataSource = new SnkMultiSelectionListDataSource.SnkMultiSelectionListDataSource();
163
- // /**
164
- // * Quando verdadeiro, o ENTER fará a navegação como se fosse a tecla TAB na grade.
165
- // */
166
- // @Prop()
167
- // useEnterLikeTab: boolean = false;
168
120
  this._taskbarProcessor = new taskbarProcessor.TaskbarProcessor({
169
121
  "snkSimpleCrudTaskbar.form_regular": this.resolveInMemoryBtns(this.REGULAR_DEFAULT_BTNS).concat(taskbarElements.TaskbarElement.GRID_MODE),
170
122
  "snkSimpleCrudTaskbar.grid_regular": this.resolveInMemoryBtns(this.REGULAR_DEFAULT_BTNS).concat(taskbarElements.TaskbarElement.FORM_MODE),
@@ -172,21 +124,22 @@ const SnkSimpleCrud = class {
172
124
  "snkSimpleCrudTaskbar.grid_selected": this.resolveInMemoryBtns(this.REGULAR_SELECTED_BTNS).concat(taskbarElements.TaskbarElement.FORM_MODE),
173
125
  "snkSimpleCrudTaskbar.finish_edition": ["CANCEL", "SAVE"]
174
126
  });
175
- this._currentViewMode = constants$1.VIEW_MODE.GRID;
127
+ this._currentViewMode = constants.VIEW_MODE.GRID;
176
128
  this._config = undefined;
177
129
  this.dataState = undefined;
178
130
  this.dataUnit = undefined;
179
- this.mode = constants$1.SIMPLE_CRUD_MODE.SERVER;
131
+ this.mode = constants.SIMPLE_CRUD_MODE.SERVER;
180
132
  this.gridConfig = undefined;
181
133
  this.formConfig = undefined;
182
134
  this.multipleSelection = undefined;
183
135
  this.useCancelConfirm = true;
184
136
  this.taskbarManager = undefined;
185
137
  this.messagesBuilder = undefined;
138
+ this.useEnterLikeTab = false;
186
139
  }
187
140
  resolveInMemoryBtns(taskbarButtons) {
188
141
  const newTaskBarConfig = [...taskbarButtons];
189
- if (this.mode === constants$1.SIMPLE_CRUD_MODE.IN_MEMORY) {
142
+ if (this.mode === constants.SIMPLE_CRUD_MODE.IN_MEMORY) {
190
143
  newTaskBarConfig.splice(1, 1);
191
144
  }
192
145
  return newTaskBarConfig;
@@ -203,15 +156,15 @@ const SnkSimpleCrud = class {
203
156
  actionClickListener(evt) {
204
157
  const act = evt.detail;
205
158
  if (act === taskbarElements.TaskbarElement.GRID_MODE) {
206
- this.goToView(constants$1.VIEW_MODE.GRID);
159
+ this.goToView(constants.VIEW_MODE.GRID);
207
160
  }
208
161
  else if (act === taskbarElements.TaskbarElement.FORM_MODE) {
209
- this.goToView(constants$1.VIEW_MODE.FORM);
162
+ this.goToView(constants.VIEW_MODE.FORM);
210
163
  }
211
164
  evt.stopPropagation();
212
165
  }
213
166
  onModeChange() {
214
- if (this.mode == constants$1.SIMPLE_CRUD_MODE.IN_MEMORY) {
167
+ if (this.mode == constants.SIMPLE_CRUD_MODE.IN_MEMORY) {
215
168
  this.initInMemoryDataUnit();
216
169
  }
217
170
  }
@@ -241,9 +194,9 @@ const SnkSimpleCrud = class {
241
194
  if (((_b = this.dataState) === null || _b === void 0 ? void 0 : _b.selectionInfo) &&
242
195
  !this.dataState.selectionInfo.isAllRecords() &&
243
196
  ((_c = this.dataState.selectionInfo.records) === null || _c === void 0 ? void 0 : _c.length) > 0) {
244
- return this._currentViewMode === constants$1.VIEW_MODE.GRID ? "snkSimpleCrudTaskbar.grid_selected" : "snkSimpleCrudTaskbar.form_selected";
197
+ return this._currentViewMode === constants.VIEW_MODE.GRID ? "snkSimpleCrudTaskbar.grid_selected" : "snkSimpleCrudTaskbar.form_selected";
245
198
  }
246
- return this._currentViewMode === constants$1.VIEW_MODE.GRID ? "snkSimpleCrudTaskbar.grid_regular" : "snkSimpleCrudTaskbar.form_regular";
199
+ return this._currentViewMode === constants.VIEW_MODE.GRID ? "snkSimpleCrudTaskbar.grid_regular" : "snkSimpleCrudTaskbar.form_regular";
247
200
  }
248
201
  initInMemoryDataUnit() {
249
202
  this._inMemoryLoader = new InMemoryLoader(this._metadata);
@@ -321,17 +274,15 @@ const SnkSimpleCrud = class {
321
274
  handleCancelEdit() {
322
275
  var _a;
323
276
  if ((_a = this.dataState) === null || _a === void 0 ? void 0 : _a.recordsIsEmpty) {
324
- this.goToView(constants$1.VIEW_MODE.GRID);
277
+ this.goToView(constants.VIEW_MODE.GRID);
325
278
  this.dataUnit.clearSelection();
326
279
  }
327
280
  }
328
281
  render() {
329
282
  var _a;
330
- return (index.h("snk-data-unit", { class: "simple-crud__container", dataUnit: this.dataUnit, useCancelConfirm: this.useCancelConfirm, onDataStateChange: evt => this.onDataStateChange(evt), onCancelEdition: this.handleCancelEdit.bind(this), onInsertionMode: () => this.goToView(constants$1.VIEW_MODE.FORM), onDataUnitReady: (evt) => this.dataUnitReady.emit(evt.detail),
331
- // ignoreSaveMessage={this._currentViewMode === VIEW_MODE.GRID}
332
- onMessagesBuilderUpdated: evt => this.messagesBuilder = evt.detail }, index.h("header", null, index.h("slot", { name: "snkSimpleCrudHeader" })), index.h("section", { class: "ez-flex ez-box ez-box--shadow" }, index.h("snk-taskbar", { class: "ez-box ez-box--shadow ez-padding--medium ez-margin-bottom--large", dataUnit: this.dataUnit, primaryButton: ((_a = this.dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "SAVE" : "INSERT", "data-element-id": "grid_left", messagesBuilder: this.messagesBuilder, buttons: this._taskbarProcessor.buttons, disabledButtons: this._taskbarProcessor.disabledButtons, customButtons: this._taskbarProcessor.customButtons, slot: "leftButtons", presentationMode: index$1.PresentationMode.SECONDARY }), index.h("ez-view-stack", { class: "ez-flex ez-flex--column", ref: (ref) => this._viewStack = ref, "data-element-id": "simple-crud" }, index.h("stack-item", null, index.h("ez-grid", { dataUnit: this.dataUnit, config: this.gridConfig, "no-header": true, multipleSelection: this.multipleSelection, onEzDoubleClick: () => this.goToView(constants$1.VIEW_MODE.FORM), columnfilterDataSource: this.dataUnit.name.includes(InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME)
283
+ return (index.h("snk-data-unit", { class: "simple-crud__container", dataUnit: this.dataUnit, useCancelConfirm: this.useCancelConfirm, onDataStateChange: evt => this.onDataStateChange(evt), onCancelEdition: this.handleCancelEdit.bind(this), onInsertionMode: () => this.goToView(constants.VIEW_MODE.FORM), onDataUnitReady: (evt) => this.dataUnitReady.emit(evt.detail), ignoreSaveMessage: this._currentViewMode === constants.VIEW_MODE.GRID, onMessagesBuilderUpdated: evt => this.messagesBuilder = evt.detail }, index.h("header", null, index.h("slot", { name: "snkSimpleCrudHeader" })), index.h("section", { class: "ez-flex ez-box ez-box--shadow" }, index.h("snk-taskbar", { class: "ez-box ez-box--shadow ez-padding--medium ez-margin-bottom--large", dataUnit: this.dataUnit, primaryButton: ((_a = this.dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "SAVE" : "INSERT", "data-element-id": "grid_left", messagesBuilder: this.messagesBuilder, buttons: this._taskbarProcessor.buttons, disabledButtons: this._taskbarProcessor.disabledButtons, customButtons: this._taskbarProcessor.customButtons, slot: "leftButtons", presentationMode: index$1.PresentationMode.SECONDARY }), index.h("ez-view-stack", { class: "ez-flex ez-flex--column", ref: (ref) => this._viewStack = ref, "data-element-id": "simple-crud" }, index.h("stack-item", null, index.h("ez-grid", { dataUnit: this.dataUnit, config: this.gridConfig, "no-header": true, multipleSelection: this.multipleSelection, onEzDoubleClick: () => this.goToView(constants.VIEW_MODE.FORM), columnfilterDataSource: this.dataUnit.name.includes(InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME)
333
284
  ? undefined
334
- : this._multiSelectionListDataSource }, index.h("div", { slot: "footer" }, index.h("slot", { name: "snkSimpleCrudFooter" })))), index.h("stack-item", null, index.h("ez-form", { dataUnit: this.dataUnit, config: this.formConfig }))))));
285
+ : this._multiSelectionListDataSource, useEnterLikeTab: this.useEnterLikeTab }, index.h("div", { slot: "footer" }, index.h("slot", { name: "snkSimpleCrudFooter" })))), index.h("stack-item", null, index.h("ez-form", { dataUnit: this.dataUnit, config: this.formConfig }))))));
335
286
  }
336
287
  get _element() { return index.getElement(this); }
337
288
  static get watchers() { return {
@@ -33,6 +33,7 @@ const SnkTaskbar = class {
33
33
  };
34
34
  this._permissions = undefined;
35
35
  this.configName = undefined;
36
+ this.resourceID = undefined;
36
37
  this.buttons = undefined;
37
38
  this.customButtons = undefined;
38
39
  this.actionsList = undefined;
@@ -174,7 +175,7 @@ const SnkTaskbar = class {
174
175
  componentWillLoad() {
175
176
  this._application = core.ApplicationContext.getContextValue("__SNK__APPLICATION__");
176
177
  if (this._application) {
177
- this._application.getAllAccess().then(access => this._permissions = access);
178
+ this._application.getAllAccess(this.resourceID).then(access => this._permissions = access);
178
179
  }
179
180
  else {
180
181
  this._permissions = {};
@@ -8,13 +8,14 @@ const ENTITY_NAME_PROPERTY = '__ENTITY_NAME__';
8
8
  const NUFIN_COLUMN = 'NUFIN';
9
9
  const SERVICE_GET_CONFIGURATIONS = 'SystemUtilsSP.getConf';
10
10
  export default class Actions {
11
- constructor(actionsExecuteInterface, dataUnit) {
11
+ constructor(actionsExecuteInterface, dataUnit, appResourceId) {
12
12
  var _a;
13
13
  this._lastValuesCache = {};
14
14
  this._actionsExecuteInterface = actionsExecuteInterface;
15
15
  this._dataUnit = dataUnit;
16
16
  this._selectedRows = ((_a = dataUnit === null || dataUnit === void 0 ? void 0 : dataUnit.getSelectionInfo()) === null || _a === void 0 ? void 0 : _a.isAllRecords()) ? [] : dataUnit === null || dataUnit === void 0 ? void 0 : dataUnit.getSelectionInfo().records;
17
17
  this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
18
+ this._appResourceId = appResourceId;
18
19
  }
19
20
  apply(action, hasParamsToSave) {
20
21
  this._application.closePopUp();
@@ -277,9 +278,7 @@ export default class Actions {
277
278
  }
278
279
  }
279
280
  async buildResourceId(actionId) {
280
- let appResId = '';
281
- appResId = await this._application.getResourceID();
282
- return appResId + '.actionconfig.' + actionId;
281
+ return this._appResourceId + '.actionconfig.' + actionId;
283
282
  }
284
283
  prepareAndExecute(execSource, executeAction) {
285
284
  this.addRows(execSource);
@@ -4,13 +4,14 @@ import { DataFetcher } from '../../lib/http/data-fetcher/DataFetcher';
4
4
  import ExecutorFactory from './actions/factory/executor.factory';
5
5
  import Actions from './actions';
6
6
  import ClientEventConfirm from './clientEvent';
7
+ import ResourceIDUtils from '../../lib/resourceid/ResourceIDUtils';
7
8
  export class SnkActionsButton {
8
9
  constructor() {
9
10
  this.CLIENT_EVENT_CONFIRM_NAME = "br.com.sankhya.actionbutton.clientconfirm";
10
11
  this.handleClick = (evt) => {
11
12
  const selectedAction = this._actions.find((action) => action.actionID == evt.detail.id);
12
13
  const executor = new ExecutorFactory(selectedAction.type).executor;
13
- const action = new Actions(executor, this._dataUnit);
14
+ const action = new Actions(executor, this._dataUnit, this._resourceID);
14
15
  action.execute(Object.assign({}, selectedAction));
15
16
  this._showDropdown = false;
16
17
  };
@@ -68,12 +69,15 @@ export class SnkActionsButton {
68
69
  document.addEventListener("scroll", this.positionDropdown.bind(this));
69
70
  }
70
71
  async componentWillLoad() {
71
- var _a;
72
72
  this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
73
- this._resourceID = await this._application.getResourceID();
74
73
  this._isOrderActions = await this._application.getBooleanParam('global.ordenar.acoes.personalizadas');
75
- this._dataUnit = (_a = this._element.parentElement) === null || _a === void 0 ? void 0 : _a.dataUnit;
74
+ const snkDataUnit = this._element.parentElement;
75
+ this._dataUnit = snkDataUnit === null || snkDataUnit === void 0 ? void 0 : snkDataUnit.dataUnit;
76
+ this._resourceID = snkDataUnit === null || snkDataUnit === void 0 ? void 0 : snkDataUnit.resourceID;
76
77
  this._entityName = this._dataUnit.name.split('/')[2];
78
+ if (this._resourceID == undefined) {
79
+ this._resourceID = await ResourceIDUtils.getResourceID();
80
+ }
77
81
  this.setEvents();
78
82
  this.getActions().then(() => {
79
83
  this.loadItems();
@@ -13,7 +13,6 @@ import Workspace from "../../lib/workspace/workspace";
13
13
  import AppletCaller from "../../lib/applet-caller/applet-caller";
14
14
  import ParametersFetcher from "../../lib/http/data-fetcher/fetchers/parameters-fecher";
15
15
  import MGEAuthorization from '../../lib/auth/mgeauthorization.module';
16
- import GridConfigFetcher from "../../lib/http/data-fetcher/fetchers/grid-config-fetcher";
17
16
  import AuthFetcher, { AutorizationType } from "../../lib/http/data-fetcher/fetchers/auth-fetcher";
18
17
  import { SnkMessageBuilder } from "../../lib/message/SnkMessageBuilder";
19
18
  /**
@@ -36,16 +35,21 @@ export class SnkApplication {
36
35
  }
37
36
  return this._parameters;
38
37
  }
39
- get resourceID() {
40
- if (!this._resourceID) {
41
- this._resourceID = this.urlParams.get("workspaceResourceID") ||
42
- this.urlParams.get("resourceID") ||
43
- Workspace.resourceID ||
44
- "unknown.resource.id";
38
+ async getAuth(resourceID) {
39
+ if (resourceID == undefined) {
40
+ return this.getApplicationAuth();
41
+ }
42
+ else {
43
+ return new Promise((resolve, reject) => {
44
+ this.authFetcher.getData(resourceID).then((authList) => {
45
+ resolve(authList);
46
+ }).catch(error => {
47
+ reject(error);
48
+ });
49
+ });
45
50
  }
46
- return this._resourceID;
47
51
  }
48
- get auth() {
52
+ async getApplicationAuth() {
49
53
  if (this._auth) {
50
54
  return Promise.resolve(this._auth);
51
55
  }
@@ -54,7 +58,7 @@ export class SnkApplication {
54
58
  const waitingAuth = this._authPromises.length > 0;
55
59
  this._authPromises.push(new PendingPromise(resolve, reject));
56
60
  if (!waitingAuth) {
57
- this.authFetcher.getData(this.resourceID).then((authList) => {
61
+ this.authFetcher.getData(this.applicationResourceID).then((authList) => {
58
62
  this._auth = authList;
59
63
  while (this._authPromises.length > 0) {
60
64
  this._authPromises.pop().resolve(this._auth);
@@ -73,7 +77,7 @@ export class SnkApplication {
73
77
  */
74
78
  async isUserSup() {
75
79
  return new Promise((resolve, reject) => {
76
- this.auth.then((authorization) => {
80
+ this.getAuth().then((authorization) => {
77
81
  this.getAuthList(authorization).then((auths) => {
78
82
  resolve(auths.isSup);
79
83
  }).catch(error => reject(error));
@@ -87,9 +91,9 @@ export class SnkApplication {
87
91
  /**
88
92
  * Obtém `true` caso o usuário logado tem permissão pra determinada ação.
89
93
  */
90
- async hasAccess(access) {
94
+ async hasAccess(access, resourceID) {
91
95
  return new Promise((resolve, reject) => {
92
- this.auth.then((authorization) => {
96
+ this.getAuth(resourceID).then((authorization) => {
93
97
  this.getAuthList(authorization).then((auths) => {
94
98
  resolve(auths.isSup || auths.actions[access]);
95
99
  }).catch(error => reject(error));
@@ -99,9 +103,9 @@ export class SnkApplication {
99
103
  /**
100
104
  * Obtém todos os acessos do usuário logado.
101
105
  */
102
- async getAllAccess() {
106
+ async getAllAccess(resourceID) {
103
107
  return new Promise((resolve, reject) => {
104
- this.auth.then((authorization) => {
108
+ this.getAuth(resourceID).then((authorization) => {
105
109
  this.getAuthList(authorization).then((auths) => {
106
110
  const allAccess = {};
107
111
  allAccess['isSup'] = auths.isSup;
@@ -285,13 +289,16 @@ export class SnkApplication {
285
289
  * Cria o DataUnit a partir do nome da entidade. É possível armazená-lo no cache
286
290
  * passando o dataUnitName, assim, se mais de uma chamada for feita, o mesmo DataUnit será usado.
287
291
  */
288
- async createDataunit(entityName, dataUnitName, parentDataUnit, configName) {
292
+ async createDataunit(entityName, dataUnitName, parentDataUnit, configName, resourceID) {
293
+ if (resourceID == undefined) {
294
+ resourceID = this.applicationResourceID;
295
+ }
289
296
  return new Promise((resolve, reject) => {
290
297
  const duPromisses = this.getDuPromissesStack(dataUnitName);
291
298
  const waitingDu = duPromisses.length > 0;
292
299
  duPromisses.push(new PendingPromise(resolve, reject));
293
300
  if (!waitingDu) {
294
- const dataUnit = this.dataUnitFetcher.getDataUnit(entityName, this.resourceID, parentDataUnit, configName);
301
+ const dataUnit = this.dataUnitFetcher.getDataUnit(entityName, resourceID, parentDataUnit, configName);
295
302
  dataUnit.loadMetadata().then(() => {
296
303
  if (dataUnitName) {
297
304
  this.updateDataunitCache(undefined, dataUnitName, dataUnit);
@@ -322,14 +329,14 @@ export class SnkApplication {
322
329
  /**
323
330
  * Obtem um DataUnit do cache ou cria um caso ainda não tenha sido criado.
324
331
  */
325
- async getDataUnit(entityName, dataUnitName, parentDataUnit, configName) {
332
+ async getDataUnit(entityName, dataUnitName, parentDataUnit, configName, resourceID) {
326
333
  return new Promise((resolve, reject) => {
327
334
  const dataUnit = this._duCache.get(dataUnitName);
328
335
  if (dataUnit) {
329
336
  resolve(dataUnit);
330
337
  }
331
338
  else {
332
- this.createDataunit(entityName, dataUnitName, parentDataUnit, configName).then(dataUnit => {
339
+ this.createDataunit(entityName, dataUnitName, parentDataUnit, configName, resourceID).then(dataUnit => {
333
340
  resolve(dataUnit);
334
341
  }).catch(reason => reject(reason));
335
342
  }
@@ -378,11 +385,20 @@ export class SnkApplication {
378
385
  async callServiceBroker(serviceName, payload, options) {
379
386
  return DataFetcher.get().callServiceBroker(serviceName, payload, options);
380
387
  }
388
+ get applicationResourceID() {
389
+ if (!this._applicationResourceID) {
390
+ this._applicationResourceID = this.urlParams.get("workspaceResourceID") ||
391
+ this.urlParams.get("resourceID") ||
392
+ Workspace.resourceID ||
393
+ "unknown.resource.id";
394
+ }
395
+ return this._applicationResourceID;
396
+ }
381
397
  /**
382
398
  * Obtém o resourceID da tela em questão.
383
399
  */
384
400
  async getResourceID() {
385
- return Promise.resolve(this.resourceID);
401
+ return Promise.resolve(this.applicationResourceID);
386
402
  }
387
403
  /**
388
404
  * Obtém o UserId da tela em questão.
@@ -426,20 +442,14 @@ export class SnkApplication {
426
442
  async info(message, options) {
427
443
  return ApplicationUtils.info(message, options);
428
444
  }
429
- /**
430
- * Obtém a configuração de grade.
431
- */
432
- async loadGridConfig(name) {
433
- return this.gridConfigFetcher.getConfig(name, this.resourceID);
434
- }
435
445
  /**
436
446
  * Obtém os totalizadores da grade.
437
447
  */
438
448
  async loadTotals(name, resourceID, filters) {
439
449
  return this.totalsFetcher.fetchTotals(name, resourceID, filters);
440
450
  }
441
- async getAuthList(_auth) {
442
- return await (new MGEAuthorization()).parseFromJSON(_auth);
451
+ async getAuthList(auth) {
452
+ return await (new MGEAuthorization()).parseFromJSON(auth);
443
453
  }
444
454
  get urlParams() {
445
455
  if (!this._urlParams) {
@@ -453,12 +463,6 @@ export class SnkApplication {
453
463
  }
454
464
  return this._dataUnitFetcher;
455
465
  }
456
- get gridConfigFetcher() {
457
- if (!this._gridConfigFetcher) {
458
- this._gridConfigFetcher = new GridConfigFetcher();
459
- }
460
- return this._gridConfigFetcher;
461
- }
462
466
  get totalsFetcher() {
463
467
  if (!this._totalsFetcher) {
464
468
  this._totalsFetcher = new TotalsFetcher();
@@ -558,7 +562,7 @@ export class SnkApplication {
558
562
  * Obtém o nome das telas da aplicação
559
563
  */
560
564
  async getAppLabel() {
561
- return Workspace.getAppLabel(this._resourceID);
565
+ return Workspace.getAppLabel(this.applicationResourceID);
562
566
  }
563
567
  /**
564
568
  * Adiciona um listener no fetcher de Pesquisa
@@ -630,6 +634,7 @@ export class SnkApplication {
630
634
  this._popUp.ezTitle = title;
631
635
  }
632
636
  componentWillLoad() {
637
+ ApplicationContext.setContextValue("__SNK__APPLICATION__LOADING__", true);
633
638
  this._errorHandler = new SnkErrorHandler(this);
634
639
  this.messagesBuilder = new SnkMessageBuilder();
635
640
  ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/upload/file`);
@@ -638,7 +643,7 @@ export class SnkApplication {
638
643
  });
639
644
  ApplicationContext.setContextValue("__EZUI__GRID_LICENSE__", agGridLicense);
640
645
  ErrorTracking.init();
641
- ConfigStorage.get();
646
+ ConfigStorage.preload(this.applicationResourceID, this.configName);
642
647
  }
643
648
  connectedCallback() {
644
649
  ApplicationContext.setContextValue("__SNK__APPLICATION__", this);
@@ -650,9 +655,10 @@ export class SnkApplication {
650
655
  componentDidLoad() {
651
656
  this.applicationLoading.emit(true);
652
657
  window.requestAnimationFrame(() => {
658
+ ApplicationContext.setContextValue("__SNK__APPLICATION__LOADING__", false);
653
659
  this.applicationLoaded.emit(true);
654
660
  });
655
- ElementIDUtils.addIDInfo(this._element, `resource_${this._resourceID}`);
661
+ ElementIDUtils.addIDInfo(this._element, `resource_${this.applicationResourceID}`);
656
662
  }
657
663
  render() {
658
664
  return (h("div", null, h("ez-loading-bar", { ref: (ref) => this._requestListener.loadingBar = ref }), h("ez-popup", { opened: false, ref: (ref) => this._popUp = ref, onEzClosePopup: () => this.closePopUp() }), h("ez-modal", { opened: false, ref: (ref) => this._rightModal = ref, "modal-size": "small", closeOutsideClick: true, closeEsc: true })));
@@ -782,10 +788,13 @@ export class SnkApplication {
782
788
  },
783
789
  "hasAccess": {
784
790
  "complexType": {
785
- "signature": "(access: AutorizationType) => Promise<boolean>",
791
+ "signature": "(access: AutorizationType, resourceID?: string) => Promise<boolean>",
786
792
  "parameters": [{
787
793
  "tags": [],
788
794
  "text": ""
795
+ }, {
796
+ "tags": [],
797
+ "text": ""
789
798
  }],
790
799
  "references": {
791
800
  "Promise": {
@@ -805,8 +814,11 @@ export class SnkApplication {
805
814
  },
806
815
  "getAllAccess": {
807
816
  "complexType": {
808
- "signature": "() => Promise<any>",
809
- "parameters": [],
817
+ "signature": "(resourceID?: string) => Promise<any>",
818
+ "parameters": [{
819
+ "tags": [],
820
+ "text": ""
821
+ }],
810
822
  "references": {
811
823
  "Promise": {
812
824
  "location": "global"
@@ -1155,7 +1167,7 @@ export class SnkApplication {
1155
1167
  },
1156
1168
  "createDataunit": {
1157
1169
  "complexType": {
1158
- "signature": "(entityName: string, dataUnitName?: string, parentDataUnit?: DataUnit, configName?: string) => Promise<DataUnit>",
1170
+ "signature": "(entityName: string, dataUnitName?: string, parentDataUnit?: DataUnit, configName?: string, resourceID?: string) => Promise<DataUnit>",
1159
1171
  "parameters": [{
1160
1172
  "tags": [],
1161
1173
  "text": ""
@@ -1168,6 +1180,9 @@ export class SnkApplication {
1168
1180
  }, {
1169
1181
  "tags": [],
1170
1182
  "text": ""
1183
+ }, {
1184
+ "tags": [],
1185
+ "text": ""
1171
1186
  }],
1172
1187
  "references": {
1173
1188
  "Promise": {
@@ -1234,7 +1249,7 @@ export class SnkApplication {
1234
1249
  },
1235
1250
  "getDataUnit": {
1236
1251
  "complexType": {
1237
- "signature": "(entityName: string, dataUnitName: string, parentDataUnit?: DataUnit, configName?: string) => Promise<DataUnit>",
1252
+ "signature": "(entityName: string, dataUnitName: string, parentDataUnit?: DataUnit, configName?: string, resourceID?: string) => Promise<DataUnit>",
1238
1253
  "parameters": [{
1239
1254
  "tags": [],
1240
1255
  "text": ""
@@ -1247,6 +1262,9 @@ export class SnkApplication {
1247
1262
  }, {
1248
1263
  "tags": [],
1249
1264
  "text": ""
1265
+ }, {
1266
+ "tags": [],
1267
+ "text": ""
1250
1268
  }],
1251
1269
  "references": {
1252
1270
  "Promise": {
@@ -1640,29 +1658,6 @@ export class SnkApplication {
1640
1658
  "tags": []
1641
1659
  }
1642
1660
  },
1643
- "loadGridConfig": {
1644
- "complexType": {
1645
- "signature": "(name: string) => Promise<IGridConfig>",
1646
- "parameters": [{
1647
- "tags": [],
1648
- "text": ""
1649
- }],
1650
- "references": {
1651
- "Promise": {
1652
- "location": "global"
1653
- },
1654
- "IGridConfig": {
1655
- "location": "import",
1656
- "path": "@sankhyalabs/ezui/dist/types/components/ez-grid/controller/EzGridController"
1657
- }
1658
- },
1659
- "return": "Promise<IGridConfig>"
1660
- },
1661
- "docs": {
1662
- "text": "Obt\u00E9m a configura\u00E7\u00E3o de grade.",
1663
- "tags": []
1664
- }
1665
- },
1666
1661
  "loadTotals": {
1667
1662
  "complexType": {
1668
1663
  "signature": "(name: string, resourceID: string, filters: Array<Filter>) => Promise<Map<string, number>>",