@sankhyalabs/sankhyablocks 8.2.0-dev.1 → 8.2.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 (222) hide show
  1. package/dist/cjs/{ConfigStorage-12397f18.js → ConfigStorage-e9d7fa82.js} +51 -163
  2. package/dist/cjs/{DataFetcher-f2da1f79.js → DataFetcher-39b63a1e.js} +29 -67
  3. package/dist/cjs/{SnkFormConfigManager-13f79e37.js → SnkFormConfigManager-2f8eccd9.js} +21 -19
  4. package/dist/cjs/{auth-fetcher-319a4cb2.js → auth-fetcher-d407c31c.js} +2 -2
  5. package/dist/cjs/{dataunit-fetcher-e72068c1.js → dataunit-fetcher-15a7cc88.js} +1 -1
  6. package/dist/cjs/filter-bar-config-fetcher-24548cec.js +155 -0
  7. package/dist/cjs/{form-config-fetcher-5d62ab62.js → form-config-fetcher-ab3ce222.js} +3 -66
  8. package/dist/cjs/loader.cjs.js +1 -1
  9. package/dist/cjs/{pesquisa-fetcher-8c363096.js → pesquisa-fetcher-96c042aa.js} +1 -1
  10. package/dist/cjs/resource-fetcher-64102551.js +68 -0
  11. package/dist/cjs/sankhyablocks.cjs.js +1 -1
  12. package/dist/cjs/snk-actions-button.cjs.entry.js +11 -18
  13. package/dist/cjs/snk-application.cjs.entry.js +44 -49
  14. package/dist/cjs/snk-attach.cjs.entry.js +13 -7
  15. package/dist/cjs/snk-configurator.cjs.entry.js +1 -2
  16. package/dist/cjs/snk-crud.cjs.entry.js +10 -25
  17. package/dist/cjs/snk-data-exporter.cjs.entry.js +2 -2
  18. package/dist/cjs/{snk-data-unit-80a00ae4.js → snk-data-unit-e89e07bd.js} +3 -4
  19. package/dist/cjs/snk-data-unit.cjs.entry.js +1 -1
  20. package/dist/cjs/snk-detail-view.cjs.entry.js +12 -14
  21. package/dist/cjs/snk-entity-list.cjs.entry.js +4 -0
  22. package/dist/cjs/snk-filter-bar.cjs.entry.js +17 -14
  23. package/dist/cjs/snk-filter-detail.cjs.entry.js +15 -1
  24. package/dist/cjs/snk-filter-modal-item.cjs.entry.js +19 -5
  25. package/dist/cjs/snk-form-config.cjs.entry.js +17 -6
  26. package/dist/cjs/snk-form-view.cjs.entry.js +1 -6
  27. package/dist/cjs/snk-form.cjs.entry.js +8 -12
  28. package/dist/cjs/snk-grid-config.cjs.entry.js +6 -5
  29. package/dist/cjs/snk-grid.cjs.entry.js +20 -17
  30. package/dist/cjs/{snk-guides-viewer-a7cd6fda.js → snk-guides-viewer-8518c61b.js} +7 -17
  31. package/dist/cjs/snk-guides-viewer.cjs.entry.js +8 -8
  32. package/dist/cjs/snk-personalized-filter.cjs.entry.js +16 -13
  33. package/dist/cjs/snk-print-selector.cjs.entry.js +1 -1
  34. package/dist/cjs/snk-simple-crud.cjs.entry.js +72 -20
  35. package/dist/cjs/snk-taskbar.cjs.entry.js +1 -2
  36. package/dist/collection/components/snk-actions-button/actions/index.js +4 -3
  37. package/dist/collection/components/snk-actions-button/snk-actions-button.js +4 -8
  38. package/dist/collection/components/snk-application/snk-application.js +65 -60
  39. package/dist/collection/components/snk-configurator/snk-configurator.js +1 -19
  40. package/dist/collection/components/snk-crud/snk-crud.js +6 -40
  41. package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js +2 -42
  42. package/dist/collection/components/snk-crud/subcomponents/snk-form-view.js +1 -27
  43. package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +28 -47
  44. package/dist/collection/components/snk-data-unit/snk-data-unit.js +4 -21
  45. package/dist/collection/components/snk-entity-list/snk-entity-list.js +23 -0
  46. package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-detail.js +12 -2
  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 +16 -21
  49. package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +12 -28
  50. package/dist/collection/components/snk-form/SnkFormConfigManager.js +19 -17
  51. package/dist/collection/components/snk-form/snk-form.js +2 -46
  52. package/dist/collection/components/snk-form/subcomponents/snk-form-config/snk-form-config.js +15 -5
  53. package/dist/collection/components/snk-grid/snk-grid.js +15 -51
  54. package/dist/collection/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.js +1 -19
  55. package/dist/collection/components/snk-personalized-filter/snk-personalized-filter.js +12 -28
  56. package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +0 -22
  57. package/dist/collection/components/snk-taskbar/snk-taskbar.js +1 -19
  58. package/dist/collection/lib/configs/ConfigStorage.js +44 -33
  59. package/dist/collection/lib/dataUnit/InMemoryLoader.js +59 -2
  60. package/dist/collection/lib/http/data-fetcher/DataFetcher.js +29 -38
  61. package/dist/collection/lib/http/data-fetcher/fetchers/filter-bar-config-fetcher.js +24 -0
  62. package/dist/collection/lib/index.js +0 -10
  63. package/dist/collection/lib/utils/urlutils.js +0 -29
  64. package/dist/components/ConfigStorage.js +48 -161
  65. package/dist/components/DataFetcher.js +29 -67
  66. package/dist/components/SnkFormConfigManager.js +19 -17
  67. package/dist/components/auth-fetcher.js +1 -1
  68. package/dist/components/filter-bar-config-fetcher.js +153 -0
  69. package/dist/components/form-config-fetcher.js +2 -64
  70. package/dist/components/resource-fetcher.js +66 -0
  71. package/dist/components/snk-actions-button2.js +9 -23
  72. package/dist/components/snk-application2.js +128 -134
  73. package/dist/components/snk-attach2.js +8 -1
  74. package/dist/components/snk-configurator2.js +1 -3
  75. package/dist/components/snk-crud.js +6 -23
  76. package/dist/components/snk-data-unit2.js +3 -5
  77. package/dist/components/snk-detail-view2.js +8 -20
  78. package/dist/components/snk-entity-list.js +4 -0
  79. package/dist/components/snk-filter-bar2.js +12 -12
  80. package/dist/components/snk-filter-detail2.js +12 -2
  81. package/dist/components/snk-filter-modal-item2.js +16 -5
  82. package/dist/components/snk-form-config2.js +15 -5
  83. package/dist/components/snk-form-view2.js +1 -6
  84. package/dist/components/snk-form.js +2 -9
  85. package/dist/components/snk-grid-config2.js +2 -4
  86. package/dist/components/snk-grid2.js +16 -17
  87. package/dist/components/snk-personalized-filter2.js +11 -11
  88. package/dist/components/snk-simple-crud2.js +60 -8
  89. package/dist/components/snk-taskbar2.js +1 -3
  90. package/dist/esm/{ConfigStorage-932ab366.js → ConfigStorage-1090289a.js} +49 -162
  91. package/dist/esm/{DataFetcher-7e18aa30.js → DataFetcher-a4ed43e7.js} +29 -67
  92. package/dist/esm/{SnkFormConfigManager-bb9afc3f.js → SnkFormConfigManager-de537eca.js} +21 -19
  93. package/dist/esm/{auth-fetcher-6d9664b7.js → auth-fetcher-c53e0d6c.js} +1 -1
  94. package/dist/esm/{dataunit-fetcher-91a4eb82.js → dataunit-fetcher-8d0bfa4a.js} +1 -1
  95. package/dist/esm/filter-bar-config-fetcher-2417b8cf.js +153 -0
  96. package/dist/esm/{form-config-fetcher-aaaa79a6.js → form-config-fetcher-4065db9a.js} +3 -65
  97. package/dist/esm/loader.js +1 -1
  98. package/dist/esm/{pesquisa-fetcher-56b30fb4.js → pesquisa-fetcher-7460b876.js} +1 -1
  99. package/dist/esm/resource-fetcher-45a70066.js +66 -0
  100. package/dist/esm/sankhyablocks.js +1 -1
  101. package/dist/esm/snk-actions-button.entry.js +11 -18
  102. package/dist/esm/snk-application.entry.js +44 -49
  103. package/dist/esm/snk-attach.entry.js +9 -3
  104. package/dist/esm/snk-configurator.entry.js +1 -2
  105. package/dist/esm/snk-crud.entry.js +10 -25
  106. package/dist/esm/snk-data-exporter.entry.js +2 -2
  107. package/dist/esm/{snk-data-unit-3ab57d1a.js → snk-data-unit-8c4d944d.js} +3 -4
  108. package/dist/esm/snk-data-unit.entry.js +1 -1
  109. package/dist/esm/snk-detail-view.entry.js +12 -14
  110. package/dist/esm/snk-entity-list.entry.js +4 -0
  111. package/dist/esm/snk-filter-bar.entry.js +17 -14
  112. package/dist/esm/snk-filter-detail.entry.js +16 -2
  113. package/dist/esm/snk-filter-modal-item.entry.js +20 -6
  114. package/dist/esm/snk-form-config.entry.js +18 -7
  115. package/dist/esm/snk-form-view.entry.js +1 -6
  116. package/dist/esm/snk-form.entry.js +8 -12
  117. package/dist/esm/snk-grid-config.entry.js +6 -5
  118. package/dist/esm/snk-grid.entry.js +20 -17
  119. package/dist/esm/{snk-guides-viewer-cc709b5f.js → snk-guides-viewer-cdecff6e.js} +7 -17
  120. package/dist/esm/snk-guides-viewer.entry.js +8 -8
  121. package/dist/esm/snk-personalized-filter.entry.js +16 -13
  122. package/dist/esm/snk-print-selector.entry.js +1 -1
  123. package/dist/esm/snk-simple-crud.entry.js +62 -10
  124. package/dist/esm/snk-taskbar.entry.js +1 -2
  125. package/dist/sankhyablocks/{p-d13c00b6.entry.js → p-0848ee4d.entry.js} +1 -1
  126. package/dist/sankhyablocks/p-0bd9c412.js +1 -0
  127. package/dist/sankhyablocks/p-0fb83448.js +1 -0
  128. package/dist/sankhyablocks/p-10b2aedc.entry.js +1 -0
  129. package/dist/sankhyablocks/p-1f63dcd4.entry.js +1 -0
  130. package/dist/sankhyablocks/p-216b2102.entry.js +1 -0
  131. package/dist/sankhyablocks/p-216f081a.entry.js +1 -0
  132. package/dist/sankhyablocks/{p-f8e6b97e.js → p-44e66c8d.js} +1 -1
  133. package/dist/sankhyablocks/p-4514fc6a.entry.js +1 -0
  134. package/dist/sankhyablocks/p-50c13cc8.entry.js +1 -0
  135. package/dist/sankhyablocks/p-52c6b2e7.js +1 -0
  136. package/dist/sankhyablocks/p-564efc43.js +1 -0
  137. package/dist/sankhyablocks/p-5994af77.js +56 -0
  138. package/dist/sankhyablocks/p-6bb904bb.entry.js +1 -0
  139. package/dist/sankhyablocks/p-6e06175e.entry.js +1 -0
  140. package/dist/sankhyablocks/p-6f0795c8.entry.js +1 -0
  141. package/dist/sankhyablocks/p-7588f006.entry.js +1 -0
  142. package/dist/sankhyablocks/p-847e6c20.js +17 -0
  143. package/dist/sankhyablocks/p-8f3652bf.entry.js +11 -0
  144. package/dist/sankhyablocks/p-9471cbc9.entry.js +1 -0
  145. package/dist/sankhyablocks/{p-14eac6fe.js → p-9d18017a.js} +1 -1
  146. package/dist/sankhyablocks/p-a42dd503.entry.js +1 -0
  147. package/dist/sankhyablocks/p-b04fb9d4.js +1 -0
  148. package/dist/sankhyablocks/{p-2d333d22.js → p-b978da60.js} +1 -1
  149. package/dist/sankhyablocks/p-befbc9ee.entry.js +1 -0
  150. package/dist/sankhyablocks/p-c32b9d7c.entry.js +1 -0
  151. package/dist/sankhyablocks/p-c6380ea2.entry.js +1 -0
  152. package/dist/sankhyablocks/{p-03bb1aea.entry.js → p-c6feb995.entry.js} +1 -1
  153. package/dist/sankhyablocks/p-d7c7a289.entry.js +1 -0
  154. package/dist/sankhyablocks/p-de69b4b0.entry.js +1 -0
  155. package/dist/sankhyablocks/p-f3b7b69e.js +10 -0
  156. package/dist/sankhyablocks/p-f7eded3a.entry.js +1 -0
  157. package/dist/sankhyablocks/p-ff7383b0.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 +1 -2
  160. package/dist/types/components/snk-application/snk-application.d.ts +13 -8
  161. package/dist/types/components/snk-configurator/snk-configurator.d.ts +0 -4
  162. package/dist/types/components/snk-crud/snk-crud.d.ts +0 -5
  163. package/dist/types/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.d.ts +0 -8
  164. package/dist/types/components/snk-crud/subcomponents/snk-form-view.d.ts +0 -5
  165. package/dist/types/components/snk-crud/subcomponents/snk-guides-viewer.d.ts +2 -9
  166. package/dist/types/components/snk-data-unit/snk-data-unit.d.ts +0 -4
  167. package/dist/types/components/snk-entity-list/snk-entity-list.d.ts +4 -0
  168. package/dist/types/components/snk-filter-bar/filter-item/snk-filter-detail.d.ts +3 -0
  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 +4 -5
  171. package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +0 -4
  172. package/dist/types/components/snk-form/SnkFormConfigManager.d.ts +4 -5
  173. package/dist/types/components/snk-form/snk-form.d.ts +1 -9
  174. package/dist/types/components/snk-form/subcomponents/snk-form-config/snk-form-config.d.ts +2 -0
  175. package/dist/types/components/snk-grid/snk-grid.d.ts +1 -5
  176. package/dist/types/components/snk-grid/subcomponents/snk-grid-config/snk-grid-config.d.ts +0 -4
  177. package/dist/types/components/snk-personalized-filter/snk-personalized-filter.d.ts +1 -5
  178. package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +0 -4
  179. package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +0 -4
  180. package/dist/types/components.d.ts +21 -125
  181. package/dist/types/lib/configs/ConfigStorage.d.ts +13 -11
  182. package/dist/types/lib/dataUnit/InMemoryLoader.d.ts +7 -0
  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 +1 -0
  185. package/dist/types/lib/index.d.ts +0 -11
  186. package/dist/types/lib/utils/urlutils.d.ts +0 -14
  187. package/package.json +2 -2
  188. package/dist/cjs/ISave-d68ce3cd.js +0 -8
  189. package/dist/cjs/ResourceIDUtils-5ff86aa7.js +0 -12
  190. package/dist/collection/lib/resourceid/ResourceIDUtils.js +0 -7
  191. package/dist/components/ResourceIDUtils.js +0 -10
  192. package/dist/esm/ISave-4412b20c.js +0 -8
  193. package/dist/esm/ResourceIDUtils-a114189a.js +0 -10
  194. package/dist/sankhyablocks/p-01739b21.entry.js +0 -1
  195. package/dist/sankhyablocks/p-05dbc70e.entry.js +0 -1
  196. package/dist/sankhyablocks/p-41e897f1.js +0 -56
  197. package/dist/sankhyablocks/p-48a40939.js +0 -1
  198. package/dist/sankhyablocks/p-611aa624.entry.js +0 -1
  199. package/dist/sankhyablocks/p-66bb8c20.entry.js +0 -1
  200. package/dist/sankhyablocks/p-688dcb4c.js +0 -1
  201. package/dist/sankhyablocks/p-6f154396.entry.js +0 -1
  202. package/dist/sankhyablocks/p-787071a8.js +0 -1
  203. package/dist/sankhyablocks/p-8481bb59.entry.js +0 -1
  204. package/dist/sankhyablocks/p-8818d8f6.entry.js +0 -1
  205. package/dist/sankhyablocks/p-93f6ca04.entry.js +0 -1
  206. package/dist/sankhyablocks/p-9a270401.entry.js +0 -1
  207. package/dist/sankhyablocks/p-9e7d65a4.js +0 -1
  208. package/dist/sankhyablocks/p-a52a6c9d.js +0 -26
  209. package/dist/sankhyablocks/p-b6003974.entry.js +0 -1
  210. package/dist/sankhyablocks/p-c555075c.entry.js +0 -1
  211. package/dist/sankhyablocks/p-d4f9ee17.entry.js +0 -1
  212. package/dist/sankhyablocks/p-d53a9169.entry.js +0 -1
  213. package/dist/sankhyablocks/p-d7638f45.entry.js +0 -11
  214. package/dist/sankhyablocks/p-e086cc2a.entry.js +0 -1
  215. package/dist/sankhyablocks/p-e64f3e17.entry.js +0 -1
  216. package/dist/sankhyablocks/p-ed41b38c.js +0 -1
  217. package/dist/sankhyablocks/p-ed705cbb.entry.js +0 -1
  218. package/dist/sankhyablocks/p-efc10705.entry.js +0 -1
  219. package/dist/sankhyablocks/p-f74fe358.js +0 -1
  220. package/dist/sankhyablocks/p-f91e0c5d.entry.js +0 -1
  221. package/dist/sankhyablocks/p-fa523d6b.entry.js +0 -1
  222. package/dist/types/lib/resourceid/ResourceIDUtils.d.ts +0 -3
@@ -41,7 +41,6 @@ const SnkPersonalizedFilter = /*@__PURE__*/ proxyCustomElement(class extends HTM
41
41
  this.entityUri = undefined;
42
42
  this.filterId = undefined;
43
43
  this.configName = undefined;
44
- this.resourceID = undefined;
45
44
  }
46
45
  /*
47
46
  * Cria um novo filtro se não houver nenhum filtro existente
@@ -78,15 +77,17 @@ const SnkPersonalizedFilter = /*@__PURE__*/ proxyCustomElement(class extends HTM
78
77
  this._filterAssistent = ObjectUtils.copy(newPersonalizedFilter);
79
78
  }
80
79
  loadFilter(newValue, oldValue) {
81
- if (newValue == null || oldValue == newValue || this.resourceID == undefined) {
80
+ if (newValue == null || oldValue == newValue) {
82
81
  return;
83
82
  }
84
- ConfigStorage.loadPersonalizedFilter(newValue, this.resourceID, this.configName)
85
- .then((resp) => {
86
- const personalizedFilter = this.addLabelToItems(resp);
87
- this._filterAssistent = personalizedFilter;
88
- this._originalFilterAssistent = ObjectUtils.copy(personalizedFilter);
89
- this._filterAssistentMode = this._filterAssistent.hasOwnProperty("assistent") && this._filterAssistent.assistent != undefined;
83
+ ConfigStorage.get().then((_instance) => {
84
+ ConfigStorage.loadPersonalizedFilter(newValue, this.configName)
85
+ .then((resp) => {
86
+ const personalizedFilter = this.addLabelToItems(resp);
87
+ this._filterAssistent = personalizedFilter;
88
+ this._originalFilterAssistent = ObjectUtils.copy(personalizedFilter);
89
+ this._filterAssistentMode = this._filterAssistent.hasOwnProperty("assistent") && this._filterAssistent.assistent != undefined;
90
+ });
90
91
  });
91
92
  }
92
93
  componentWillLoad() {
@@ -111,7 +112,7 @@ const SnkPersonalizedFilter = /*@__PURE__*/ proxyCustomElement(class extends HTM
111
112
  return this._application.messagesBuilder.getMessage(key, params);
112
113
  }
113
114
  saveFilter() {
114
- ConfigStorage.savePersonalizedFilter(this._filterAssistent, this.resourceID, this.configName).then((personalizedFilter) => {
115
+ ConfigStorage.savePersonalizedFilter(this._filterAssistent, this.configName).then((personalizedFilter) => {
115
116
  this._elButtonSave.enabled = false;
116
117
  const messageToken = !!this._filterAssistent.id ? 'confirmEdit' : 'confirmSave';
117
118
  ApplicationUtils.info(this.getMessage(`snkPersonalizedFilter.${messageToken}.title`), { iconName: "check" });
@@ -122,7 +123,7 @@ const SnkPersonalizedFilter = /*@__PURE__*/ proxyCustomElement(class extends HTM
122
123
  });
123
124
  }
124
125
  removeFilter() {
125
- ConfigStorage.removePersonalizedFilter(this._filterAssistent, this.resourceID, this.configName);
126
+ ConfigStorage.removePersonalizedFilter(this._filterAssistent, this.configName);
126
127
  }
127
128
  hasChangesToSave() {
128
129
  return JSON.stringify(this._filterAssistent) === JSON.stringify(this._originalFilterAssistent);
@@ -300,7 +301,6 @@ const SnkPersonalizedFilter = /*@__PURE__*/ proxyCustomElement(class extends HTM
300
301
  "entityUri": [1025, "entity-uri"],
301
302
  "filterId": [1025, "filter-id"],
302
303
  "configName": [1025, "config-name"],
303
- "resourceID": [1, "resource-i-d"],
304
304
  "_filterAssistentMode": [32],
305
305
  "_filterAssistent": [32],
306
306
  "createPersonalizedFilter": [64]
@@ -1,16 +1,13 @@
1
1
  import { proxyCustomElement, HTMLElement, createEvent, h } from '@stencil/core/internal/client';
2
- import { DataUnit, defaultDataLoader, StringUtils, ChangeOperation, ObjectUtils, ApplicationContext, DataType, UserInterface } from '@sankhyalabs/core';
2
+ import { DataUnit, StringUtils, SortMode, DataType, ChangeOperation, ObjectUtils, ApplicationContext, UserInterface } from '@sankhyalabs/core';
3
3
  import { V as VIEW_MODE, S as SIMPLE_CRUD_MODE } from './constants.js';
4
4
  import { T as TaskbarElement, d as defineCustomElement$1 } from './snk-taskbar2.js';
5
5
  import './DataFetcher.js';
6
6
  import './pesquisa-fetcher.js';
7
7
  import { P as PresentationMode } from './index2.js';
8
- import { d as defineCustomElement$5 } from './snk-actions-button2.js';
9
- import '@sankhyalabs/ezui/dist/collection/utils/constants';
10
- import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
11
- import './filter-item-type.enum.js';
12
- import './form-config-fetcher.js';
13
8
  import { S as SnkMultiSelectionListDataSource, T as TaskbarProcessor } from './SnkMultiSelectionListDataSource.js';
9
+ import { DISTINCT_FILTER_NAME_PREFIX } from '@sankhyalabs/ezui/dist/collection/utils/constants';
10
+ import { d as defineCustomElement$5 } from './snk-actions-button2.js';
14
11
  import { d as defineCustomElement$4 } from './snk-data-exporter2.js';
15
12
  import { d as defineCustomElement$3 } from './snk-data-unit2.js';
16
13
  import { d as defineCustomElement$2 } from './snk-exporter-email-sender2.js';
@@ -21,7 +18,7 @@ class InMemoryLoader {
21
18
  this.metadata = metadata;
22
19
  this._dataUnit = new DataUnit(InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME);
23
20
  this._dataUnit.metadataLoader = () => this.metadaLoader();
24
- this._dataUnit.dataLoader = (dataUnit, request) => defaultDataLoader(dataUnit, request, this._records);
21
+ this._dataUnit.dataLoader = (dataUnit, request) => this.dataLoader(dataUnit, request);
25
22
  this._dataUnit.saveLoader = (_dataUnit, changes) => this.saveLoader(_dataUnit, changes);
26
23
  this._dataUnit.removeLoader = (_dataUnit, recordIds) => this.removeLoader(_dataUnit, recordIds);
27
24
  this.dataUnit.loadMetadata().then(() => this.dataUnit.loadData());
@@ -58,6 +55,62 @@ class InMemoryLoader {
58
55
  metadaLoader() {
59
56
  return Promise.resolve(this._metadata);
60
57
  }
58
+ dataLoader(dataUnit, request) {
59
+ const filters = this.getColumnFilters(dataUnit);
60
+ let records = this.applyFilters(filters);
61
+ if (request.sort) {
62
+ request.sort.forEach(sort => {
63
+ records = records.sort((recordA, recordB) => {
64
+ const fieldA = recordA[sort.field];
65
+ const fieldB = recordB[sort.field];
66
+ const sortFn = this.getSortFn(sort.dataType);
67
+ return sortFn(fieldA, fieldB) * (sort.mode == SortMode.ASC ? 1 : -1);
68
+ });
69
+ });
70
+ }
71
+ return Promise.resolve({ records: records });
72
+ }
73
+ applyFilters(filters) {
74
+ let records = [...this._records];
75
+ filters.forEach(filter => {
76
+ records = records.filter(record => { var _a; return filter.values.includes((_a = record[filter.column]) === null || _a === void 0 ? void 0 : _a.toString()); });
77
+ });
78
+ return records;
79
+ }
80
+ getColumnFilters(dataUnit) {
81
+ var _a, _b;
82
+ const allFilters = (_a = dataUnit.getFilters()) !== null && _a !== void 0 ? _a : [];
83
+ const columnFilters = (_b = allFilters.filter(filter => { var _a; return (_a = filter.name) === null || _a === void 0 ? void 0 : _a.includes(DISTINCT_FILTER_NAME_PREFIX); })) !== null && _b !== void 0 ? _b : [];
84
+ return columnFilters.map(filter => {
85
+ var _a, _b;
86
+ return {
87
+ column: (_b = (_a = filter.name) === null || _a === void 0 ? void 0 : _a.replace(DISTINCT_FILTER_NAME_PREFIX, "")) !== null && _b !== void 0 ? _b : "",
88
+ values: filter.params.map(param => param.value),
89
+ };
90
+ });
91
+ }
92
+ getSortFn(type) {
93
+ switch (type) {
94
+ case DataType.NUMBER:
95
+ return this.sortNumber;
96
+ case DataType.DATE:
97
+ return this.sortDate;
98
+ case DataType.OBJECT:
99
+ return this.sortObject;
100
+ default:
101
+ return StringUtils.compare;
102
+ }
103
+ }
104
+ sortObject(a, b) {
105
+ return StringUtils.compare(a === null || a === void 0 ? void 0 : a["label"], b === null || b === void 0 ? void 0 : b["label"]);
106
+ }
107
+ sortNumber(a, b) {
108
+ return a - b;
109
+ }
110
+ sortDate(a, b) {
111
+ let timeA = a.getTime(), timeB = b.getTime();
112
+ return timeA === timeB ? 0 : (timeA < timeB ? -1 : 1);
113
+ }
61
114
  saveLoader(_dataUnit, changes) {
62
115
  return new Promise((resolve) => {
63
116
  let dataUnitRecords = [];
@@ -101,7 +154,6 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
101
154
  this.dataStateChange = createEvent(this, "dataStateChange", 3);
102
155
  this.dataUnitReady = createEvent(this, "dataUnitReady", 3);
103
156
  this.actionClick = createEvent(this, "actionClick", 7);
104
- this.formItemsReady = createEvent(this, "formItemsReady", 7);
105
157
  this.REGULAR_DEFAULT_BTNS = ["INSERT", "REFRESH", "PREVIOUS", "NEXT", "DIVIDER"];
106
158
  this.REGULAR_SELECTED_BTNS = ["INSERT", "REFRESH", "PREVIOUS", "NEXT", "DIVIDER", "CLONE", "REMOVE", "DIVIDER"];
107
159
  this._multiSelectionListDataSource = new SnkMultiSelectionListDataSource();
@@ -145,7 +145,6 @@ const SnkTaskbar = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
145
145
  };
146
146
  this._permissions = undefined;
147
147
  this.configName = undefined;
148
- this.resourceID = undefined;
149
148
  this.buttons = undefined;
150
149
  this.customButtons = undefined;
151
150
  this.actionsList = undefined;
@@ -287,7 +286,7 @@ const SnkTaskbar = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
287
286
  componentWillLoad() {
288
287
  this._application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
289
288
  if (this._application) {
290
- this._application.getAllAccess(this.resourceID).then(access => this._permissions = access);
289
+ this._application.getAllAccess().then(access => this._permissions = access);
291
290
  }
292
291
  else {
293
292
  this._permissions = {};
@@ -331,7 +330,6 @@ const SnkTaskbar = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
331
330
  static get style() { return snkTaskbarCss; }
332
331
  }, [6, "snk-taskbar", {
333
332
  "configName": [1, "config-name"],
334
- "resourceID": [1, "resource-i-d"],
335
333
  "buttons": [1],
336
334
  "customButtons": [16],
337
335
  "actionsList": [16],
@@ -1,6 +1,8 @@
1
- import { R as ResourceFetcher, F as FormConfigFetcher } from './form-config-fetcher-aaaa79a6.js';
2
- import { F as FilterItemType } from './filter-item-type.enum-5028ed3f.js';
3
- import { d as dist, D as DataFetcher } from './DataFetcher-7e18aa30.js';
1
+ import { ApplicationContext } from '@sankhyalabs/core';
2
+ import { F as FormConfigFetcher } from './form-config-fetcher-4065db9a.js';
3
+ import { R as ResourceFetcher } from './resource-fetcher-45a70066.js';
4
+ import { F as FilterBarConfigFetcher } from './filter-bar-config-fetcher-2417b8cf.js';
5
+ import { d as dist, D as DataFetcher } from './DataFetcher-a4ed43e7.js';
4
6
 
5
7
  class GridConfigFetcher extends ResourceFetcher {
6
8
  constructor() {
@@ -42,131 +44,6 @@ class GridConfigFetcher extends ResourceFetcher {
42
44
  }
43
45
  }
44
46
 
45
- var __rest = (undefined && undefined.__rest) || function (s, e) {
46
- var t = {};
47
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
48
- t[p] = s[p];
49
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
50
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
51
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
52
- t[p[i]] = s[p[i]];
53
- }
54
- return t;
55
- };
56
- function normalizeValue(value, type) {
57
- if (value == undefined) {
58
- return value;
59
- }
60
- if (value instanceof Date) {
61
- return value.toISOString();
62
- }
63
- if (typeof value === "object") {
64
- if (value instanceof Array) {
65
- return value.map(item => {
66
- if (FilterItemType.MULTI_LIST === type) {
67
- const values = __rest(item, ["label"]);
68
- return normalizeValue(values);
69
- }
70
- return normalizeValue(item);
71
- });
72
- }
73
- else {
74
- const normalized = Object.assign({}, value);
75
- Object.keys(value).forEach(prop => {
76
- if (value[prop] !== undefined) {
77
- normalized[prop] = normalizeValue(value[prop], type);
78
- }
79
- else {
80
- delete normalized[prop];
81
- }
82
- });
83
- return normalized;
84
- }
85
- }
86
- return value;
87
- }
88
- class FilterBarConfigFetcher extends ResourceFetcher {
89
- normalize(items) {
90
- return items.map(item => {
91
- const { id, value, fixed, visible, type, groupedItems } = item;
92
- const stateItem = { id };
93
- if (value) {
94
- stateItem["value"] = normalizeValue(value, type);
95
- }
96
- if (fixed) {
97
- stateItem["fixed"] = fixed;
98
- }
99
- if (groupedItems) {
100
- if (groupedItems.length === 0) {
101
- return;
102
- }
103
- if (groupedItems.filter(item => item.visible).length > 0) {
104
- stateItem["visible"] = true;
105
- }
106
- stateItem["groupedItems"] = this.normalize(groupedItems);
107
- }
108
- else {
109
- if (visible) {
110
- stateItem["visible"] = true;
111
- }
112
- }
113
- return stateItem;
114
- }).filter(item => item != undefined);
115
- }
116
- saveConfig(items, resourceID, configName) {
117
- return this.saveResource(this.normalize(items), this.getPath(resourceID, configName));
118
- }
119
- getConfig(resourceID, configName, urlParams) {
120
- return new Promise((accept, reject) => {
121
- this.loadResource(this.getPath(resourceID, configName, urlParams))
122
- .then((configAsString) => {
123
- let fieldsList;
124
- if (configAsString) {
125
- const filterBarConfig = JSON.parse(configAsString);
126
- fieldsList = this.buildFieldList(filterBarConfig.items);
127
- }
128
- accept(fieldsList || []);
129
- })
130
- .catch((error) => {
131
- reject(error);
132
- });
133
- });
134
- }
135
- buildFieldList(items) {
136
- return items.map(item => {
137
- var _a, _b;
138
- if (item.type === FilterItemType.MULTI_LIST) {
139
- const multiListValue = item.value;
140
- item.value = (_b = (_a = multiListValue === null || multiListValue === void 0 ? void 0 : multiListValue.elements) !== null && _a !== void 0 ? _a : multiListValue === null || multiListValue === void 0 ? void 0 : multiListValue.members) !== null && _b !== void 0 ? _b : multiListValue;
141
- }
142
- return item;
143
- });
144
- }
145
- getPath(resourceID, name, urlParams) {
146
- let path = `cfg://filter/FilterBarState:${resourceID}`;
147
- if (name) {
148
- path += `.${name}`;
149
- }
150
- if (urlParams) {
151
- path += this.buildQueryString(urlParams);
152
- }
153
- return path;
154
- }
155
- buildQueryString(urlParams) {
156
- let queryString = '?';
157
- for (let key in urlParams) {
158
- if (!urlParams.hasOwnProperty(key)) {
159
- continue;
160
- }
161
- if (queryString.length > 1) {
162
- queryString += '&';
163
- }
164
- queryString += key + '=' + urlParams[key];
165
- }
166
- return queryString;
167
- }
168
- }
169
-
170
47
  class PersonalizedFilterFetcher {
171
48
  constructor() {
172
49
  this.templateByQuery = new Map();
@@ -341,73 +218,83 @@ const CONFIG_SOURCE = {
341
218
  filterBar: "filterBar"
342
219
  };
343
220
  class ConfigStorage {
344
- static preload(resourceID, configName) {
345
- ConfigStorage.loadFormConfig(configName, resourceID);
346
- ConfigStorage.loadGridConfig(configName, resourceID);
221
+ static async get() {
222
+ if (!ConfigStorage.instance) {
223
+ const application = ApplicationContext.getContextValue("__SNK__APPLICATION__");
224
+ if (application != undefined) {
225
+ const configName = application.configName;
226
+ const resourceID = await application.getResourceID();
227
+ ConfigStorage.instance = new ConfigStorage();
228
+ ConfigStorage.resourceID = resourceID;
229
+ ConfigStorage.instance.loadFormConfig(configName);
230
+ ConfigStorage.instance.loadGridConfig(configName);
231
+ }
232
+ }
233
+ return this.instance;
347
234
  }
348
- static async loadFilterBarConfig(name, resourceID, urlParams) {
349
- const cacheID = ConfigStorage.buildCacheID(name, CONFIG_SOURCE.filterBar, resourceID);
235
+ async loadFilterBarConfig(name, urlParams) {
236
+ const cacheID = ConfigStorage.buildCacheID(name, CONFIG_SOURCE.filterBar);
350
237
  if (!ConfigStorage.configById.has(cacheID)) {
351
- ConfigStorage.configById.set(cacheID, ConfigStorage.filterBarConfigFetcher.getConfig(resourceID, name, urlParams));
238
+ ConfigStorage.configById.set(cacheID, ConfigStorage.filterBarConfigFetcher.getConfig(ConfigStorage.resourceID, name, urlParams));
352
239
  }
353
240
  return ConfigStorage.configById.get(cacheID);
354
241
  }
355
- static async loadFormConfig(name, resourceID) {
356
- const cacheID = ConfigStorage.buildCacheID(name, CONFIG_SOURCE.form, resourceID);
242
+ async loadFormConfig(name) {
243
+ const cacheID = ConfigStorage.buildCacheID(name, CONFIG_SOURCE.form);
357
244
  if (!ConfigStorage.configById.has(cacheID)) {
358
- ConfigStorage.configById.set(cacheID, ConfigStorage.formConfigFetcher.loadFormConfig(name, resourceID));
245
+ ConfigStorage.configById.set(cacheID, ConfigStorage.formConfigFetcher.loadFormConfig(name, ConfigStorage.resourceID));
359
246
  }
360
247
  return ConfigStorage.configById.get(cacheID);
361
248
  }
362
- static async loadGridConfig(name, resourceID) {
363
- const cacheID = ConfigStorage.buildCacheID(name, CONFIG_SOURCE.grid, resourceID);
249
+ async loadGridConfig(name) {
250
+ const cacheID = ConfigStorage.buildCacheID(name, CONFIG_SOURCE.grid);
364
251
  if (!ConfigStorage.configById.has(cacheID)) {
365
- ConfigStorage.configById.set(cacheID, ConfigStorage.gridConfigFetcher.getConfig(name, resourceID));
252
+ ConfigStorage.configById.set(cacheID, ConfigStorage.gridConfigFetcher.getConfig(name, ConfigStorage.resourceID));
366
253
  }
367
254
  return ConfigStorage.configById.get(cacheID);
368
255
  }
369
- static async saveFilterBarConfig(config, name, resourceID) {
370
- const cacheID = this.buildCacheID(name, CONFIG_SOURCE.filterBar, resourceID);
256
+ static async saveFilterBarConfig(config, name) {
257
+ const cacheID = this.buildCacheID(name, CONFIG_SOURCE.filterBar);
371
258
  this.configById.delete(cacheID);
372
- return this.filterBarConfigFetcher.saveConfig(config, resourceID, name);
259
+ return this.filterBarConfigFetcher.saveConfig(config, this.resourceID, name);
373
260
  }
374
- static async saveFormConfig(config, name, resourceID) {
375
- const cacheID = this.buildCacheID(name, CONFIG_SOURCE.form, resourceID);
261
+ static async saveFormConfig(config, name) {
262
+ const cacheID = this.buildCacheID(name, CONFIG_SOURCE.form);
376
263
  this.configById.delete(cacheID);
377
- return this.formConfigFetcher.saveConfig(config, name, resourceID);
264
+ return this.formConfigFetcher.saveConfig(config, name, this.resourceID);
378
265
  }
379
- static async saveCardState(config, name, resourceID) {
380
- return this.formConfigFetcher.saveCardState(config, name, resourceID);
266
+ static async saveCardState(config, name) {
267
+ return this.formConfigFetcher.saveCardState(config, name, this.resourceID);
381
268
  }
382
- static async saveGridConfig(config, name, resourceID) {
269
+ static async saveGridConfig(config, name) {
383
270
  if (config == undefined) {
384
271
  return;
385
272
  }
386
- const cacheID = this.buildCacheID(name, CONFIG_SOURCE.grid, resourceID);
273
+ const cacheID = this.buildCacheID(name, CONFIG_SOURCE.grid);
387
274
  this.configById.delete(cacheID);
388
- return this.gridConfigFetcher.saveConfig(config, name, resourceID);
275
+ return this.gridConfigFetcher.saveConfig(config, name, this.resourceID);
389
276
  }
390
- static async loadPersonalizedFilter(filterId, resourceID, configName) {
391
- return this.personalizedFilterFetcher.loadPersonalizedFilter(resourceID, filterId, configName);
277
+ static async loadPersonalizedFilter(filterId, configName) {
278
+ return this.personalizedFilterFetcher.loadPersonalizedFilter(this.resourceID, filterId, configName);
392
279
  }
393
- static async savePersonalizedFilter(personalizedFilter, resourceID, configName) {
280
+ static async savePersonalizedFilter(personalizedFilter, configName) {
394
281
  //Ao criar ou alterar um filtro personalizado,
395
282
  //precisamos remover o cache do status da filterbar.
396
- const cacheID = this.buildCacheID(configName, CONFIG_SOURCE.filterBar, resourceID);
283
+ const cacheID = this.buildCacheID(configName, CONFIG_SOURCE.filterBar);
397
284
  this.configById.delete(cacheID);
398
- return this.personalizedFilterFetcher.savePersonalizedFilter(personalizedFilter, resourceID, configName);
285
+ return this.personalizedFilterFetcher.savePersonalizedFilter(personalizedFilter, this.resourceID, configName);
399
286
  }
400
- static async removePersonalizedFilter(personalizedFilter, resourceID, configName) {
401
- return this.personalizedFilterFetcher.removePersonalizedFilter(personalizedFilter, resourceID, configName);
287
+ static async removePersonalizedFilter(personalizedFilter, configName) {
288
+ return this.personalizedFilterFetcher.removePersonalizedFilter(personalizedFilter, this.resourceID, configName);
402
289
  }
403
290
  static async validatePersonalizedFilter(dataUnitName, expression) {
404
291
  return this.personalizedFilterFetcher.validatePersonalizedFilter(dataUnitName, expression);
405
292
  }
406
- static buildCacheID(name, source, resourceID) {
293
+ static buildCacheID(name, source) {
407
294
  if (name == undefined) {
408
- return `req_${source}_${resourceID}`;
295
+ return `req_${source}_${this.resourceID}`;
409
296
  }
410
- return `req_${source}_${name}_${resourceID}`;
297
+ return `req_${source}_${name}_${this.resourceID}`;
411
298
  }
412
299
  }
413
300
  ConfigStorage.configById = new Map();
@@ -416,4 +303,4 @@ ConfigStorage.formConfigFetcher = new FormConfigFetcher();
416
303
  ConfigStorage.gridConfigFetcher = new GridConfigFetcher();
417
304
  ConfigStorage.personalizedFilterFetcher = new PersonalizedFilterFetcher();
418
305
 
419
- export { ConfigStorage as C, PersonalizedFilterFetcher as P };
306
+ export { ConfigStorage as C, GridConfigFetcher as G, PersonalizedFilterFetcher as P };
@@ -6434,35 +6434,6 @@ class UrlUtils {
6434
6434
  return window['mock_url'];
6435
6435
  return `${location.protocol}//${location.hostname}${location.port ? ":" + location.port : ""}`;
6436
6436
  }
6437
- /**
6438
- * Extrai da URL o parâmetro que contém o resourceId da tela desejada.
6439
- *
6440
- */
6441
- static getResourceIdFromUrlToken(url) {
6442
- try {
6443
- const parts = url.split('/');
6444
- const encodedValue = parts[1];
6445
- return atob(encodedValue);
6446
- }
6447
- catch (error) {
6448
- throw new Error('Erro ao obter resourceId:' + error);
6449
- }
6450
- }
6451
- /**
6452
- * Extrai da URL o parâmetro que contém o o objeto com a PK do registro específico.
6453
- *
6454
- */
6455
- static getPkObjectFromUrlToken(url) {
6456
- try {
6457
- const parts = url.split('/');
6458
- const encodedObjectPart = parts[parts.length - 2];
6459
- const decodedObjectPart = atob(encodedObjectPart);
6460
- return JSON.parse(decodedObjectPart);
6461
- }
6462
- catch (error) {
6463
- throw new Error('Erro ao obter a PK do objeto:' + error);
6464
- }
6465
- }
6466
6437
  }
6467
6438
 
6468
6439
  class ServiceBrokerRecaller {
@@ -6709,7 +6680,6 @@ class AppletImpressao {
6709
6680
  class DataFetcher {
6710
6681
  constructor() {
6711
6682
  this.GRAPHQL_PATH = `/${window.MGE_MODULE_NAME || 'mgefin-bff'}/graphql`;
6712
- this.ready = true;
6713
6683
  this.watingRequestsById = new Map();
6714
6684
  }
6715
6685
  static get() {
@@ -6720,9 +6690,6 @@ class DataFetcher {
6720
6690
  DataFetcher.instance.resume();
6721
6691
  }
6722
6692
  else {
6723
- if (ApplicationContext.getContextValue("__SNK__APPLICATION__LOADING__") === true) {
6724
- DataFetcher.instance.pause();
6725
- }
6726
6693
  application.addEventListener('applicationLoading', () => DataFetcher.instance.pause());
6727
6694
  application.addEventListener('applicationLoaded', () => DataFetcher.instance.resume());
6728
6695
  }
@@ -6781,10 +6748,6 @@ class DataFetcher {
6781
6748
  }
6782
6749
  async callGraphQL(req) {
6783
6750
  var _a;
6784
- if (this.ready) {
6785
- this.pause();
6786
- window.requestAnimationFrame(() => this.resume());
6787
- }
6788
6751
  const reqKey = this.getReqKey(req);
6789
6752
  req.queryID = reqKey;
6790
6753
  req.values.queryID = reqKey;
@@ -6814,7 +6777,7 @@ class DataFetcher {
6814
6777
  if (!this.watingRequestsById.has(reqKey)) {
6815
6778
  this.watingRequestsById.set(reqKey, new WaitingRequest(req));
6816
6779
  }
6817
- return (_a = this.watingRequestsById.get(reqKey)) === null || _a === void 0 ? void 0 : _a.promise;
6780
+ return (_a = this.getWatingRequest(reqKey)) === null || _a === void 0 ? void 0 : _a.promise;
6818
6781
  }
6819
6782
  }
6820
6783
  resolveURL() {
@@ -6962,43 +6925,42 @@ class DataFetcher {
6962
6925
  getQueryTemplate(re) {
6963
6926
  return (re.query || "").replaceAll("$queryAlias$", re.queryID);
6964
6927
  }
6928
+ getWatingRequest(reqID) {
6929
+ return this.watingRequestsById.get(reqID);
6930
+ }
6965
6931
  pause() {
6966
6932
  this.ready = false;
6967
6933
  }
6968
6934
  async resume() {
6969
6935
  this.ready = true;
6970
6936
  if (this.watingRequestsById.size > 0) {
6971
- const waitinRequests = this.watingRequestsById;
6972
- this.watingRequestsById = new Map();
6973
- this.executePendingRequest(waitinRequests);
6974
- }
6975
- }
6976
- async executePendingRequest(watingRequestsById) {
6977
- const requestsBatch = [];
6978
- watingRequestsById.forEach(async (waitingReq) => {
6979
- let query = this.getQueryTemplate(waitingReq.request);
6980
- requestsBatch.push({ document: query, variables: Object.assign({}, waitingReq.request.values) });
6981
- });
6982
- let res = undefined;
6983
- let dataResponse = [];
6984
- let errorsResponse = [];
6985
- res = await this.fecthGrapql(requestsBatch);
6986
- dataResponse = res.data;
6987
- errorsResponse = res.errors;
6988
- //Reject promises with errors from query
6989
- errorsResponse.forEach((errorResponse) => {
6990
- Object.entries(errorResponse).forEach(([_key, val]) => {
6991
- var _a;
6992
- (((_a = watingRequestsById.get(val.request.variables[val.index].queryID)) === null || _a === void 0 ? void 0 : _a.reject) || Promise.reject)(new ErrorException("Falha detectada", val.message));
6937
+ const requestsBatch = [];
6938
+ this.watingRequestsById.forEach(async (waitingReq) => {
6939
+ let query = this.getQueryTemplate(waitingReq.request);
6940
+ requestsBatch.push({ document: query, variables: Object.assign({}, waitingReq.request.values) });
6993
6941
  });
6994
- });
6995
- //Resolve promises with data from query
6996
- dataResponse.forEach((data) => {
6997
- Object.entries(data).forEach(([key, val]) => {
6998
- var _a;
6999
- (((_a = watingRequestsById.get(key)) === null || _a === void 0 ? void 0 : _a.resolve) || Promise.resolve)(val);
6942
+ let res = undefined;
6943
+ let dataResponse = [];
6944
+ let errorsResponse = [];
6945
+ res = await this.fecthGrapql(requestsBatch);
6946
+ dataResponse = res.data;
6947
+ errorsResponse = res.errors;
6948
+ //Reject promises with errors from query
6949
+ errorsResponse.forEach((errorResponse) => {
6950
+ Object.entries(errorResponse).forEach(([_key, val]) => {
6951
+ var _a;
6952
+ (((_a = this.getWatingRequest(val.request.variables[val.index].queryID)) === null || _a === void 0 ? void 0 : _a.reject) || Promise.reject)(new ErrorException("Falha detectada", val.message));
6953
+ });
7000
6954
  });
7001
- });
6955
+ //Resolve promises with data from query
6956
+ dataResponse.forEach((data) => {
6957
+ Object.entries(data).forEach(([key, val]) => {
6958
+ var _a;
6959
+ (((_a = this.getWatingRequest(key)) === null || _a === void 0 ? void 0 : _a.resolve) || Promise.resolve)(val);
6960
+ });
6961
+ });
6962
+ this.watingRequestsById.clear();
6963
+ }
7002
6964
  }
7003
6965
  async fecthGrapql(request) {
7004
6966
  let res = undefined;
@@ -1,29 +1,31 @@
1
- import { C as ConfigStorage } from './ConfigStorage-932ab366.js';
1
+ import { C as ConfigStorage } from './ConfigStorage-1090289a.js';
2
2
  import { ObjectUtils } from '@sankhyalabs/core';
3
- import { F as FormConfigFetcher } from './form-config-fetcher-aaaa79a6.js';
3
+ import { F as FormConfigFetcher } from './form-config-fetcher-4065db9a.js';
4
4
 
5
5
  class SnkFormConfigManager {
6
- constructor(configName, resourceID, onConfigChange) {
7
- this._resourceID = resourceID;
6
+ constructor(configName, onConfigChange) {
8
7
  this._configName = configName;
9
8
  this._onConfigChange = onConfigChange;
10
9
  }
11
10
  async loadConfig() {
12
11
  return new Promise(resolve => {
13
- ConfigStorage.loadFormConfig(this._configName, this._resourceID)
14
- .then((config) => {
15
- this.setConfig(config);
16
- resolve(config);
17
- })
18
- .catch((error) => {
19
- console.warn(error);
12
+ ConfigStorage.get()
13
+ .then((configStorage) => {
14
+ configStorage.loadFormConfig(this._configName)
15
+ .then((config) => {
16
+ this.setConfig(config);
17
+ resolve(config);
18
+ })
19
+ .catch((error) => {
20
+ console.warn(error);
21
+ });
20
22
  });
21
23
  });
22
24
  }
23
25
  saveConfig(config) {
24
26
  const configToSave = ObjectUtils.copy(config);
25
27
  return new Promise(accept => {
26
- ConfigStorage.saveFormConfig(config, this._configName, this._resourceID)
28
+ ConfigStorage.saveFormConfig(config, this._configName)
27
29
  .then((response) => {
28
30
  this.setConfig(Object.assign(Object.assign({}, configToSave), response));
29
31
  accept(Object.assign(Object.assign({}, configToSave), response));
@@ -38,7 +40,7 @@ class SnkFormConfigManager {
38
40
  cardsState.set(cardId, propertyChanged === "fixed" ?
39
41
  this.updateFixSequence(Object.assign(Object.assign({}, currentConfig), { fixed: cardConfig.fixed }), cardsState)
40
42
  : Object.assign(Object.assign({}, currentConfig), { [propertyChanged]: cardConfig[propertyChanged] }));
41
- ConfigStorage.saveCardState(cardsState, this._configName, this._resourceID)
43
+ ConfigStorage.saveCardState(cardsState, this._configName)
42
44
  .then(savedCardConfig => {
43
45
  this._config = Object.assign(Object.assign({}, this._config), { cardsState });
44
46
  resolve(savedCardConfig);
@@ -114,18 +116,18 @@ class SnkFormConfigManager {
114
116
  }
115
117
  return this._formConfigFetcher;
116
118
  }
117
- async fetchUserAvailableConfigs() {
119
+ async fetchUserAvailableConfigs(resourceID) {
118
120
  if (this._configName != undefined) {
119
121
  //FIXME: Precisamos preparar o backend para retornar as configurações disponíveis para details;
120
122
  return Promise.resolve(undefined);
121
123
  }
122
- return this.getFormConfigFetcher().fetchUserAvailableConfigs(this._configName, this._resourceID);
124
+ return this.getFormConfigFetcher().fetchUserAvailableConfigs(this._configName, resourceID);
123
125
  }
124
- async fetchLegacyConfig() {
125
- return this.getFormConfigFetcher().fetchLegacyConfig(this._configName, this._resourceID);
126
+ async fetchLegacyConfig(resourceID) {
127
+ return this.getFormConfigFetcher().fetchLegacyConfig(this._configName, resourceID);
126
128
  }
127
- async fetchDefaultConfig() {
128
- return this.getFormConfigFetcher().fetchDefaultConfig(this._configName, this._resourceID);
129
+ async fetchDefaultConfig(resourceID) {
130
+ return this.getFormConfigFetcher().fetchDefaultConfig(this._configName, resourceID);
129
131
  }
130
132
  }
131
133