@beinformed/ui 1.25.4 → 1.25.5

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 (40) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/esm/hooks/useModularUIBasic.js +4 -1
  3. package/esm/hooks/useModularUIBasic.js.map +1 -1
  4. package/esm/hooks/useModularUIModel.js +2 -1
  5. package/esm/hooks/useModularUIModel.js.map +1 -1
  6. package/esm/modularui/ModularUIRequest.js +19 -2
  7. package/esm/modularui/ModularUIRequest.js.map +1 -1
  8. package/esm/redux/_modularui/ModularUIActions.js +2 -0
  9. package/esm/redux/_modularui/ModularUIActions.js.map +1 -1
  10. package/esm/redux/_modularui/ModularUIMiddleware.js +1 -0
  11. package/esm/redux/_modularui/ModularUIMiddleware.js.map +1 -1
  12. package/esm/redux/_modularui/types.js.map +1 -1
  13. package/esm/utils/fetch/types.js.map +1 -1
  14. package/lib/hooks/useModularUIBasic.js +4 -1
  15. package/lib/hooks/useModularUIBasic.js.flow +8 -1
  16. package/lib/hooks/useModularUIBasic.js.map +1 -1
  17. package/lib/hooks/useModularUIModel.js +2 -1
  18. package/lib/hooks/useModularUIModel.js.flow +1 -0
  19. package/lib/hooks/useModularUIModel.js.map +1 -1
  20. package/lib/modularui/ModularUIRequest.js +19 -2
  21. package/lib/modularui/ModularUIRequest.js.flow +21 -3
  22. package/lib/modularui/ModularUIRequest.js.map +1 -1
  23. package/lib/redux/_modularui/ModularUIActions.js +2 -0
  24. package/lib/redux/_modularui/ModularUIActions.js.flow +2 -0
  25. package/lib/redux/_modularui/ModularUIActions.js.map +1 -1
  26. package/lib/redux/_modularui/ModularUIMiddleware.js +1 -0
  27. package/lib/redux/_modularui/ModularUIMiddleware.js.flow +2 -0
  28. package/lib/redux/_modularui/ModularUIMiddleware.js.map +1 -1
  29. package/lib/redux/_modularui/types.js.flow +1 -0
  30. package/lib/redux/_modularui/types.js.map +1 -1
  31. package/lib/utils/fetch/types.js.flow +1 -1
  32. package/lib/utils/fetch/types.js.map +1 -1
  33. package/package.json +1 -1
  34. package/src/hooks/useModularUIBasic.js +8 -1
  35. package/src/hooks/useModularUIModel.js +1 -0
  36. package/src/modularui/ModularUIRequest.js +21 -3
  37. package/src/redux/_modularui/ModularUIActions.js +2 -0
  38. package/src/redux/_modularui/ModularUIMiddleware.js +2 -0
  39. package/src/redux/_modularui/types.js +1 -0
  40. package/src/utils/fetch/types.js +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"useModularUIModel.js","names":["useApplication","useModularUIBasic","expectedModels","targetModel","ApplicationModel","useTab","href","TabModel","useCaseView","CaseViewModel","usePanel","useList","ListModel","useListOrDetail","DetailModel","useListDetail","ListDetailModel","useGroupingPanel","GroupingPanelModel","useDetailPanel","useQuicksearch","CaseSearchModel","useUserProfile","UserProfileModel"],"sources":["../../src/hooks/useModularUIModel.js"],"sourcesContent":["// @flow\nimport ApplicationModel from \"../models/application/ApplicationModel\";\nimport CaseViewModel from \"../models/caseview/CaseViewModel\";\nimport TabModel from \"../models/tab/TabModel\";\nimport ListModel from \"../models/list/ListModel\";\nimport GroupingPanelModel from \"../models/panels/GroupingPanelModel\";\nimport DetailModel from \"../models/detail/DetailModel\";\nimport CaseSearchModel from \"../models/search/CaseSearchModel\";\nimport ListDetailModel from \"../models/list/ListDetailModel\";\nimport UserProfileModel from \"../models/user/UserProfileModel\";\n\nimport { useModularUIBasic } from \"./useModularUIBasic\";\n\n/**\n * Load application\n */\nexport const useApplication = (): ApplicationModel | null =>\n useModularUIBasic(\"application\", \"/\", {\n expectedModels: [\"Application\"],\n targetModel: ApplicationModel,\n });\n\n/**\n * Load a tab by href\n */\nexport const useTab = (href: string): TabModel | null =>\n useModularUIBasic(\"tab\", href, {\n expectedModels: [\"Tab\"],\n targetModel: TabModel,\n });\n\n/**\n * Load caseview by href\n */\nexport const useCaseView = (href: string): CaseViewModel | null =>\n useModularUIBasic(\"caseview\", href, {\n expectedModels: [\"CaseView\"],\n targetModel: CaseViewModel,\n });\n\n/**\n */\nexport const usePanel = (\n href: string\n): ListModel | GroupingPanelModel | DetailModel | null =>\n useModularUIBasic(\"panel\", href, {\n expectedModels: [\"List\", \"GroupingPanel\", \"Detail\"],\n });\n\n/**\n */\nexport const useList = (href: string): ListModel | null =>\n useModularUIBasic(\"list\", href, {\n expectedModels: [\"List\"],\n targetModel: ListModel,\n });\n\n/**\n */\nexport const useListOrDetail = (href: string): ListModel | DetailModel | null =>\n useModularUIBasic(\"list\", href, {\n expectedModels: [\"List\", \"Detail\"],\n targetModel: [ListModel, DetailModel],\n });\n\n/**\n */\nexport const useListDetail = (href: string): ListDetailModel | null =>\n useModularUIBasic(\"listdetail\", href, {\n expectedModels: [\"ListDetail\"],\n targetModel: ListDetailModel,\n });\n\n/**\n */\nexport const useGroupingPanel = (href: string): GroupingPanelModel | null =>\n useModularUIBasic(\"groupingpanel\", href, {\n expectedModels: [\"GroupingPanel\"],\n targetModel: GroupingPanelModel,\n });\n\n/**\n */\nexport const useDetailPanel = (href: string): DetailModel | null =>\n useModularUIBasic(\"detailpanel\", href, {\n expectedModels: [\"Detail\"],\n targetModel: DetailModel,\n });\n\n/**\n */\nexport const useQuicksearch = (href: string): CaseSearchModel | null =>\n useModularUIBasic(\"quicksearch\", href, {\n expectedModels: [\"CaseSearch\"],\n targetModel: CaseSearchModel,\n });\n\n/**\n */\nexport const useUserProfile = (href: string): UserProfileModel | null =>\n useModularUIBasic(\"userprofile\", href, {\n expectedModels: [\"UserProfile\"],\n targetModel: UserProfileModel,\n });\n"],"mappings":";;;;;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACO,MAAMA,cAAc,GAAG,MAC5B,IAAAC,oCAAiB,EAAC,aAAa,EAAE,GAAG,EAAE;EACpCC,cAAc,EAAE,CAAC,aAAa,CAAC;EAC/BC,WAAW,EAAEC;AACf,CAAC,CAAC;;AAEJ;AACA;AACA;AAFA;AAGO,MAAMC,MAAM,GAAIC,IAAY,IACjC,IAAAL,oCAAiB,EAAC,KAAK,EAAEK,IAAI,EAAE;EAC7BJ,cAAc,EAAE,CAAC,KAAK,CAAC;EACvBC,WAAW,EAAEI;AACf,CAAC,CAAC;;AAEJ;AACA;AACA;AAFA;AAGO,MAAMC,WAAW,GAAIF,IAAY,IACtC,IAAAL,oCAAiB,EAAC,UAAU,EAAEK,IAAI,EAAE;EAClCJ,cAAc,EAAE,CAAC,UAAU,CAAC;EAC5BC,WAAW,EAAEM;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,QAAQ,GACnBJ,IAAY,IAEZ,IAAAL,oCAAiB,EAAC,OAAO,EAAEK,IAAI,EAAE;EAC/BJ,cAAc,EAAE,CAAC,MAAM,EAAE,eAAe,EAAE,QAAQ;AACpD,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMS,OAAO,GAAIL,IAAY,IAClC,IAAAL,oCAAiB,EAAC,MAAM,EAAEK,IAAI,EAAE;EAC9BJ,cAAc,EAAE,CAAC,MAAM,CAAC;EACxBC,WAAW,EAAES;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,eAAe,GAAIP,IAAY,IAC1C,IAAAL,oCAAiB,EAAC,MAAM,EAAEK,IAAI,EAAE;EAC9BJ,cAAc,EAAE,CAAC,MAAM,EAAE,QAAQ,CAAC;EAClCC,WAAW,EAAE,CAACS,kBAAS,EAAEE,oBAAW;AACtC,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,aAAa,GAAIT,IAAY,IACxC,IAAAL,oCAAiB,EAAC,YAAY,EAAEK,IAAI,EAAE;EACpCJ,cAAc,EAAE,CAAC,YAAY,CAAC;EAC9BC,WAAW,EAAEa;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,gBAAgB,GAAIX,IAAY,IAC3C,IAAAL,oCAAiB,EAAC,eAAe,EAAEK,IAAI,EAAE;EACvCJ,cAAc,EAAE,CAAC,eAAe,CAAC;EACjCC,WAAW,EAAEe;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,cAAc,GAAIb,IAAY,IACzC,IAAAL,oCAAiB,EAAC,aAAa,EAAEK,IAAI,EAAE;EACrCJ,cAAc,EAAE,CAAC,QAAQ,CAAC;EAC1BC,WAAW,EAAEW;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMM,cAAc,GAAId,IAAY,IACzC,IAAAL,oCAAiB,EAAC,aAAa,EAAEK,IAAI,EAAE;EACrCJ,cAAc,EAAE,CAAC,YAAY,CAAC;EAC9BC,WAAW,EAAEkB;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,cAAc,GAAIhB,IAAY,IACzC,IAAAL,oCAAiB,EAAC,aAAa,EAAEK,IAAI,EAAE;EACrCJ,cAAc,EAAE,CAAC,aAAa,CAAC;EAC/BC,WAAW,EAAEoB;AACf,CAAC,CAAC;AAAC"}
1
+ {"version":3,"file":"useModularUIModel.js","names":["useApplication","useModularUIBasic","expectedModels","targetModel","ApplicationModel","useTab","href","TabModel","useCaseView","CaseViewModel","usePanel","useList","ListModel","useListOrDetail","DetailModel","useListDetail","ListDetailModel","forceTargetModel","useGroupingPanel","GroupingPanelModel","useDetailPanel","useQuicksearch","CaseSearchModel","useUserProfile","UserProfileModel"],"sources":["../../src/hooks/useModularUIModel.js"],"sourcesContent":["// @flow\nimport ApplicationModel from \"../models/application/ApplicationModel\";\nimport CaseViewModel from \"../models/caseview/CaseViewModel\";\nimport TabModel from \"../models/tab/TabModel\";\nimport ListModel from \"../models/list/ListModel\";\nimport GroupingPanelModel from \"../models/panels/GroupingPanelModel\";\nimport DetailModel from \"../models/detail/DetailModel\";\nimport CaseSearchModel from \"../models/search/CaseSearchModel\";\nimport ListDetailModel from \"../models/list/ListDetailModel\";\nimport UserProfileModel from \"../models/user/UserProfileModel\";\n\nimport { useModularUIBasic } from \"./useModularUIBasic\";\n\n/**\n * Load application\n */\nexport const useApplication = (): ApplicationModel | null =>\n useModularUIBasic(\"application\", \"/\", {\n expectedModels: [\"Application\"],\n targetModel: ApplicationModel,\n });\n\n/**\n * Load a tab by href\n */\nexport const useTab = (href: string): TabModel | null =>\n useModularUIBasic(\"tab\", href, {\n expectedModels: [\"Tab\"],\n targetModel: TabModel,\n });\n\n/**\n * Load caseview by href\n */\nexport const useCaseView = (href: string): CaseViewModel | null =>\n useModularUIBasic(\"caseview\", href, {\n expectedModels: [\"CaseView\"],\n targetModel: CaseViewModel,\n });\n\n/**\n */\nexport const usePanel = (\n href: string\n): ListModel | GroupingPanelModel | DetailModel | null =>\n useModularUIBasic(\"panel\", href, {\n expectedModels: [\"List\", \"GroupingPanel\", \"Detail\"],\n });\n\n/**\n */\nexport const useList = (href: string): ListModel | null =>\n useModularUIBasic(\"list\", href, {\n expectedModels: [\"List\"],\n targetModel: ListModel,\n });\n\n/**\n */\nexport const useListOrDetail = (href: string): ListModel | DetailModel | null =>\n useModularUIBasic(\"list\", href, {\n expectedModels: [\"List\", \"Detail\"],\n targetModel: [ListModel, DetailModel],\n });\n\n/**\n */\nexport const useListDetail = (href: string): ListDetailModel | null =>\n useModularUIBasic(\"listdetail\", href, {\n expectedModels: [\"ListDetail\"],\n targetModel: ListDetailModel,\n forceTargetModel: true,\n });\n\n/**\n */\nexport const useGroupingPanel = (href: string): GroupingPanelModel | null =>\n useModularUIBasic(\"groupingpanel\", href, {\n expectedModels: [\"GroupingPanel\"],\n targetModel: GroupingPanelModel,\n });\n\n/**\n */\nexport const useDetailPanel = (href: string): DetailModel | null =>\n useModularUIBasic(\"detailpanel\", href, {\n expectedModels: [\"Detail\"],\n targetModel: DetailModel,\n });\n\n/**\n */\nexport const useQuicksearch = (href: string): CaseSearchModel | null =>\n useModularUIBasic(\"quicksearch\", href, {\n expectedModels: [\"CaseSearch\"],\n targetModel: CaseSearchModel,\n });\n\n/**\n */\nexport const useUserProfile = (href: string): UserProfileModel | null =>\n useModularUIBasic(\"userprofile\", href, {\n expectedModels: [\"UserProfile\"],\n targetModel: UserProfileModel,\n });\n"],"mappings":";;;;;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AAEA;AACA;AACA;AACO,MAAMA,cAAc,GAAG,MAC5B,IAAAC,oCAAiB,EAAC,aAAa,EAAE,GAAG,EAAE;EACpCC,cAAc,EAAE,CAAC,aAAa,CAAC;EAC/BC,WAAW,EAAEC;AACf,CAAC,CAAC;;AAEJ;AACA;AACA;AAFA;AAGO,MAAMC,MAAM,GAAIC,IAAY,IACjC,IAAAL,oCAAiB,EAAC,KAAK,EAAEK,IAAI,EAAE;EAC7BJ,cAAc,EAAE,CAAC,KAAK,CAAC;EACvBC,WAAW,EAAEI;AACf,CAAC,CAAC;;AAEJ;AACA;AACA;AAFA;AAGO,MAAMC,WAAW,GAAIF,IAAY,IACtC,IAAAL,oCAAiB,EAAC,UAAU,EAAEK,IAAI,EAAE;EAClCJ,cAAc,EAAE,CAAC,UAAU,CAAC;EAC5BC,WAAW,EAAEM;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,QAAQ,GACnBJ,IAAY,IAEZ,IAAAL,oCAAiB,EAAC,OAAO,EAAEK,IAAI,EAAE;EAC/BJ,cAAc,EAAE,CAAC,MAAM,EAAE,eAAe,EAAE,QAAQ;AACpD,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMS,OAAO,GAAIL,IAAY,IAClC,IAAAL,oCAAiB,EAAC,MAAM,EAAEK,IAAI,EAAE;EAC9BJ,cAAc,EAAE,CAAC,MAAM,CAAC;EACxBC,WAAW,EAAES;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,eAAe,GAAIP,IAAY,IAC1C,IAAAL,oCAAiB,EAAC,MAAM,EAAEK,IAAI,EAAE;EAC9BJ,cAAc,EAAE,CAAC,MAAM,EAAE,QAAQ,CAAC;EAClCC,WAAW,EAAE,CAACS,kBAAS,EAAEE,oBAAW;AACtC,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,aAAa,GAAIT,IAAY,IACxC,IAAAL,oCAAiB,EAAC,YAAY,EAAEK,IAAI,EAAE;EACpCJ,cAAc,EAAE,CAAC,YAAY,CAAC;EAC9BC,WAAW,EAAEa,wBAAe;EAC5BC,gBAAgB,EAAE;AACpB,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,gBAAgB,GAAIZ,IAAY,IAC3C,IAAAL,oCAAiB,EAAC,eAAe,EAAEK,IAAI,EAAE;EACvCJ,cAAc,EAAE,CAAC,eAAe,CAAC;EACjCC,WAAW,EAAEgB;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,cAAc,GAAId,IAAY,IACzC,IAAAL,oCAAiB,EAAC,aAAa,EAAEK,IAAI,EAAE;EACrCJ,cAAc,EAAE,CAAC,QAAQ,CAAC;EAC1BC,WAAW,EAAEW;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMO,cAAc,GAAIf,IAAY,IACzC,IAAAL,oCAAiB,EAAC,aAAa,EAAEK,IAAI,EAAE;EACrCJ,cAAc,EAAE,CAAC,YAAY,CAAC;EAC9BC,WAAW,EAAEmB;AACf,CAAC,CAAC;;AAEJ;AACA;AADA;AAEO,MAAMC,cAAc,GAAIjB,IAAY,IACzC,IAAAL,oCAAiB,EAAC,aAAa,EAAEK,IAAI,EAAE;EACrCJ,cAAc,EAAE,CAAC,aAAa,CAAC;EAC/BC,WAAW,EAAEqB;AACf,CAAC,CAAC;AAAC"}
@@ -39,6 +39,7 @@ class ModularUIRequest {
39
39
  (0, _defineProperty2.default)(this, "_href", void 0);
40
40
  (0, _defineProperty2.default)(this, "_options", void 0);
41
41
  (0, _defineProperty2.default)(this, "_targetModel", void 0);
42
+ (0, _defineProperty2.default)(this, "_forceTargetModel", false);
42
43
  (0, _defineProperty2.default)(this, "_contributionsHref", void 0);
43
44
  (0, _defineProperty2.default)(this, "_locale", void 0);
44
45
  (0, _defineProperty2.default)(this, "_method", _Constants.HTTP_METHODS.GET);
@@ -135,6 +136,7 @@ class ModularUIRequest {
135
136
  /* eslint-disable no-unused-vars */
136
137
  const {
137
138
  targetModel,
139
+ forceTargetModel,
138
140
  updateModel,
139
141
  childmodels,
140
142
  isValidationRequest,
@@ -169,21 +171,36 @@ class ModularUIRequest {
169
171
  return this._targetModel;
170
172
  }
171
173
 
174
+ /**
175
+ */
176
+ set forceTargetModel(forceTargetModel) {
177
+ this._forceTargetModel = forceTargetModel ?? false;
178
+ }
179
+
180
+ /**
181
+ */
182
+ get forceTargetModel() {
183
+ return this._forceTargetModel;
184
+ }
185
+
172
186
  /**
173
187
  */
174
188
  resolveModel() {
175
189
  let availableModels;
176
190
  if (this.targetModel) {
177
191
  availableModels = Array.isArray(this.targetModel) ? [...this.targetModel] : [this.targetModel];
192
+ if (this.forceTargetModel) {
193
+ return availableModels[0];
194
+ }
178
195
  }
179
196
  const Model = (0, _resolveModel.default)(this.response, availableModels);
180
197
  if (Model && Model.isApplicableModel) {
181
198
  return Model;
182
199
  }
183
200
  if (availableModels) {
184
- throw new _exceptions.IllegalStateException(`data is not applicable for model(s): ${(0, _map.default)(availableModels).call(availableModels, m => m.modelName).join(", ")}`);
201
+ throw new _exceptions.IllegalStateException(`data for ${this.href.toString()} is not applicable for model(s): ${(0, _map.default)(availableModels).call(availableModels, m => m.modelName).join(", ")}, received response: ${(0, _stringify.default)(this.response)}`);
185
202
  }
186
- throw new _exceptions.IllegalStateException(`no javascript model is applicable for received response: ${(0, _stringify.default)(this.response)}`);
203
+ throw new _exceptions.IllegalStateException(`no javascript model is applicable for received request of ${this.href.toString()}, with response: ${(0, _stringify.default)(this.response)}`);
187
204
  }
188
205
 
189
206
  /**
@@ -42,6 +42,7 @@ class ModularUIRequest {
42
42
  _href: Href;
43
43
  _options: RequestModularUIOptions;
44
44
  _targetModel: ?TargetModel;
45
+ _forceTargetModel: boolean = false;
45
46
  _contributionsHref: string;
46
47
  _locale: string;
47
48
  _method: $Keys<typeof HTTP_METHODS> = HTTP_METHODS.GET;
@@ -153,6 +154,7 @@ class ModularUIRequest {
153
154
  /* eslint-disable no-unused-vars */
154
155
  const {
155
156
  targetModel,
157
+ forceTargetModel,
156
158
  updateModel,
157
159
  childmodels,
158
160
  isValidationRequest,
@@ -189,6 +191,18 @@ class ModularUIRequest {
189
191
  return this._targetModel;
190
192
  }
191
193
 
194
+ /**
195
+ */
196
+ set forceTargetModel(forceTargetModel: boolean) {
197
+ this._forceTargetModel = forceTargetModel ?? false;
198
+ }
199
+
200
+ /**
201
+ */
202
+ get forceTargetModel(): boolean {
203
+ return this._forceTargetModel;
204
+ }
205
+
192
206
  /**
193
207
  */
194
208
  resolveModel(): Class<ModularUIModel> {
@@ -197,6 +211,10 @@ class ModularUIRequest {
197
211
  availableModels = Array.isArray(this.targetModel)
198
212
  ? [...this.targetModel]
199
213
  : [this.targetModel];
214
+
215
+ if (this.forceTargetModel) {
216
+ return availableModels[0];
217
+ }
200
218
  }
201
219
 
202
220
  const Model: Class<ModularUIModel> | null = resolveModel(
@@ -210,14 +228,14 @@ class ModularUIRequest {
210
228
 
211
229
  if (availableModels) {
212
230
  throw new IllegalStateException(
213
- `data is not applicable for model(s): ${availableModels
231
+ `data for ${this.href.toString()} is not applicable for model(s): ${availableModels
214
232
  .map((m) => m.modelName)
215
- .join(", ")}`
233
+ .join(", ")}, received response: ${JSON.stringify(this.response)}`
216
234
  );
217
235
  }
218
236
 
219
237
  throw new IllegalStateException(
220
- `no javascript model is applicable for received response: ${JSON.stringify(
238
+ `no javascript model is applicable for received request of ${this.href.toString()}, with response: ${JSON.stringify(
221
239
  this.response
222
240
  )}`
223
241
  );
@@ -1 +1 @@
1
- {"version":3,"file":"ModularUIRequest.js","names":["ModularUIRequest","constructor","href","options","HTTP_METHODS","GET","IllegalArgumentException","_response","ModularUIResponse","Href","locale","parameters","targetModel","method","contributionsHref","_contributionsHref","_locale","response","_href","_method","_options","requestOptions","updateModel","childmodels","isValidationRequest","removeOnUnmount","withChildModels","_targetModel","resolveModel","availableModels","Array","isArray","Model","isApplicableModel","IllegalStateException","m","modelName","join","createModel","processContributionsService","contributionsData","isPlainObject","contributionsKey","error","handleContributionsError","key","contributions","errorMessage","properties","message","ModularUIError","handleDataError","path","toString","handleData","data","links","_links","processDataService","fetchContributionsService","universalFetch","url","BASE","cache","fetchDataService","params","getQuerystringForModularUI","onProgress","processAsyncLayoutHints","getSetting","processApplicationLinks","processTabLinks","processPanelLinks","resolve","contributionLinks","dataLinks","contributionTabLink","tab","dataTabLinks","dataLink","name","processLinks","components","then","newLinks","replaceApplicationLinks","tabName","tabLink","component","panel","dataLinksPerName","linksPerName","hideWhenEmptyLinks","contributionLink","layouthint","includes","HIDE_WHEN_EMPTY","isHiddenListChecks","push","isHiddenList","all","hiddenLinks","newDataLinks","dataLinkKey","HIDE_WHEN_EMPTY_IGNORE_TASKS","_embedded","actions","noListItems","noActions","isHidden","catch","progressEvent","_progressEvent","getDynamicValidationData","model","prevData","JSON","parse","FormModel","newData","validationData","deepmerge","loadDynamicValidations","currentFormObject","hasDynamicValidations","validationHref","setParameter","updateValidations","fetch","Error","fetchChildModels","fetchFromCache","childModelLinks","getInitialChildModelLinks","childModelRequests","childModelLink","request","isCacheable","allSettled","childModels","resolvedChildModels","forEach","childModel","status","reason","console","value","addChildModels","fetchContent","withChildSections","ContentModel","childSectionLinks","length","fetchContentChildSections","contentModel","newContentModel","clone","childSectionLink","contentHrefWithEntryDate","selfhref","addParameter","TIMEVERSION_FILTER_NAME","entryDate","sectionModels","childSections","post","POST","postForm","form","formdata","update"],"sources":["../../src/modularui/ModularUIRequest.js"],"sourcesContent":["// @flow\nimport deepmerge from \"deepmerge\";\n\nimport {\n BASE,\n HTTP_METHODS,\n TIMEVERSION_FILTER_NAME,\n} from \"../constants/Constants\";\n\nimport { HIDE_WHEN_EMPTY } from \"../constants/LayoutHints\";\n\nimport { getSetting } from \"../constants/Settings\";\n\nimport Href from \"../models/href/Href\";\n\nimport universalFetch from \"../utils/fetch/universalFetch\";\nimport resolveModel from \"../models/resolveModel\";\nimport FormModel from \"../models/form/FormModel\";\nimport ContentModel from \"../models/content/ContentModel\";\n\nimport ModularUIResponse from \"./ModularUIResponse\";\n\nimport ModularUIError from \"./ModularUIError\";\nimport { IllegalArgumentException, IllegalStateException } from \"../exceptions\";\n\nimport { isPlainObject } from \"../utils/helpers/objects\";\n\nimport type { TargetModel } from \"./types\";\nimport type {\n RequestBaseOptions,\n RequestModularUIOptions,\n} from \"../utils/fetch/types\";\nimport type { ModularUIModel } from \"../models/types\";\n\n/**\n * Helper for fetching data and contributions from the Be Informed modular ui\n * and merge it into a target or resolvable model.\n */\nclass ModularUIRequest {\n _response: ModularUIResponse;\n\n _href: Href;\n _options: RequestModularUIOptions;\n _targetModel: ?TargetModel;\n _contributionsHref: string;\n _locale: string;\n _method: $Keys<typeof HTTP_METHODS> = HTTP_METHODS.GET;\n\n _progressEvent: ProgressEventHandler;\n\n /**\n */\n constructor(\n href: Href | string,\n options: $Shape<RequestModularUIOptions> = {}\n ) {\n if (!href) {\n throw new IllegalArgumentException(\n \"You must pass a href to the resource that is requested\"\n );\n }\n\n this.options = options;\n\n this._response = new ModularUIResponse();\n\n this.href = typeof href === \"string\" ? new Href(href) : href;\n this.locale = options.locale ?? \"en\";\n\n // copy request parameters to response, to be able to use them in the models\n // self links are missing the request parameters\n this._response.parameters = this.href.parameters;\n\n if (options.targetModel) {\n this.targetModel = options.targetModel;\n }\n\n if (options.method) {\n this.method = options.method;\n } else {\n this.method = this.href.method;\n }\n }\n\n /**\n */\n get contributionsHref(): string {\n return this._contributionsHref;\n }\n\n /**\n */\n set contributionsHref(contributionsHref: string) {\n this._contributionsHref = contributionsHref;\n }\n\n /**\n */\n set locale(locale: string) {\n this._locale = locale;\n this._response.locale = locale;\n }\n\n /**\n */\n get locale(): string {\n return this._locale;\n }\n\n /**\n */\n get response(): ModularUIResponse {\n return this._response;\n }\n\n /**\n */\n set href(href: Href) {\n this._href = href;\n }\n\n /**\n */\n get href(): Href {\n return this._href;\n }\n\n /**\n */\n set method(method: $Keys<typeof HTTP_METHODS>) {\n this._method = method;\n }\n\n /**\n */\n get method(): $Keys<typeof HTTP_METHODS> {\n return this._method;\n }\n\n /**\n */\n get options(): RequestModularUIOptions {\n return {\n ...this._options,\n locale: this.locale,\n method: this.method,\n };\n }\n\n /**\n */\n get requestOptions(): RequestBaseOptions {\n /* eslint-disable no-unused-vars */\n const {\n targetModel,\n updateModel,\n childmodels,\n isValidationRequest,\n removeOnUnmount,\n ...requestOptions\n } = this.options;\n /* eslint-enable no-unused-vars */\n return requestOptions;\n }\n\n /**\n */\n set options(options: RequestModularUIOptions) {\n this._options = options;\n }\n\n /**\n */\n get withChildModels(): boolean {\n return (\n !(\"childmodels\" in this.options) || this.options.childmodels === true\n );\n }\n\n /**\n */\n set targetModel(targetModel: TargetModel) {\n this._targetModel = targetModel;\n }\n\n /**\n */\n get targetModel(): ?TargetModel {\n return this._targetModel;\n }\n\n /**\n */\n resolveModel(): Class<ModularUIModel> {\n let availableModels;\n if (this.targetModel) {\n availableModels = Array.isArray(this.targetModel)\n ? [...this.targetModel]\n : [this.targetModel];\n }\n\n const Model: Class<ModularUIModel> | null = resolveModel(\n this.response,\n availableModels\n );\n\n if (Model && Model.isApplicableModel) {\n return Model;\n }\n\n if (availableModels) {\n throw new IllegalStateException(\n `data is not applicable for model(s): ${availableModels\n .map((m) => m.modelName)\n .join(\", \")}`\n );\n }\n\n throw new IllegalStateException(\n `no javascript model is applicable for received response: ${JSON.stringify(\n this.response\n )}`\n );\n }\n\n /**\n */\n createModel(): ModularUIModel {\n const Model = this.resolveModel();\n return new Model(this.response);\n }\n\n /**\n */\n processContributionsService(contributionsData: Object): void {\n if (!isPlainObject(contributionsData)) {\n throw new IllegalArgumentException(\n \"Missing contributions data or contributions is not JSON\"\n );\n }\n\n const [contributionsKey] = Object.keys(contributionsData);\n\n if (contributionsData.error && contributionsKey === \"error\") {\n this.handleContributionsError(contributionsData.error);\n }\n\n // The key of the data service is different from the contributions service for forms\n if (!(this.response.key in contributionsData)) {\n this.response.key = contributionsKey;\n }\n\n this.response.contributions = contributionsData[this.response.key];\n }\n\n /**\n */\n handleContributionsError(error: Object): void {\n const errorMessage = error.properties?.message ?? \"Error in contribution\";\n throw new ModularUIError(errorMessage, error, this.contributionsHref);\n }\n\n /**\n */\n handleDataError(error: Object): void {\n if (error.properties) {\n const errorMessage = error.properties?.message ?? \"Error in data\";\n throw new ModularUIError(errorMessage, error, this.href.path.toString());\n }\n\n throw new IllegalArgumentException(error);\n }\n\n /**\n */\n handleData(key: string, data: Object): void {\n this.response.key = key;\n this.response.data = data;\n\n const links = data._links;\n\n if (links && links.contributions) {\n this.contributionsHref = links.contributions.href;\n } else if (Array.isArray(links) && links[0].contributions) {\n this.contributionsHref = links[0].contributions.href;\n } else {\n throw new IllegalArgumentException(\n `Contributions link not found for data with key ${key}`\n );\n }\n }\n\n /**\n */\n processDataService(data: Object): void {\n if (!isPlainObject(data)) {\n throw new IllegalArgumentException(\"Missing data or data is not JSON\");\n }\n\n if (data.error) {\n this.handleDataError(data.error);\n } else {\n const [key] = Object.keys(data);\n this.handleData(key, data[key]);\n }\n }\n\n /**\n */\n fetchContributionsService(): Promise<any> {\n if (!this.contributionsHref) {\n throw new IllegalStateException(\"Missing a contributions href\");\n }\n\n return universalFetch({\n url: `${BASE}${this.contributionsHref}`,\n cache: true,\n locale: this.options.locale,\n });\n }\n\n /**\n */\n fetchDataService(): Promise<any> {\n return universalFetch({\n ...this.requestOptions,\n url: `${BASE}${this.href.path}`,\n params: this.href.getQuerystringForModularUI(),\n locale: this.options.locale,\n onProgress: this.onProgress,\n });\n }\n\n /**\n * Check if links contain a 'hide-when-empty' layout hint and remove the link from\n * the component when it exists and no results are available\n */\n async processAsyncLayoutHints(): Promise<void> {\n if (getSetting(\"ALLOW_HIDE_WHEN_EMPTY_ON_TABS\")) {\n await this.processApplicationLinks();\n await this.processTabLinks();\n }\n await this.processPanelLinks();\n\n return Promise.resolve();\n }\n\n /**\n * hide application links<br>\n * _links on application data contains an extra level of tab links\n */\n processApplicationLinks(): Promise<void> {\n const contributionLinks = this.response.contributions._links;\n const dataLinks = this.response.data._links;\n if (!contributionLinks || !dataLinks) {\n return Promise.resolve();\n }\n\n if (\"tab\" in contributionLinks && \"tab\" in dataLinks) {\n for (const contributionTabLink of contributionLinks.tab) {\n if (\"components\" in contributionTabLink) {\n const dataTabLinks = dataLinks.tab.find(\n (dataLink) => dataLink.name === contributionTabLink.name\n );\n\n if (dataTabLinks && \"components\" in dataTabLinks) {\n return this.processLinks(\n dataTabLinks.components,\n contributionTabLink.components\n ).then((newLinks) =>\n this.replaceApplicationLinks(contributionTabLink.name, newLinks)\n );\n }\n }\n }\n }\n\n return Promise.resolve();\n }\n\n /**\n * Replace hidden link in application link tree\n */\n replaceApplicationLinks(tabName: string, newLinks: Array<Object>): void {\n this.response.data._links.tab = this.response.data._links.tab.map(\n (tabLink) => {\n const key = tabLink.name;\n if (tabName === key) {\n tabLink.components = newLinks;\n }\n return tabLink;\n }\n );\n }\n\n /**\n */\n processTabLinks(): Promise<void> {\n const contributionLinks = this.response.contributions._links;\n\n if (!contributionLinks) {\n return Promise.resolve();\n }\n\n if (\"component\" in contributionLinks) {\n return this.processLinks(\n this.response.data._links.component,\n contributionLinks.component\n ).then((newLinks) => {\n this.response.data._links.component = newLinks;\n });\n }\n\n return Promise.resolve();\n }\n\n /**\n */\n processPanelLinks(): Promise<void> {\n const contributionLinks = this.response.contributions._links;\n\n if (!contributionLinks) {\n return Promise.resolve();\n }\n\n if (\"panel\" in contributionLinks) {\n return this.processLinks(\n this.response.data._links,\n contributionLinks.panel\n ).then((newLinks) => {\n this.response.data._links = newLinks;\n });\n }\n\n return Promise.resolve();\n }\n\n /**\n * Retrieve an object of key: link\n */\n dataLinksPerName(dataLinks: any): { [linkName: string]: any } {\n if (Array.isArray(dataLinks)) {\n const links = {};\n for (const dataLink of dataLinks) {\n links[dataLink.name] = dataLink;\n }\n return links;\n }\n return dataLinks;\n }\n\n /**\n * Check if links are empty and hide them when hide-when-empty hint exists\n */\n processLinks(\n dataLinks: any,\n contributionLinks: any\n ): Promise<Object | Array<Object>> {\n const linksPerName = this.dataLinksPerName(dataLinks);\n const hideWhenEmptyLinks = contributionLinks.filter((contributionLink) =>\n contributionLink.layouthint?.includes(HIDE_WHEN_EMPTY)\n );\n\n const isHiddenListChecks = [];\n\n for (const contributionLink of hideWhenEmptyLinks) {\n const dataLink = linksPerName[contributionLink.name];\n if (dataLink?.href) {\n isHiddenListChecks.push(\n this.isHiddenList(contributionLink.name, dataLink.href)\n );\n }\n }\n\n return Promise.all(isHiddenListChecks).then(\n (hiddenLinks: Array<string>) => {\n if (Array.isArray(dataLinks)) {\n return dataLinks.filter(\n (dataLink) => !hiddenLinks.includes(dataLink.name)\n );\n }\n\n const newDataLinks: { [string]: any } = {};\n for (const dataLinkKey in dataLinks) {\n if (!hiddenLinks.includes(dataLinkKey)) {\n newDataLinks[dataLinkKey] = dataLinks[dataLinkKey];\n }\n }\n return newDataLinks;\n }\n );\n }\n\n /**\n */\n isHiddenList(name: string, href: string): Promise<string> {\n const HIDE_WHEN_EMPTY_IGNORE_TASKS = getSetting(\n \"HIDE_WHEN_EMPTY_IGNORE_TASKS\",\n false\n );\n\n return universalFetch({\n ...this.requestOptions,\n url: `${BASE}${href}`,\n })\n .then((response: Object) => {\n if (isPlainObject(response)) {\n const [key] = Object.keys(response);\n const { _embedded, actions } = response[key];\n\n const noListItems = _embedded === null;\n const noActions = actions == null || HIDE_WHEN_EMPTY_IGNORE_TASKS;\n\n const isHidden = noListItems && noActions;\n if (isHidden) {\n return name;\n }\n }\n return \"\";\n })\n .catch(() => {\n return \"\";\n });\n }\n\n /**\n */\n set onProgress(progressEvent: ProgressEventHandler) {\n this._progressEvent = progressEvent;\n }\n\n /**\n */\n get onProgress(): ProgressEventHandler {\n return this._progressEvent || null;\n }\n\n /**\n * Combine previous send request data with new validation data to create a complete request object\n * The received model is new FormModel containing ONLY the current question, not the previously entered questions\n * to create a complete request we append the originally send form objects\n */\n getDynamicValidationData(model: ModularUIModel): string {\n const prevData =\n typeof this.options.data === \"string\"\n ? JSON.parse(this.options.data)\n : this.options.data;\n\n if (model instanceof FormModel) {\n const newData = JSON.parse(model.validationData);\n // $FlowFixMe incompatible-call\n return JSON.stringify(deepmerge(prevData || {}, newData));\n }\n\n return JSON.stringify(prevData) ?? \"{}\";\n }\n\n /**\n * First load of dynamic values when a form is loaded\n */\n loadDynamicValidations(model: ModularUIModel): Promise<ModularUIModel> {\n if (\n !this.options.isValidationRequest &&\n getSetting(\"USE_INSTANT_SERVER_VALIDATION\") &&\n model instanceof FormModel &&\n model.currentFormObject &&\n model.currentFormObject.hasDynamicValidations\n ) {\n const validationHref = this.href.setParameter(\"commit\", \"false\");\n return universalFetch({\n ...this.requestOptions,\n url: `${BASE}${this.href.path}`,\n params: validationHref.getQuerystringForModularUI(),\n data: this.getDynamicValidationData(model),\n }).then((data) => {\n if (data == null || typeof data !== \"object\") {\n return model;\n }\n\n const [key] = Object.keys(data);\n return model.updateValidations(data[key]);\n });\n }\n\n return Promise.resolve(model);\n }\n\n /**\n */\n fetch(): Promise<ModularUIModel> {\n return this.fetchDataService()\n .then((data) => {\n if (data == null) {\n throw new Error(`No data received for ${this.href.toString()}`);\n }\n\n this.processDataService(data);\n return this.fetchContributionsService();\n })\n .then((contributionsData) => {\n if (contributionsData == null) {\n throw new Error(\n `No contributions data received for ${this.contributionsHref}`\n );\n }\n\n this.processContributionsService(contributionsData);\n return this.processAsyncLayoutHints();\n })\n .then(() => Promise.resolve(this.createModel()))\n .then((model) => this.loadDynamicValidations(model))\n .then((model) => {\n if (this.withChildModels) {\n return this.fetchChildModels(model);\n }\n\n return Promise.resolve(model);\n });\n }\n\n /**\n */\n fetchFromCache(): Promise<ModularUIModel> {\n this.options = {\n ...this.options,\n cache: true,\n };\n\n return this.fetch();\n }\n\n /**\n */\n fetchChildModels(model: ModularUIModel): Promise<ModularUIModel> {\n const childModelLinks = model.getInitialChildModelLinks();\n\n const childModelRequests = childModelLinks.map((childModelLink) => {\n const request = new ModularUIRequest(childModelLink.href, {\n locale: this.locale,\n });\n\n if (childModelLink.targetModel) {\n request.targetModel = childModelLink.targetModel;\n }\n\n if (childModelLink.isCacheable) {\n return request.fetchFromCache();\n }\n\n return request.fetch();\n });\n\n return Promise.allSettled(childModelRequests).then((childModels) => {\n const resolvedChildModels = [];\n\n childModels.forEach((childModel) => {\n if (childModel.status === \"rejected\") {\n const { reason } = childModel;\n if (reason.name !== \"Error.ChangePasswordRequired\") {\n console.error(\n \"Unexpected error when retrieving child model:\",\n reason\n );\n }\n } else {\n resolvedChildModels.push(childModel.value);\n }\n });\n\n model.addChildModels(resolvedChildModels);\n\n return model;\n });\n }\n\n /**\n */\n fetchContent(withChildSections: boolean): Promise<mixed> {\n return this.fetchFromCache().then((model) => {\n if (\n withChildSections &&\n model instanceof ContentModel &&\n model.childSectionLinks.length > 0\n ) {\n return this.fetchContentChildSections(model);\n }\n\n return Promise.resolve(model);\n });\n }\n\n /**\n * Recursively return child sections defined on the content model\n */\n fetchContentChildSections(contentModel: ContentModel): Promise<mixed> {\n const newContentModel = contentModel.clone();\n\n return Promise.all(\n contentModel.childSectionLinks.map((childSectionLink) => {\n const contentHrefWithEntryDate = childSectionLink.selfhref.addParameter(\n TIMEVERSION_FILTER_NAME,\n contentModel.entryDate\n );\n\n const request = new ModularUIRequest(contentHrefWithEntryDate, {\n locale: this.locale,\n });\n\n return request.fetchContent(true);\n })\n ).then((sectionModels) => {\n newContentModel.childSections = sectionModels;\n\n return newContentModel;\n });\n }\n\n /**\n * Make a post request with optionally data to send\n * @param data\n */\n post(data?: string | { [key: string]: string }): Promise<ModularUIModel> {\n this.method = HTTP_METHODS.POST;\n this.options = {\n ...this.options,\n data,\n };\n\n return this.fetch();\n }\n\n /**\n * Make a POST request using the form, an updated form is returned (merge of old and new form)\n * @param form\n * @returns {Promise<FormModel>}\n */\n postForm(form: FormModel): Promise<FormModel> {\n this.method = HTTP_METHODS.POST;\n this.options = {\n ...this.options,\n data: form.formdata,\n };\n\n return this.fetch().then((response) => {\n return form.update(response);\n });\n }\n}\n\nexport default ModularUIRequest;\n"],"mappings":";;;;;;;;;;;;;;;AACA;AAEA;AAMA;AAEA;AAEA;AAEA;AACA;AACA;AACA;AAEA;AAEA;AACA;AAEA;AASA;AACA;AACA;AACA;AACA,MAAMA,gBAAgB,CAAC;EAYrB;AACF;EACEC,WAAW,CACTC,IAAmB,EAEnB;IAAA,IADAC,OAAwC,uEAAG,CAAC,CAAC;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA,+CARTC,uBAAY,CAACC,GAAG;IAAA;IAUpD,IAAI,CAACH,IAAI,EAAE;MACT,MAAM,IAAII,oCAAwB,CAChC,wDAAwD,CACzD;IACH;IAEA,IAAI,CAACH,OAAO,GAAGA,OAAO;IAEtB,IAAI,CAACI,SAAS,GAAG,IAAIC,0BAAiB,EAAE;IAExC,IAAI,CAACN,IAAI,GAAG,OAAOA,IAAI,KAAK,QAAQ,GAAG,IAAIO,aAAI,CAACP,IAAI,CAAC,GAAGA,IAAI;IAC5D,IAAI,CAACQ,MAAM,GAAGP,OAAO,CAACO,MAAM,IAAI,IAAI;;IAEpC;IACA;IACA,IAAI,CAACH,SAAS,CAACI,UAAU,GAAG,IAAI,CAACT,IAAI,CAACS,UAAU;IAEhD,IAAIR,OAAO,CAACS,WAAW,EAAE;MACvB,IAAI,CAACA,WAAW,GAAGT,OAAO,CAACS,WAAW;IACxC;IAEA,IAAIT,OAAO,CAACU,MAAM,EAAE;MAClB,IAAI,CAACA,MAAM,GAAGV,OAAO,CAACU,MAAM;IAC9B,CAAC,MAAM;MACL,IAAI,CAACA,MAAM,GAAG,IAAI,CAACX,IAAI,CAACW,MAAM;IAChC;EACF;;EAEA;AACF;EACE,IAAIC,iBAAiB,GAAW;IAC9B,OAAO,IAAI,CAACC,kBAAkB;EAChC;;EAEA;AACF;EACE,IAAID,iBAAiB,CAACA,iBAAyB,EAAE;IAC/C,IAAI,CAACC,kBAAkB,GAAGD,iBAAiB;EAC7C;;EAEA;AACF;EACE,IAAIJ,MAAM,CAACA,MAAc,EAAE;IACzB,IAAI,CAACM,OAAO,GAAGN,MAAM;IACrB,IAAI,CAACH,SAAS,CAACG,MAAM,GAAGA,MAAM;EAChC;;EAEA;AACF;EACE,IAAIA,MAAM,GAAW;IACnB,OAAO,IAAI,CAACM,OAAO;EACrB;;EAEA;AACF;EACE,IAAIC,QAAQ,GAAsB;IAChC,OAAO,IAAI,CAACV,SAAS;EACvB;;EAEA;AACF;EACE,IAAIL,IAAI,CAACA,IAAU,EAAE;IACnB,IAAI,CAACgB,KAAK,GAAGhB,IAAI;EACnB;;EAEA;AACF;EACE,IAAIA,IAAI,GAAS;IACf,OAAO,IAAI,CAACgB,KAAK;EACnB;;EAEA;AACF;EACE,IAAIL,MAAM,CAACA,MAAkC,EAAE;IAC7C,IAAI,CAACM,OAAO,GAAGN,MAAM;EACvB;;EAEA;AACF;EACE,IAAIA,MAAM,GAA+B;IACvC,OAAO,IAAI,CAACM,OAAO;EACrB;;EAEA;AACF;EACE,IAAIhB,OAAO,GAA4B;IACrC,OAAO;MACL,GAAG,IAAI,CAACiB,QAAQ;MAChBV,MAAM,EAAE,IAAI,CAACA,MAAM;MACnBG,MAAM,EAAE,IAAI,CAACA;IACf,CAAC;EACH;;EAEA;AACF;EACE,IAAIQ,cAAc,GAAuB;IACvC;IACA,MAAM;MACJT,WAAW;MACXU,WAAW;MACXC,WAAW;MACXC,mBAAmB;MACnBC,eAAe;MACf,GAAGJ;IACL,CAAC,GAAG,IAAI,CAAClB,OAAO;IAChB;IACA,OAAOkB,cAAc;EACvB;;EAEA;AACF;EACE,IAAIlB,OAAO,CAACA,OAAgC,EAAE;IAC5C,IAAI,CAACiB,QAAQ,GAAGjB,OAAO;EACzB;;EAEA;AACF;EACE,IAAIuB,eAAe,GAAY;IAC7B,OACE,EAAE,aAAa,IAAI,IAAI,CAACvB,OAAO,CAAC,IAAI,IAAI,CAACA,OAAO,CAACoB,WAAW,KAAK,IAAI;EAEzE;;EAEA;AACF;EACE,IAAIX,WAAW,CAACA,WAAwB,EAAE;IACxC,IAAI,CAACe,YAAY,GAAGf,WAAW;EACjC;;EAEA;AACF;EACE,IAAIA,WAAW,GAAiB;IAC9B,OAAO,IAAI,CAACe,YAAY;EAC1B;;EAEA;AACF;EACEC,YAAY,GAA0B;IACpC,IAAIC,eAAe;IACnB,IAAI,IAAI,CAACjB,WAAW,EAAE;MACpBiB,eAAe,GAAGC,KAAK,CAACC,OAAO,CAAC,IAAI,CAACnB,WAAW,CAAC,GAC7C,CAAC,GAAG,IAAI,CAACA,WAAW,CAAC,GACrB,CAAC,IAAI,CAACA,WAAW,CAAC;IACxB;IAEA,MAAMoB,KAAmC,GAAG,IAAAJ,qBAAY,EACtD,IAAI,CAACX,QAAQ,EACbY,eAAe,CAChB;IAED,IAAIG,KAAK,IAAIA,KAAK,CAACC,iBAAiB,EAAE;MACpC,OAAOD,KAAK;IACd;IAEA,IAAIH,eAAe,EAAE;MACnB,MAAM,IAAIK,iCAAqB,CAC5B,wCAAuC,kBAAAL,eAAe,OAAfA,eAAe,EAC/CM,CAAC,IAAKA,CAAC,CAACC,SAAS,CAAC,CACvBC,IAAI,CAAC,IAAI,CAAE,EAAC,CAChB;IACH;IAEA,MAAM,IAAIH,iCAAqB,CAC5B,4DAA2D,wBAC1D,IAAI,CAACjB,QAAQ,CACb,EAAC,CACJ;EACH;;EAEA;AACF;EACEqB,WAAW,GAAmB;IAC5B,MAAMN,KAAK,GAAG,IAAI,CAACJ,YAAY,EAAE;IACjC,OAAO,IAAII,KAAK,CAAC,IAAI,CAACf,QAAQ,CAAC;EACjC;;EAEA;AACF;EACEsB,2BAA2B,CAACC,iBAAyB,EAAQ;IAC3D,IAAI,CAAC,IAAAC,sBAAa,EAACD,iBAAiB,CAAC,EAAE;MACrC,MAAM,IAAIlC,oCAAwB,CAChC,yDAAyD,CAC1D;IACH;IAEA,MAAM,CAACoC,gBAAgB,CAAC,GAAG,mBAAYF,iBAAiB,CAAC;IAEzD,IAAIA,iBAAiB,CAACG,KAAK,IAAID,gBAAgB,KAAK,OAAO,EAAE;MAC3D,IAAI,CAACE,wBAAwB,CAACJ,iBAAiB,CAACG,KAAK,CAAC;IACxD;;IAEA;IACA,IAAI,EAAE,IAAI,CAAC1B,QAAQ,CAAC4B,GAAG,IAAIL,iBAAiB,CAAC,EAAE;MAC7C,IAAI,CAACvB,QAAQ,CAAC4B,GAAG,GAAGH,gBAAgB;IACtC;IAEA,IAAI,CAACzB,QAAQ,CAAC6B,aAAa,GAAGN,iBAAiB,CAAC,IAAI,CAACvB,QAAQ,CAAC4B,GAAG,CAAC;EACpE;;EAEA;AACF;EACED,wBAAwB,CAACD,KAAa,EAAQ;IAC5C,MAAMI,YAAY,GAAGJ,KAAK,CAACK,UAAU,EAAEC,OAAO,IAAI,uBAAuB;IACzE,MAAM,IAAIC,uBAAc,CAACH,YAAY,EAAEJ,KAAK,EAAE,IAAI,CAAC7B,iBAAiB,CAAC;EACvE;;EAEA;AACF;EACEqC,eAAe,CAACR,KAAa,EAAQ;IACnC,IAAIA,KAAK,CAACK,UAAU,EAAE;MACpB,MAAMD,YAAY,GAAGJ,KAAK,CAACK,UAAU,EAAEC,OAAO,IAAI,eAAe;MACjE,MAAM,IAAIC,uBAAc,CAACH,YAAY,EAAEJ,KAAK,EAAE,IAAI,CAACzC,IAAI,CAACkD,IAAI,CAACC,QAAQ,EAAE,CAAC;IAC1E;IAEA,MAAM,IAAI/C,oCAAwB,CAACqC,KAAK,CAAC;EAC3C;;EAEA;AACF;EACEW,UAAU,CAACT,GAAW,EAAEU,IAAY,EAAQ;IAC1C,IAAI,CAACtC,QAAQ,CAAC4B,GAAG,GAAGA,GAAG;IACvB,IAAI,CAAC5B,QAAQ,CAACsC,IAAI,GAAGA,IAAI;IAEzB,MAAMC,KAAK,GAAGD,IAAI,CAACE,MAAM;IAEzB,IAAID,KAAK,IAAIA,KAAK,CAACV,aAAa,EAAE;MAChC,IAAI,CAAChC,iBAAiB,GAAG0C,KAAK,CAACV,aAAa,CAAC5C,IAAI;IACnD,CAAC,MAAM,IAAI4B,KAAK,CAACC,OAAO,CAACyB,KAAK,CAAC,IAAIA,KAAK,CAAC,CAAC,CAAC,CAACV,aAAa,EAAE;MACzD,IAAI,CAAChC,iBAAiB,GAAG0C,KAAK,CAAC,CAAC,CAAC,CAACV,aAAa,CAAC5C,IAAI;IACtD,CAAC,MAAM;MACL,MAAM,IAAII,oCAAwB,CAC/B,kDAAiDuC,GAAI,EAAC,CACxD;IACH;EACF;;EAEA;AACF;EACEa,kBAAkB,CAACH,IAAY,EAAQ;IACrC,IAAI,CAAC,IAAAd,sBAAa,EAACc,IAAI,CAAC,EAAE;MACxB,MAAM,IAAIjD,oCAAwB,CAAC,kCAAkC,CAAC;IACxE;IAEA,IAAIiD,IAAI,CAACZ,KAAK,EAAE;MACd,IAAI,CAACQ,eAAe,CAACI,IAAI,CAACZ,KAAK,CAAC;IAClC,CAAC,MAAM;MACL,MAAM,CAACE,GAAG,CAAC,GAAG,mBAAYU,IAAI,CAAC;MAC/B,IAAI,CAACD,UAAU,CAACT,GAAG,EAAEU,IAAI,CAACV,GAAG,CAAC,CAAC;IACjC;EACF;;EAEA;AACF;EACEc,yBAAyB,GAAiB;IACxC,IAAI,CAAC,IAAI,CAAC7C,iBAAiB,EAAE;MAC3B,MAAM,IAAIoB,iCAAqB,CAAC,8BAA8B,CAAC;IACjE;IAEA,OAAO,IAAA0B,uBAAc,EAAC;MACpBC,GAAG,EAAG,GAAEC,eAAK,GAAE,IAAI,CAAChD,iBAAkB,EAAC;MACvCiD,KAAK,EAAE,IAAI;MACXrD,MAAM,EAAE,IAAI,CAACP,OAAO,CAACO;IACvB,CAAC,CAAC;EACJ;;EAEA;AACF;EACEsD,gBAAgB,GAAiB;IAC/B,OAAO,IAAAJ,uBAAc,EAAC;MACpB,GAAG,IAAI,CAACvC,cAAc;MACtBwC,GAAG,EAAG,GAAEC,eAAK,GAAE,IAAI,CAAC5D,IAAI,CAACkD,IAAK,EAAC;MAC/Ba,MAAM,EAAE,IAAI,CAAC/D,IAAI,CAACgE,0BAA0B,EAAE;MAC9CxD,MAAM,EAAE,IAAI,CAACP,OAAO,CAACO,MAAM;MAC3ByD,UAAU,EAAE,IAAI,CAACA;IACnB,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;AACA;EACE,MAAMC,uBAAuB,GAAkB;IAC7C,IAAI,IAAAC,oBAAU,EAAC,+BAA+B,CAAC,EAAE;MAC/C,MAAM,IAAI,CAACC,uBAAuB,EAAE;MACpC,MAAM,IAAI,CAACC,eAAe,EAAE;IAC9B;IACA,MAAM,IAAI,CAACC,iBAAiB,EAAE;IAE9B,OAAO,iBAAQC,OAAO,EAAE;EAC1B;;EAEA;AACF;AACA;AACA;EACEH,uBAAuB,GAAkB;IACvC,MAAMI,iBAAiB,GAAG,IAAI,CAACzD,QAAQ,CAAC6B,aAAa,CAACW,MAAM;IAC5D,MAAMkB,SAAS,GAAG,IAAI,CAAC1D,QAAQ,CAACsC,IAAI,CAACE,MAAM;IAC3C,IAAI,CAACiB,iBAAiB,IAAI,CAACC,SAAS,EAAE;MACpC,OAAO,iBAAQF,OAAO,EAAE;IAC1B;IAEA,IAAI,KAAK,IAAIC,iBAAiB,IAAI,KAAK,IAAIC,SAAS,EAAE;MACpD,KAAK,MAAMC,mBAAmB,IAAIF,iBAAiB,CAACG,GAAG,EAAE;QACvD,IAAI,YAAY,IAAID,mBAAmB,EAAE;UAAA;UACvC,MAAME,YAAY,GAAG,8BAAAH,SAAS,CAACE,GAAG,iBAC/BE,QAAQ,IAAKA,QAAQ,CAACC,IAAI,KAAKJ,mBAAmB,CAACI,IAAI,CACzD;UAED,IAAIF,YAAY,IAAI,YAAY,IAAIA,YAAY,EAAE;YAChD,OAAO,IAAI,CAACG,YAAY,CACtBH,YAAY,CAACI,UAAU,EACvBN,mBAAmB,CAACM,UAAU,CAC/B,CAACC,IAAI,CAAEC,QAAQ,IACd,IAAI,CAACC,uBAAuB,CAACT,mBAAmB,CAACI,IAAI,EAAEI,QAAQ,CAAC,CACjE;UACH;QACF;MACF;IACF;IAEA,OAAO,iBAAQX,OAAO,EAAE;EAC1B;;EAEA;AACF;AACA;EACEY,uBAAuB,CAACC,OAAe,EAAEF,QAAuB,EAAQ;IAAA;IACtE,IAAI,CAACnE,QAAQ,CAACsC,IAAI,CAACE,MAAM,CAACoB,GAAG,GAAG,kCAAI,CAAC5D,QAAQ,CAACsC,IAAI,CAACE,MAAM,CAACoB,GAAG,kBAC1DU,OAAO,IAAK;MACX,MAAM1C,GAAG,GAAG0C,OAAO,CAACP,IAAI;MACxB,IAAIM,OAAO,KAAKzC,GAAG,EAAE;QACnB0C,OAAO,CAACL,UAAU,GAAGE,QAAQ;MAC/B;MACA,OAAOG,OAAO;IAChB,CAAC,CACF;EACH;;EAEA;AACF;EACEhB,eAAe,GAAkB;IAC/B,MAAMG,iBAAiB,GAAG,IAAI,CAACzD,QAAQ,CAAC6B,aAAa,CAACW,MAAM;IAE5D,IAAI,CAACiB,iBAAiB,EAAE;MACtB,OAAO,iBAAQD,OAAO,EAAE;IAC1B;IAEA,IAAI,WAAW,IAAIC,iBAAiB,EAAE;MACpC,OAAO,IAAI,CAACO,YAAY,CACtB,IAAI,CAAChE,QAAQ,CAACsC,IAAI,CAACE,MAAM,CAAC+B,SAAS,EACnCd,iBAAiB,CAACc,SAAS,CAC5B,CAACL,IAAI,CAAEC,QAAQ,IAAK;QACnB,IAAI,CAACnE,QAAQ,CAACsC,IAAI,CAACE,MAAM,CAAC+B,SAAS,GAAGJ,QAAQ;MAChD,CAAC,CAAC;IACJ;IAEA,OAAO,iBAAQX,OAAO,EAAE;EAC1B;;EAEA;AACF;EACED,iBAAiB,GAAkB;IACjC,MAAME,iBAAiB,GAAG,IAAI,CAACzD,QAAQ,CAAC6B,aAAa,CAACW,MAAM;IAE5D,IAAI,CAACiB,iBAAiB,EAAE;MACtB,OAAO,iBAAQD,OAAO,EAAE;IAC1B;IAEA,IAAI,OAAO,IAAIC,iBAAiB,EAAE;MAChC,OAAO,IAAI,CAACO,YAAY,CACtB,IAAI,CAAChE,QAAQ,CAACsC,IAAI,CAACE,MAAM,EACzBiB,iBAAiB,CAACe,KAAK,CACxB,CAACN,IAAI,CAAEC,QAAQ,IAAK;QACnB,IAAI,CAACnE,QAAQ,CAACsC,IAAI,CAACE,MAAM,GAAG2B,QAAQ;MACtC,CAAC,CAAC;IACJ;IAEA,OAAO,iBAAQX,OAAO,EAAE;EAC1B;;EAEA;AACF;AACA;EACEiB,gBAAgB,CAACf,SAAc,EAA+B;IAC5D,IAAI7C,KAAK,CAACC,OAAO,CAAC4C,SAAS,CAAC,EAAE;MAC5B,MAAMnB,KAAK,GAAG,CAAC,CAAC;MAChB,KAAK,MAAMuB,QAAQ,IAAIJ,SAAS,EAAE;QAChCnB,KAAK,CAACuB,QAAQ,CAACC,IAAI,CAAC,GAAGD,QAAQ;MACjC;MACA,OAAOvB,KAAK;IACd;IACA,OAAOmB,SAAS;EAClB;;EAEA;AACF;AACA;EACEM,YAAY,CACVN,SAAc,EACdD,iBAAsB,EACW;IACjC,MAAMiB,YAAY,GAAG,IAAI,CAACD,gBAAgB,CAACf,SAAS,CAAC;IACrD,MAAMiB,kBAAkB,GAAG,qBAAAlB,iBAAiB,OAAjBA,iBAAiB,EAASmB,gBAAgB,IACnEA,gBAAgB,CAACC,UAAU,EAAEC,QAAQ,CAACC,4BAAe,CAAC,CACvD;IAED,MAAMC,kBAAkB,GAAG,EAAE;IAE7B,KAAK,MAAMJ,gBAAgB,IAAID,kBAAkB,EAAE;MACjD,MAAMb,QAAQ,GAAGY,YAAY,CAACE,gBAAgB,CAACb,IAAI,CAAC;MACpD,IAAID,QAAQ,EAAE7E,IAAI,EAAE;QAClB+F,kBAAkB,CAACC,IAAI,CACrB,IAAI,CAACC,YAAY,CAACN,gBAAgB,CAACb,IAAI,EAAED,QAAQ,CAAC7E,IAAI,CAAC,CACxD;MACH;IACF;IAEA,OAAO,iBAAQkG,GAAG,CAACH,kBAAkB,CAAC,CAACd,IAAI,CACxCkB,WAA0B,IAAK;MAC9B,IAAIvE,KAAK,CAACC,OAAO,CAAC4C,SAAS,CAAC,EAAE;QAC5B,OAAO,qBAAAA,SAAS,OAATA,SAAS,EACbI,QAAQ,IAAK,CAAC,uBAAAsB,WAAW,OAAXA,WAAW,EAAUtB,QAAQ,CAACC,IAAI,CAAC,CACnD;MACH;MAEA,MAAMsB,YAA+B,GAAG,CAAC,CAAC;MAC1C,KAAK,MAAMC,WAAW,IAAI5B,SAAS,EAAE;QACnC,IAAI,CAAC,uBAAA0B,WAAW,OAAXA,WAAW,EAAUE,WAAW,CAAC,EAAE;UACtCD,YAAY,CAACC,WAAW,CAAC,GAAG5B,SAAS,CAAC4B,WAAW,CAAC;QACpD;MACF;MACA,OAAOD,YAAY;IACrB,CAAC,CACF;EACH;;EAEA;AACF;EACEH,YAAY,CAACnB,IAAY,EAAE9E,IAAY,EAAmB;IACxD,MAAMsG,4BAA4B,GAAG,IAAAnC,oBAAU,EAC7C,8BAA8B,EAC9B,KAAK,CACN;IAED,OAAO,IAAAT,uBAAc,EAAC;MACpB,GAAG,IAAI,CAACvC,cAAc;MACtBwC,GAAG,EAAG,GAAEC,eAAK,GAAE5D,IAAK;IACtB,CAAC,CAAC,CACCiF,IAAI,CAAElE,QAAgB,IAAK;MAC1B,IAAI,IAAAwB,sBAAa,EAACxB,QAAQ,CAAC,EAAE;QAC3B,MAAM,CAAC4B,GAAG,CAAC,GAAG,mBAAY5B,QAAQ,CAAC;QACnC,MAAM;UAAEwF,SAAS;UAAEC;QAAQ,CAAC,GAAGzF,QAAQ,CAAC4B,GAAG,CAAC;QAE5C,MAAM8D,WAAW,GAAGF,SAAS,KAAK,IAAI;QACtC,MAAMG,SAAS,GAAGF,OAAO,IAAI,IAAI,IAAIF,4BAA4B;QAEjE,MAAMK,QAAQ,GAAGF,WAAW,IAAIC,SAAS;QACzC,IAAIC,QAAQ,EAAE;UACZ,OAAO7B,IAAI;QACb;MACF;MACA,OAAO,EAAE;IACX,CAAC,CAAC,CACD8B,KAAK,CAAC,MAAM;MACX,OAAO,EAAE;IACX,CAAC,CAAC;EACN;;EAEA;AACF;EACE,IAAI3C,UAAU,CAAC4C,aAAmC,EAAE;IAClD,IAAI,CAACC,cAAc,GAAGD,aAAa;EACrC;;EAEA;AACF;EACE,IAAI5C,UAAU,GAAyB;IACrC,OAAO,IAAI,CAAC6C,cAAc,IAAI,IAAI;EACpC;;EAEA;AACF;AACA;AACA;AACA;EACEC,wBAAwB,CAACC,KAAqB,EAAU;IACtD,MAAMC,QAAQ,GACZ,OAAO,IAAI,CAAChH,OAAO,CAACoD,IAAI,KAAK,QAAQ,GACjC6D,IAAI,CAACC,KAAK,CAAC,IAAI,CAAClH,OAAO,CAACoD,IAAI,CAAC,GAC7B,IAAI,CAACpD,OAAO,CAACoD,IAAI;IAEvB,IAAI2D,KAAK,YAAYI,kBAAS,EAAE;MAC9B,MAAMC,OAAO,GAAGH,IAAI,CAACC,KAAK,CAACH,KAAK,CAACM,cAAc,CAAC;MAChD;MACA,OAAO,wBAAe,IAAAC,kBAAS,EAACN,QAAQ,IAAI,CAAC,CAAC,EAAEI,OAAO,CAAC,CAAC;IAC3D;IAEA,OAAO,wBAAeJ,QAAQ,CAAC,IAAI,IAAI;EACzC;;EAEA;AACF;AACA;EACEO,sBAAsB,CAACR,KAAqB,EAA2B;IACrE,IACE,CAAC,IAAI,CAAC/G,OAAO,CAACqB,mBAAmB,IACjC,IAAA6C,oBAAU,EAAC,+BAA+B,CAAC,IAC3C6C,KAAK,YAAYI,kBAAS,IAC1BJ,KAAK,CAACS,iBAAiB,IACvBT,KAAK,CAACS,iBAAiB,CAACC,qBAAqB,EAC7C;MACA,MAAMC,cAAc,GAAG,IAAI,CAAC3H,IAAI,CAAC4H,YAAY,CAAC,QAAQ,EAAE,OAAO,CAAC;MAChE,OAAO,IAAAlE,uBAAc,EAAC;QACpB,GAAG,IAAI,CAACvC,cAAc;QACtBwC,GAAG,EAAG,GAAEC,eAAK,GAAE,IAAI,CAAC5D,IAAI,CAACkD,IAAK,EAAC;QAC/Ba,MAAM,EAAE4D,cAAc,CAAC3D,0BAA0B,EAAE;QACnDX,IAAI,EAAE,IAAI,CAAC0D,wBAAwB,CAACC,KAAK;MAC3C,CAAC,CAAC,CAAC/B,IAAI,CAAE5B,IAAI,IAAK;QAChB,IAAIA,IAAI,IAAI,IAAI,IAAI,OAAOA,IAAI,KAAK,QAAQ,EAAE;UAC5C,OAAO2D,KAAK;QACd;QAEA,MAAM,CAACrE,GAAG,CAAC,GAAG,mBAAYU,IAAI,CAAC;QAC/B,OAAO2D,KAAK,CAACa,iBAAiB,CAACxE,IAAI,CAACV,GAAG,CAAC,CAAC;MAC3C,CAAC,CAAC;IACJ;IAEA,OAAO,iBAAQ4B,OAAO,CAACyC,KAAK,CAAC;EAC/B;;EAEA;AACF;EACEc,KAAK,GAA4B;IAC/B,OAAO,IAAI,CAAChE,gBAAgB,EAAE,CAC3BmB,IAAI,CAAE5B,IAAI,IAAK;MACd,IAAIA,IAAI,IAAI,IAAI,EAAE;QAChB,MAAM,IAAI0E,KAAK,CAAE,wBAAuB,IAAI,CAAC/H,IAAI,CAACmD,QAAQ,EAAG,EAAC,CAAC;MACjE;MAEA,IAAI,CAACK,kBAAkB,CAACH,IAAI,CAAC;MAC7B,OAAO,IAAI,CAACI,yBAAyB,EAAE;IACzC,CAAC,CAAC,CACDwB,IAAI,CAAE3C,iBAAiB,IAAK;MAC3B,IAAIA,iBAAiB,IAAI,IAAI,EAAE;QAC7B,MAAM,IAAIyF,KAAK,CACZ,sCAAqC,IAAI,CAACnH,iBAAkB,EAAC,CAC/D;MACH;MAEA,IAAI,CAACyB,2BAA2B,CAACC,iBAAiB,CAAC;MACnD,OAAO,IAAI,CAAC4B,uBAAuB,EAAE;IACvC,CAAC,CAAC,CACDe,IAAI,CAAC,MAAM,iBAAQV,OAAO,CAAC,IAAI,CAACnC,WAAW,EAAE,CAAC,CAAC,CAC/C6C,IAAI,CAAE+B,KAAK,IAAK,IAAI,CAACQ,sBAAsB,CAACR,KAAK,CAAC,CAAC,CACnD/B,IAAI,CAAE+B,KAAK,IAAK;MACf,IAAI,IAAI,CAACxF,eAAe,EAAE;QACxB,OAAO,IAAI,CAACwG,gBAAgB,CAAChB,KAAK,CAAC;MACrC;MAEA,OAAO,iBAAQzC,OAAO,CAACyC,KAAK,CAAC;IAC/B,CAAC,CAAC;EACN;;EAEA;AACF;EACEiB,cAAc,GAA4B;IACxC,IAAI,CAAChI,OAAO,GAAG;MACb,GAAG,IAAI,CAACA,OAAO;MACf4D,KAAK,EAAE;IACT,CAAC;IAED,OAAO,IAAI,CAACiE,KAAK,EAAE;EACrB;;EAEA;AACF;EACEE,gBAAgB,CAAChB,KAAqB,EAA2B;IAC/D,MAAMkB,eAAe,GAAGlB,KAAK,CAACmB,yBAAyB,EAAE;IAEzD,MAAMC,kBAAkB,GAAG,kBAAAF,eAAe,OAAfA,eAAe,EAAMG,cAAc,IAAK;MACjE,MAAMC,OAAO,GAAG,IAAIxI,gBAAgB,CAACuI,cAAc,CAACrI,IAAI,EAAE;QACxDQ,MAAM,EAAE,IAAI,CAACA;MACf,CAAC,CAAC;MAEF,IAAI6H,cAAc,CAAC3H,WAAW,EAAE;QAC9B4H,OAAO,CAAC5H,WAAW,GAAG2H,cAAc,CAAC3H,WAAW;MAClD;MAEA,IAAI2H,cAAc,CAACE,WAAW,EAAE;QAC9B,OAAOD,OAAO,CAACL,cAAc,EAAE;MACjC;MAEA,OAAOK,OAAO,CAACR,KAAK,EAAE;IACxB,CAAC,CAAC;IAEF,OAAO,iBAAQU,UAAU,CAACJ,kBAAkB,CAAC,CAACnD,IAAI,CAAEwD,WAAW,IAAK;MAClE,MAAMC,mBAAmB,GAAG,EAAE;MAE9BD,WAAW,CAACE,OAAO,CAAEC,UAAU,IAAK;QAClC,IAAIA,UAAU,CAACC,MAAM,KAAK,UAAU,EAAE;UACpC,MAAM;YAAEC;UAAO,CAAC,GAAGF,UAAU;UAC7B,IAAIE,MAAM,CAAChE,IAAI,KAAK,8BAA8B,EAAE;YAClDiE,OAAO,CAACtG,KAAK,CACX,+CAA+C,EAC/CqG,MAAM,CACP;UACH;QACF,CAAC,MAAM;UACLJ,mBAAmB,CAAC1C,IAAI,CAAC4C,UAAU,CAACI,KAAK,CAAC;QAC5C;MACF,CAAC,CAAC;MAEFhC,KAAK,CAACiC,cAAc,CAACP,mBAAmB,CAAC;MAEzC,OAAO1B,KAAK;IACd,CAAC,CAAC;EACJ;;EAEA;AACF;EACEkC,YAAY,CAACC,iBAA0B,EAAkB;IACvD,OAAO,IAAI,CAAClB,cAAc,EAAE,CAAChD,IAAI,CAAE+B,KAAK,IAAK;MAC3C,IACEmC,iBAAiB,IACjBnC,KAAK,YAAYoC,qBAAY,IAC7BpC,KAAK,CAACqC,iBAAiB,CAACC,MAAM,GAAG,CAAC,EAClC;QACA,OAAO,IAAI,CAACC,yBAAyB,CAACvC,KAAK,CAAC;MAC9C;MAEA,OAAO,iBAAQzC,OAAO,CAACyC,KAAK,CAAC;IAC/B,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;EACEuC,yBAAyB,CAACC,YAA0B,EAAkB;IAAA;IACpE,MAAMC,eAAe,GAAGD,YAAY,CAACE,KAAK,EAAE;IAE5C,OAAO,iBAAQxD,GAAG,CAChB,8BAAAsD,YAAY,CAACH,iBAAiB,kBAAMM,gBAAgB,IAAK;MACvD,MAAMC,wBAAwB,GAAGD,gBAAgB,CAACE,QAAQ,CAACC,YAAY,CACrEC,kCAAuB,EACvBP,YAAY,CAACQ,SAAS,CACvB;MAED,MAAM1B,OAAO,GAAG,IAAIxI,gBAAgB,CAAC8J,wBAAwB,EAAE;QAC7DpJ,MAAM,EAAE,IAAI,CAACA;MACf,CAAC,CAAC;MAEF,OAAO8H,OAAO,CAACY,YAAY,CAAC,IAAI,CAAC;IACnC,CAAC,CAAC,CACH,CAACjE,IAAI,CAAEgF,aAAa,IAAK;MACxBR,eAAe,CAACS,aAAa,GAAGD,aAAa;MAE7C,OAAOR,eAAe;IACxB,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;AACA;EACEU,IAAI,CAAC9G,IAAyC,EAA2B;IACvE,IAAI,CAAC1C,MAAM,GAAGT,uBAAY,CAACkK,IAAI;IAC/B,IAAI,CAACnK,OAAO,GAAG;MACb,GAAG,IAAI,CAACA,OAAO;MACfoD;IACF,CAAC;IAED,OAAO,IAAI,CAACyE,KAAK,EAAE;EACrB;;EAEA;AACF;AACA;AACA;AACA;EACEuC,QAAQ,CAACC,IAAe,EAAsB;IAC5C,IAAI,CAAC3J,MAAM,GAAGT,uBAAY,CAACkK,IAAI;IAC/B,IAAI,CAACnK,OAAO,GAAG;MACb,GAAG,IAAI,CAACA,OAAO;MACfoD,IAAI,EAAEiH,IAAI,CAACC;IACb,CAAC;IAED,OAAO,IAAI,CAACzC,KAAK,EAAE,CAAC7C,IAAI,CAAElE,QAAQ,IAAK;MACrC,OAAOuJ,IAAI,CAACE,MAAM,CAACzJ,QAAQ,CAAC;IAC9B,CAAC,CAAC;EACJ;AACF;AAAC,eAEcjB,gBAAgB;AAAA"}
1
+ {"version":3,"file":"ModularUIRequest.js","names":["ModularUIRequest","constructor","href","options","HTTP_METHODS","GET","IllegalArgumentException","_response","ModularUIResponse","Href","locale","parameters","targetModel","method","contributionsHref","_contributionsHref","_locale","response","_href","_method","_options","requestOptions","forceTargetModel","updateModel","childmodels","isValidationRequest","removeOnUnmount","withChildModels","_targetModel","_forceTargetModel","resolveModel","availableModels","Array","isArray","Model","isApplicableModel","IllegalStateException","toString","m","modelName","join","createModel","processContributionsService","contributionsData","isPlainObject","contributionsKey","error","handleContributionsError","key","contributions","errorMessage","properties","message","ModularUIError","handleDataError","path","handleData","data","links","_links","processDataService","fetchContributionsService","universalFetch","url","BASE","cache","fetchDataService","params","getQuerystringForModularUI","onProgress","processAsyncLayoutHints","getSetting","processApplicationLinks","processTabLinks","processPanelLinks","resolve","contributionLinks","dataLinks","contributionTabLink","tab","dataTabLinks","dataLink","name","processLinks","components","then","newLinks","replaceApplicationLinks","tabName","tabLink","component","panel","dataLinksPerName","linksPerName","hideWhenEmptyLinks","contributionLink","layouthint","includes","HIDE_WHEN_EMPTY","isHiddenListChecks","push","isHiddenList","all","hiddenLinks","newDataLinks","dataLinkKey","HIDE_WHEN_EMPTY_IGNORE_TASKS","_embedded","actions","noListItems","noActions","isHidden","catch","progressEvent","_progressEvent","getDynamicValidationData","model","prevData","JSON","parse","FormModel","newData","validationData","deepmerge","loadDynamicValidations","currentFormObject","hasDynamicValidations","validationHref","setParameter","updateValidations","fetch","Error","fetchChildModels","fetchFromCache","childModelLinks","getInitialChildModelLinks","childModelRequests","childModelLink","request","isCacheable","allSettled","childModels","resolvedChildModels","forEach","childModel","status","reason","console","value","addChildModels","fetchContent","withChildSections","ContentModel","childSectionLinks","length","fetchContentChildSections","contentModel","newContentModel","clone","childSectionLink","contentHrefWithEntryDate","selfhref","addParameter","TIMEVERSION_FILTER_NAME","entryDate","sectionModels","childSections","post","POST","postForm","form","formdata","update"],"sources":["../../src/modularui/ModularUIRequest.js"],"sourcesContent":["// @flow\nimport deepmerge from \"deepmerge\";\n\nimport {\n BASE,\n HTTP_METHODS,\n TIMEVERSION_FILTER_NAME,\n} from \"../constants/Constants\";\n\nimport { HIDE_WHEN_EMPTY } from \"../constants/LayoutHints\";\n\nimport { getSetting } from \"../constants/Settings\";\n\nimport Href from \"../models/href/Href\";\n\nimport universalFetch from \"../utils/fetch/universalFetch\";\nimport resolveModel from \"../models/resolveModel\";\nimport FormModel from \"../models/form/FormModel\";\nimport ContentModel from \"../models/content/ContentModel\";\n\nimport ModularUIResponse from \"./ModularUIResponse\";\n\nimport ModularUIError from \"./ModularUIError\";\nimport { IllegalArgumentException, IllegalStateException } from \"../exceptions\";\n\nimport { isPlainObject } from \"../utils/helpers/objects\";\n\nimport type { TargetModel } from \"./types\";\nimport type {\n RequestBaseOptions,\n RequestModularUIOptions,\n} from \"../utils/fetch/types\";\nimport type { ModularUIModel } from \"../models/types\";\n\n/**\n * Helper for fetching data and contributions from the Be Informed modular ui\n * and merge it into a target or resolvable model.\n */\nclass ModularUIRequest {\n _response: ModularUIResponse;\n\n _href: Href;\n _options: RequestModularUIOptions;\n _targetModel: ?TargetModel;\n _forceTargetModel: boolean = false;\n _contributionsHref: string;\n _locale: string;\n _method: $Keys<typeof HTTP_METHODS> = HTTP_METHODS.GET;\n\n _progressEvent: ProgressEventHandler;\n\n /**\n */\n constructor(\n href: Href | string,\n options: $Shape<RequestModularUIOptions> = {}\n ) {\n if (!href) {\n throw new IllegalArgumentException(\n \"You must pass a href to the resource that is requested\"\n );\n }\n\n this.options = options;\n\n this._response = new ModularUIResponse();\n\n this.href = typeof href === \"string\" ? new Href(href) : href;\n this.locale = options.locale ?? \"en\";\n\n // copy request parameters to response, to be able to use them in the models\n // self links are missing the request parameters\n this._response.parameters = this.href.parameters;\n\n if (options.targetModel) {\n this.targetModel = options.targetModel;\n }\n\n if (options.method) {\n this.method = options.method;\n } else {\n this.method = this.href.method;\n }\n }\n\n /**\n */\n get contributionsHref(): string {\n return this._contributionsHref;\n }\n\n /**\n */\n set contributionsHref(contributionsHref: string) {\n this._contributionsHref = contributionsHref;\n }\n\n /**\n */\n set locale(locale: string) {\n this._locale = locale;\n this._response.locale = locale;\n }\n\n /**\n */\n get locale(): string {\n return this._locale;\n }\n\n /**\n */\n get response(): ModularUIResponse {\n return this._response;\n }\n\n /**\n */\n set href(href: Href) {\n this._href = href;\n }\n\n /**\n */\n get href(): Href {\n return this._href;\n }\n\n /**\n */\n set method(method: $Keys<typeof HTTP_METHODS>) {\n this._method = method;\n }\n\n /**\n */\n get method(): $Keys<typeof HTTP_METHODS> {\n return this._method;\n }\n\n /**\n */\n get options(): RequestModularUIOptions {\n return {\n ...this._options,\n locale: this.locale,\n method: this.method,\n };\n }\n\n /**\n */\n get requestOptions(): RequestBaseOptions {\n /* eslint-disable no-unused-vars */\n const {\n targetModel,\n forceTargetModel,\n updateModel,\n childmodels,\n isValidationRequest,\n removeOnUnmount,\n ...requestOptions\n } = this.options;\n /* eslint-enable no-unused-vars */\n return requestOptions;\n }\n\n /**\n */\n set options(options: RequestModularUIOptions) {\n this._options = options;\n }\n\n /**\n */\n get withChildModels(): boolean {\n return (\n !(\"childmodels\" in this.options) || this.options.childmodels === true\n );\n }\n\n /**\n */\n set targetModel(targetModel: TargetModel) {\n this._targetModel = targetModel;\n }\n\n /**\n */\n get targetModel(): ?TargetModel {\n return this._targetModel;\n }\n\n /**\n */\n set forceTargetModel(forceTargetModel: boolean) {\n this._forceTargetModel = forceTargetModel ?? false;\n }\n\n /**\n */\n get forceTargetModel(): boolean {\n return this._forceTargetModel;\n }\n\n /**\n */\n resolveModel(): Class<ModularUIModel> {\n let availableModels;\n if (this.targetModel) {\n availableModels = Array.isArray(this.targetModel)\n ? [...this.targetModel]\n : [this.targetModel];\n\n if (this.forceTargetModel) {\n return availableModels[0];\n }\n }\n\n const Model: Class<ModularUIModel> | null = resolveModel(\n this.response,\n availableModels\n );\n\n if (Model && Model.isApplicableModel) {\n return Model;\n }\n\n if (availableModels) {\n throw new IllegalStateException(\n `data for ${this.href.toString()} is not applicable for model(s): ${availableModels\n .map((m) => m.modelName)\n .join(\", \")}, received response: ${JSON.stringify(this.response)}`\n );\n }\n\n throw new IllegalStateException(\n `no javascript model is applicable for received request of ${this.href.toString()}, with response: ${JSON.stringify(\n this.response\n )}`\n );\n }\n\n /**\n */\n createModel(): ModularUIModel {\n const Model = this.resolveModel();\n return new Model(this.response);\n }\n\n /**\n */\n processContributionsService(contributionsData: Object): void {\n if (!isPlainObject(contributionsData)) {\n throw new IllegalArgumentException(\n \"Missing contributions data or contributions is not JSON\"\n );\n }\n\n const [contributionsKey] = Object.keys(contributionsData);\n\n if (contributionsData.error && contributionsKey === \"error\") {\n this.handleContributionsError(contributionsData.error);\n }\n\n // The key of the data service is different from the contributions service for forms\n if (!(this.response.key in contributionsData)) {\n this.response.key = contributionsKey;\n }\n\n this.response.contributions = contributionsData[this.response.key];\n }\n\n /**\n */\n handleContributionsError(error: Object): void {\n const errorMessage = error.properties?.message ?? \"Error in contribution\";\n throw new ModularUIError(errorMessage, error, this.contributionsHref);\n }\n\n /**\n */\n handleDataError(error: Object): void {\n if (error.properties) {\n const errorMessage = error.properties?.message ?? \"Error in data\";\n throw new ModularUIError(errorMessage, error, this.href.path.toString());\n }\n\n throw new IllegalArgumentException(error);\n }\n\n /**\n */\n handleData(key: string, data: Object): void {\n this.response.key = key;\n this.response.data = data;\n\n const links = data._links;\n\n if (links && links.contributions) {\n this.contributionsHref = links.contributions.href;\n } else if (Array.isArray(links) && links[0].contributions) {\n this.contributionsHref = links[0].contributions.href;\n } else {\n throw new IllegalArgumentException(\n `Contributions link not found for data with key ${key}`\n );\n }\n }\n\n /**\n */\n processDataService(data: Object): void {\n if (!isPlainObject(data)) {\n throw new IllegalArgumentException(\"Missing data or data is not JSON\");\n }\n\n if (data.error) {\n this.handleDataError(data.error);\n } else {\n const [key] = Object.keys(data);\n this.handleData(key, data[key]);\n }\n }\n\n /**\n */\n fetchContributionsService(): Promise<any> {\n if (!this.contributionsHref) {\n throw new IllegalStateException(\"Missing a contributions href\");\n }\n\n return universalFetch({\n url: `${BASE}${this.contributionsHref}`,\n cache: true,\n locale: this.options.locale,\n });\n }\n\n /**\n */\n fetchDataService(): Promise<any> {\n return universalFetch({\n ...this.requestOptions,\n url: `${BASE}${this.href.path}`,\n params: this.href.getQuerystringForModularUI(),\n locale: this.options.locale,\n onProgress: this.onProgress,\n });\n }\n\n /**\n * Check if links contain a 'hide-when-empty' layout hint and remove the link from\n * the component when it exists and no results are available\n */\n async processAsyncLayoutHints(): Promise<void> {\n if (getSetting(\"ALLOW_HIDE_WHEN_EMPTY_ON_TABS\")) {\n await this.processApplicationLinks();\n await this.processTabLinks();\n }\n await this.processPanelLinks();\n\n return Promise.resolve();\n }\n\n /**\n * hide application links<br>\n * _links on application data contains an extra level of tab links\n */\n processApplicationLinks(): Promise<void> {\n const contributionLinks = this.response.contributions._links;\n const dataLinks = this.response.data._links;\n if (!contributionLinks || !dataLinks) {\n return Promise.resolve();\n }\n\n if (\"tab\" in contributionLinks && \"tab\" in dataLinks) {\n for (const contributionTabLink of contributionLinks.tab) {\n if (\"components\" in contributionTabLink) {\n const dataTabLinks = dataLinks.tab.find(\n (dataLink) => dataLink.name === contributionTabLink.name\n );\n\n if (dataTabLinks && \"components\" in dataTabLinks) {\n return this.processLinks(\n dataTabLinks.components,\n contributionTabLink.components\n ).then((newLinks) =>\n this.replaceApplicationLinks(contributionTabLink.name, newLinks)\n );\n }\n }\n }\n }\n\n return Promise.resolve();\n }\n\n /**\n * Replace hidden link in application link tree\n */\n replaceApplicationLinks(tabName: string, newLinks: Array<Object>): void {\n this.response.data._links.tab = this.response.data._links.tab.map(\n (tabLink) => {\n const key = tabLink.name;\n if (tabName === key) {\n tabLink.components = newLinks;\n }\n return tabLink;\n }\n );\n }\n\n /**\n */\n processTabLinks(): Promise<void> {\n const contributionLinks = this.response.contributions._links;\n\n if (!contributionLinks) {\n return Promise.resolve();\n }\n\n if (\"component\" in contributionLinks) {\n return this.processLinks(\n this.response.data._links.component,\n contributionLinks.component\n ).then((newLinks) => {\n this.response.data._links.component = newLinks;\n });\n }\n\n return Promise.resolve();\n }\n\n /**\n */\n processPanelLinks(): Promise<void> {\n const contributionLinks = this.response.contributions._links;\n\n if (!contributionLinks) {\n return Promise.resolve();\n }\n\n if (\"panel\" in contributionLinks) {\n return this.processLinks(\n this.response.data._links,\n contributionLinks.panel\n ).then((newLinks) => {\n this.response.data._links = newLinks;\n });\n }\n\n return Promise.resolve();\n }\n\n /**\n * Retrieve an object of key: link\n */\n dataLinksPerName(dataLinks: any): { [linkName: string]: any } {\n if (Array.isArray(dataLinks)) {\n const links = {};\n for (const dataLink of dataLinks) {\n links[dataLink.name] = dataLink;\n }\n return links;\n }\n return dataLinks;\n }\n\n /**\n * Check if links are empty and hide them when hide-when-empty hint exists\n */\n processLinks(\n dataLinks: any,\n contributionLinks: any\n ): Promise<Object | Array<Object>> {\n const linksPerName = this.dataLinksPerName(dataLinks);\n const hideWhenEmptyLinks = contributionLinks.filter((contributionLink) =>\n contributionLink.layouthint?.includes(HIDE_WHEN_EMPTY)\n );\n\n const isHiddenListChecks = [];\n\n for (const contributionLink of hideWhenEmptyLinks) {\n const dataLink = linksPerName[contributionLink.name];\n if (dataLink?.href) {\n isHiddenListChecks.push(\n this.isHiddenList(contributionLink.name, dataLink.href)\n );\n }\n }\n\n return Promise.all(isHiddenListChecks).then(\n (hiddenLinks: Array<string>) => {\n if (Array.isArray(dataLinks)) {\n return dataLinks.filter(\n (dataLink) => !hiddenLinks.includes(dataLink.name)\n );\n }\n\n const newDataLinks: { [string]: any } = {};\n for (const dataLinkKey in dataLinks) {\n if (!hiddenLinks.includes(dataLinkKey)) {\n newDataLinks[dataLinkKey] = dataLinks[dataLinkKey];\n }\n }\n return newDataLinks;\n }\n );\n }\n\n /**\n */\n isHiddenList(name: string, href: string): Promise<string> {\n const HIDE_WHEN_EMPTY_IGNORE_TASKS = getSetting(\n \"HIDE_WHEN_EMPTY_IGNORE_TASKS\",\n false\n );\n\n return universalFetch({\n ...this.requestOptions,\n url: `${BASE}${href}`,\n })\n .then((response: Object) => {\n if (isPlainObject(response)) {\n const [key] = Object.keys(response);\n const { _embedded, actions } = response[key];\n\n const noListItems = _embedded === null;\n const noActions = actions == null || HIDE_WHEN_EMPTY_IGNORE_TASKS;\n\n const isHidden = noListItems && noActions;\n if (isHidden) {\n return name;\n }\n }\n return \"\";\n })\n .catch(() => {\n return \"\";\n });\n }\n\n /**\n */\n set onProgress(progressEvent: ProgressEventHandler) {\n this._progressEvent = progressEvent;\n }\n\n /**\n */\n get onProgress(): ProgressEventHandler {\n return this._progressEvent || null;\n }\n\n /**\n * Combine previous send request data with new validation data to create a complete request object\n * The received model is new FormModel containing ONLY the current question, not the previously entered questions\n * to create a complete request we append the originally send form objects\n */\n getDynamicValidationData(model: ModularUIModel): string {\n const prevData =\n typeof this.options.data === \"string\"\n ? JSON.parse(this.options.data)\n : this.options.data;\n\n if (model instanceof FormModel) {\n const newData = JSON.parse(model.validationData);\n // $FlowFixMe incompatible-call\n return JSON.stringify(deepmerge(prevData || {}, newData));\n }\n\n return JSON.stringify(prevData) ?? \"{}\";\n }\n\n /**\n * First load of dynamic values when a form is loaded\n */\n loadDynamicValidations(model: ModularUIModel): Promise<ModularUIModel> {\n if (\n !this.options.isValidationRequest &&\n getSetting(\"USE_INSTANT_SERVER_VALIDATION\") &&\n model instanceof FormModel &&\n model.currentFormObject &&\n model.currentFormObject.hasDynamicValidations\n ) {\n const validationHref = this.href.setParameter(\"commit\", \"false\");\n return universalFetch({\n ...this.requestOptions,\n url: `${BASE}${this.href.path}`,\n params: validationHref.getQuerystringForModularUI(),\n data: this.getDynamicValidationData(model),\n }).then((data) => {\n if (data == null || typeof data !== \"object\") {\n return model;\n }\n\n const [key] = Object.keys(data);\n return model.updateValidations(data[key]);\n });\n }\n\n return Promise.resolve(model);\n }\n\n /**\n */\n fetch(): Promise<ModularUIModel> {\n return this.fetchDataService()\n .then((data) => {\n if (data == null) {\n throw new Error(`No data received for ${this.href.toString()}`);\n }\n\n this.processDataService(data);\n return this.fetchContributionsService();\n })\n .then((contributionsData) => {\n if (contributionsData == null) {\n throw new Error(\n `No contributions data received for ${this.contributionsHref}`\n );\n }\n\n this.processContributionsService(contributionsData);\n return this.processAsyncLayoutHints();\n })\n .then(() => Promise.resolve(this.createModel()))\n .then((model) => this.loadDynamicValidations(model))\n .then((model) => {\n if (this.withChildModels) {\n return this.fetchChildModels(model);\n }\n\n return Promise.resolve(model);\n });\n }\n\n /**\n */\n fetchFromCache(): Promise<ModularUIModel> {\n this.options = {\n ...this.options,\n cache: true,\n };\n\n return this.fetch();\n }\n\n /**\n */\n fetchChildModels(model: ModularUIModel): Promise<ModularUIModel> {\n const childModelLinks = model.getInitialChildModelLinks();\n\n const childModelRequests = childModelLinks.map((childModelLink) => {\n const request = new ModularUIRequest(childModelLink.href, {\n locale: this.locale,\n });\n\n if (childModelLink.targetModel) {\n request.targetModel = childModelLink.targetModel;\n }\n\n if (childModelLink.isCacheable) {\n return request.fetchFromCache();\n }\n\n return request.fetch();\n });\n\n return Promise.allSettled(childModelRequests).then((childModels) => {\n const resolvedChildModels = [];\n\n childModels.forEach((childModel) => {\n if (childModel.status === \"rejected\") {\n const { reason } = childModel;\n if (reason.name !== \"Error.ChangePasswordRequired\") {\n console.error(\n \"Unexpected error when retrieving child model:\",\n reason\n );\n }\n } else {\n resolvedChildModels.push(childModel.value);\n }\n });\n\n model.addChildModels(resolvedChildModels);\n\n return model;\n });\n }\n\n /**\n */\n fetchContent(withChildSections: boolean): Promise<mixed> {\n return this.fetchFromCache().then((model) => {\n if (\n withChildSections &&\n model instanceof ContentModel &&\n model.childSectionLinks.length > 0\n ) {\n return this.fetchContentChildSections(model);\n }\n\n return Promise.resolve(model);\n });\n }\n\n /**\n * Recursively return child sections defined on the content model\n */\n fetchContentChildSections(contentModel: ContentModel): Promise<mixed> {\n const newContentModel = contentModel.clone();\n\n return Promise.all(\n contentModel.childSectionLinks.map((childSectionLink) => {\n const contentHrefWithEntryDate = childSectionLink.selfhref.addParameter(\n TIMEVERSION_FILTER_NAME,\n contentModel.entryDate\n );\n\n const request = new ModularUIRequest(contentHrefWithEntryDate, {\n locale: this.locale,\n });\n\n return request.fetchContent(true);\n })\n ).then((sectionModels) => {\n newContentModel.childSections = sectionModels;\n\n return newContentModel;\n });\n }\n\n /**\n * Make a post request with optionally data to send\n * @param data\n */\n post(data?: string | { [key: string]: string }): Promise<ModularUIModel> {\n this.method = HTTP_METHODS.POST;\n this.options = {\n ...this.options,\n data,\n };\n\n return this.fetch();\n }\n\n /**\n * Make a POST request using the form, an updated form is returned (merge of old and new form)\n * @param form\n * @returns {Promise<FormModel>}\n */\n postForm(form: FormModel): Promise<FormModel> {\n this.method = HTTP_METHODS.POST;\n this.options = {\n ...this.options,\n data: form.formdata,\n };\n\n return this.fetch().then((response) => {\n return form.update(response);\n });\n }\n}\n\nexport default ModularUIRequest;\n"],"mappings":"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"}
@@ -77,6 +77,7 @@ const loadModelSuccessAction = (key, model, modelToUpdate) => {
77
77
  };
78
78
 
79
79
  /**
80
+ * This action is handled by the modularui middleware
80
81
  */
81
82
  const loadModel = (key, href, options) => ({
82
83
  type: "MODULARUI/FETCH",
@@ -87,6 +88,7 @@ const loadModel = (key, href, options) => ({
87
88
  locale: options?.locale ?? "en",
88
89
  childmodels: options?.childmodels,
89
90
  targetModel: options?.targetModel,
91
+ forceTargetModel: options?.forceTargetModel,
90
92
  /**
91
93
  */
92
94
  successAction: model => loadModelSuccessAction(key, model, options?.updateModel),
@@ -90,6 +90,7 @@ const loadModelSuccessAction = (
90
90
  };
91
91
 
92
92
  /**
93
+ * This action is handled by the modularui middleware
93
94
  */
94
95
  export const loadModel = (
95
96
  key: string,
@@ -104,6 +105,7 @@ export const loadModel = (
104
105
  locale: options?.locale ?? "en",
105
106
  childmodels: options?.childmodels,
106
107
  targetModel: options?.targetModel,
108
+ forceTargetModel: options?.forceTargetModel,
107
109
  /**
108
110
  */
109
111
  successAction: (model) =>
@@ -1 +1 @@
1
- {"version":3,"file":"ModularUIActions.js","names":["setModel","key","model","connectKey","type","payload","updateModel","removeModelByKey","resetModularUI","updateStatus","status","loadModelSuccessAction","modelToUpdate","clonedModel","clone","update","Error","loadModel","href","options","Href","method","HTTP_METHODS","GET","data","locale","childmodels","targetModel","successAction","errorAction","error","errorResponse","ErrorResponse","isChangePassword","isResourceNotFoundAfterReload","MODULARUI_STATUS","ERROR","loadModularUI","dispatch","LOADING","startProgress","loadModelPromise","resolve","then","response","FINISHED","finishProgress","catch","handleError","reloadModel","selfhref","isReload"],"sources":["../../../src/redux/_modularui/ModularUIActions.js"],"sourcesContent":["// @flow\nimport { HTTP_METHODS, MODULARUI_STATUS } from \"../../constants/Constants\";\nimport Href from \"../../models/href/Href\";\nimport ErrorResponse from \"../../models/error/ErrorResponse\";\nimport { finishProgress, startProgress } from \"../actions/ProgressIndicator\";\nimport { handleError } from \"../actions/Error\";\n\nimport type { ModularUIModel } from \"../../models/types\";\nimport type { Dispatch, ThunkAction } from \"../types\";\nimport type {\n ModularUIAction,\n SetModelAction,\n UpdateModelAction,\n RemoveModelByKeyAction,\n ResetModularUIAction,\n UpdateStatusAction,\n} from \"./types\";\nimport type { RequestModularUIOptions } from \"../../utils/fetch/types\";\n\n/**\n */\nexport const setModel = (\n key: string,\n model: ModularUIModel\n): SetModelAction => {\n // set key on model for later reference\n model.connectKey = key;\n return {\n type: \"MODULARUI/SET\",\n payload: {\n key,\n model,\n },\n };\n};\n\n/**\n */\nexport const updateModel = (model: ModularUIModel): UpdateModelAction => ({\n type: \"MODULARUI/UPDATE\",\n payload: model,\n});\n\n/**\n */\nexport const removeModelByKey = (key: string): RemoveModelByKeyAction => ({\n type: \"MODULARUI/REMOVE_KEY\",\n payload: key,\n});\n\n/**\n * Removes all models except the application model from the modular ui reducer\n */\nexport const resetModularUI = (): ResetModularUIAction => ({\n type: \"MODULARUI/RESET\",\n});\n\n/**\n */\nexport const updateStatus = (\n key: string,\n status: $Keys<typeof MODULARUI_STATUS>\n): UpdateStatusAction => ({\n type: \"MODULARUI/STATUS\",\n payload: { key, status },\n});\n\n/**\n */\nconst loadModelSuccessAction = (\n key: string,\n model: ModularUIModel,\n modelToUpdate: ?ModularUIModel\n): UpdateModelAction | SetModelAction => {\n if (modelToUpdate) {\n // $FlowFixMe[prop-missing]\n if (typeof modelToUpdate[\"update\"] === \"function\") {\n const clonedModel = modelToUpdate.clone();\n clonedModel.update(model);\n\n return updateModel(clonedModel);\n }\n\n throw new Error(\n `loadModel action: updateModel is set as option for ${key}, but the model is missing an update methode`\n );\n }\n\n return setModel(key, model);\n};\n\n/**\n */\nexport const loadModel = (\n key: string,\n href: Href | string,\n options?: RequestModularUIOptions\n): ModularUIAction => ({\n type: \"MODULARUI/FETCH\",\n payload: {\n href: href instanceof Href ? href : new Href(href),\n method: options?.method ?? HTTP_METHODS.GET,\n data: options?.data,\n locale: options?.locale ?? \"en\",\n childmodels: options?.childmodels,\n targetModel: options?.targetModel,\n /**\n */\n successAction: (model) =>\n loadModelSuccessAction(key, model, options?.updateModel),\n /**\n */\n errorAction: (error) => {\n const errorResponse = new ErrorResponse(error, key);\n if (errorResponse.isChangePassword) {\n return {\n type: \"NO_ACTION\",\n };\n } else if (errorResponse.isResourceNotFoundAfterReload) {\n return removeModelByKey(key);\n }\n\n return updateStatus(key, MODULARUI_STATUS.ERROR);\n },\n },\n});\n\n/**\n */\nexport const loadModularUI =\n (\n key: string,\n href: Href | string,\n options?: RequestModularUIOptions\n ): ThunkAction =>\n (dispatch: Dispatch) => {\n dispatch(updateStatus(key, MODULARUI_STATUS.LOADING));\n dispatch(startProgress());\n\n const loadModelPromise = dispatch(loadModel(key, href, options));\n\n return Promise.resolve(loadModelPromise)\n .then((response) => {\n if (response?.type === \"FINISH_PROGRESS\") {\n dispatch(updateStatus(key, MODULARUI_STATUS.FINISHED));\n }\n\n return dispatch(finishProgress());\n })\n .catch((error) => dispatch(handleError(error)));\n };\n\n/**\n */\nexport const reloadModel = (\n model: ModularUIModel,\n options?: RequestModularUIOptions\n): ThunkAction =>\n loadModularUI(model.connectKey, model.selfhref, {\n ...options,\n isReload: true,\n });\n"],"mappings":"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"}
1
+ {"version":3,"file":"ModularUIActions.js","names":["setModel","key","model","connectKey","type","payload","updateModel","removeModelByKey","resetModularUI","updateStatus","status","loadModelSuccessAction","modelToUpdate","clonedModel","clone","update","Error","loadModel","href","options","Href","method","HTTP_METHODS","GET","data","locale","childmodels","targetModel","forceTargetModel","successAction","errorAction","error","errorResponse","ErrorResponse","isChangePassword","isResourceNotFoundAfterReload","MODULARUI_STATUS","ERROR","loadModularUI","dispatch","LOADING","startProgress","loadModelPromise","resolve","then","response","FINISHED","finishProgress","catch","handleError","reloadModel","selfhref","isReload"],"sources":["../../../src/redux/_modularui/ModularUIActions.js"],"sourcesContent":["// @flow\nimport { HTTP_METHODS, MODULARUI_STATUS } from \"../../constants/Constants\";\nimport Href from \"../../models/href/Href\";\nimport ErrorResponse from \"../../models/error/ErrorResponse\";\nimport { finishProgress, startProgress } from \"../actions/ProgressIndicator\";\nimport { handleError } from \"../actions/Error\";\n\nimport type { ModularUIModel } from \"../../models/types\";\nimport type { Dispatch, ThunkAction } from \"../types\";\nimport type {\n ModularUIAction,\n SetModelAction,\n UpdateModelAction,\n RemoveModelByKeyAction,\n ResetModularUIAction,\n UpdateStatusAction,\n} from \"./types\";\nimport type { RequestModularUIOptions } from \"../../utils/fetch/types\";\n\n/**\n */\nexport const setModel = (\n key: string,\n model: ModularUIModel\n): SetModelAction => {\n // set key on model for later reference\n model.connectKey = key;\n return {\n type: \"MODULARUI/SET\",\n payload: {\n key,\n model,\n },\n };\n};\n\n/**\n */\nexport const updateModel = (model: ModularUIModel): UpdateModelAction => ({\n type: \"MODULARUI/UPDATE\",\n payload: model,\n});\n\n/**\n */\nexport const removeModelByKey = (key: string): RemoveModelByKeyAction => ({\n type: \"MODULARUI/REMOVE_KEY\",\n payload: key,\n});\n\n/**\n * Removes all models except the application model from the modular ui reducer\n */\nexport const resetModularUI = (): ResetModularUIAction => ({\n type: \"MODULARUI/RESET\",\n});\n\n/**\n */\nexport const updateStatus = (\n key: string,\n status: $Keys<typeof MODULARUI_STATUS>\n): UpdateStatusAction => ({\n type: \"MODULARUI/STATUS\",\n payload: { key, status },\n});\n\n/**\n */\nconst loadModelSuccessAction = (\n key: string,\n model: ModularUIModel,\n modelToUpdate: ?ModularUIModel\n): UpdateModelAction | SetModelAction => {\n if (modelToUpdate) {\n // $FlowFixMe[prop-missing]\n if (typeof modelToUpdate[\"update\"] === \"function\") {\n const clonedModel = modelToUpdate.clone();\n clonedModel.update(model);\n\n return updateModel(clonedModel);\n }\n\n throw new Error(\n `loadModel action: updateModel is set as option for ${key}, but the model is missing an update methode`\n );\n }\n\n return setModel(key, model);\n};\n\n/**\n * This action is handled by the modularui middleware\n */\nexport const loadModel = (\n key: string,\n href: Href | string,\n options?: RequestModularUIOptions\n): ModularUIAction => ({\n type: \"MODULARUI/FETCH\",\n payload: {\n href: href instanceof Href ? href : new Href(href),\n method: options?.method ?? HTTP_METHODS.GET,\n data: options?.data,\n locale: options?.locale ?? \"en\",\n childmodels: options?.childmodels,\n targetModel: options?.targetModel,\n forceTargetModel: options?.forceTargetModel,\n /**\n */\n successAction: (model) =>\n loadModelSuccessAction(key, model, options?.updateModel),\n /**\n */\n errorAction: (error) => {\n const errorResponse = new ErrorResponse(error, key);\n if (errorResponse.isChangePassword) {\n return {\n type: \"NO_ACTION\",\n };\n } else if (errorResponse.isResourceNotFoundAfterReload) {\n return removeModelByKey(key);\n }\n\n return updateStatus(key, MODULARUI_STATUS.ERROR);\n },\n },\n});\n\n/**\n */\nexport const loadModularUI =\n (\n key: string,\n href: Href | string,\n options?: RequestModularUIOptions\n ): ThunkAction =>\n (dispatch: Dispatch) => {\n dispatch(updateStatus(key, MODULARUI_STATUS.LOADING));\n dispatch(startProgress());\n\n const loadModelPromise = dispatch(loadModel(key, href, options));\n\n return Promise.resolve(loadModelPromise)\n .then((response) => {\n if (response?.type === \"FINISH_PROGRESS\") {\n dispatch(updateStatus(key, MODULARUI_STATUS.FINISHED));\n }\n\n return dispatch(finishProgress());\n })\n .catch((error) => dispatch(handleError(error)));\n };\n\n/**\n */\nexport const reloadModel = (\n model: ModularUIModel,\n options?: RequestModularUIOptions\n): ThunkAction =>\n loadModularUI(model.connectKey, model.selfhref, {\n ...options,\n isReload: true,\n });\n"],"mappings":"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"}
@@ -23,6 +23,7 @@ const createRequest = modularui => {
23
23
  });
24
24
  if (modularui.targetModel) {
25
25
  request.targetModel = modularui.targetModel;
26
+ request.forceTargetModel = modularui.forceTargetModel ?? false;
26
27
  }
27
28
  return request;
28
29
  };
@@ -25,6 +25,7 @@ type RequestOptions = {
25
25
  locale: string,
26
26
  childmodels?: boolean,
27
27
  targetModel?: TargetModel,
28
+ forceTargetModel?: boolean,
28
29
  isReload?: boolean,
29
30
  };
30
31
 
@@ -42,6 +43,7 @@ const createRequest = (modularui: RequestOptions): ModularUIRequest => {
42
43
 
43
44
  if (modularui.targetModel) {
44
45
  request.targetModel = modularui.targetModel;
46
+ request.forceTargetModel = modularui.forceTargetModel ?? false;
45
47
  }
46
48
 
47
49
  return request;
@@ -1 +1 @@
1
- {"version":3,"file":"ModularUIMiddleware.js","names":["createRequest","modularui","request","ModularUIRequest","href","method","HTTP_METHODS","GET","data","locale","childmodels","isReload","targetModel","responseHandler","next","dispatch","successAction","model","successResult","then","result","catch","error","handleError","Error","finishProgress","errorHandler","errorAction","err","errorResult","handleFetch","action","startProgress","requestOptions","payload","modularuiRequest","fetch","modularUIMiddleware","api","type","getState","i18n"],"sources":["../../../src/redux/_modularui/ModularUIMiddleware.js"],"sourcesContent":["// @flow\nimport ModularUIRequest from \"../../modularui/ModularUIRequest\";\nimport { HTTP_METHODS } from \"../../constants/Constants\";\n\nimport { startProgress, finishProgress } from \"../actions/ProgressIndicator\";\n\nimport { handleError } from \"../actions/Error\";\n\nimport type { Middleware, MiddlewareAPI } from \"redux\";\nimport type {\n ReduxAction,\n ReduxState,\n Dispatch,\n PossibleAction,\n} from \"../types\";\nimport type { ModularUIModel } from \"../../models/types\";\nimport type Href from \"../../models/href/Href\";\nimport type { ModularUIAction, SuccessAction, ErrorAction } from \"./types\";\nimport type { TargetModel } from \"../../modularui/types\";\n\ntype RequestOptions = {\n href: Href,\n method?: $Keys<typeof HTTP_METHODS>,\n data?: string | { [key: string]: string },\n locale: string,\n childmodels?: boolean,\n targetModel?: TargetModel,\n isReload?: boolean,\n};\n\n/**\n * Symbol key that carries API call info interpreted by this Redux middleware.\n */\nconst createRequest = (modularui: RequestOptions): ModularUIRequest => {\n const request = new ModularUIRequest(modularui.href, {\n method: modularui.method || HTTP_METHODS.GET,\n data: modularui.data || {},\n locale: modularui.locale,\n childmodels: modularui.childmodels ?? true,\n isReload: modularui.isReload,\n });\n\n if (modularui.targetModel) {\n request.targetModel = modularui.targetModel;\n }\n\n return request;\n};\n\n/**\n */\nconst responseHandler = (\n next: Dispatch,\n dispatch: Dispatch,\n successAction: SuccessAction,\n model: ModularUIModel\n) => {\n if (successAction) {\n const successResult = successAction(model);\n\n if (successResult instanceof Promise) {\n successResult\n .then((result) => {\n dispatch(result);\n })\n .catch((error) => {\n next(handleError(error));\n });\n } else {\n try {\n dispatch(successResult);\n } catch (error) {\n throw new Error(\n `Result of successResult is not a valid redux action: ${error}`\n );\n }\n }\n }\n\n return next(finishProgress());\n};\n\n/**\n */\nconst errorHandler = (\n next: Dispatch,\n dispatch: Dispatch,\n errorAction: ?ErrorAction,\n err: any\n) => {\n dispatch(finishProgress());\n\n if (errorAction) {\n const errorResult = errorAction(err);\n\n if (errorResult instanceof Promise) {\n errorResult.then((result) => dispatch(result));\n } else {\n dispatch(errorResult);\n }\n }\n\n return next(handleError(err));\n};\n\n/**\n */\nconst handleFetch = (\n action: ModularUIAction,\n locale: string,\n dispatch: Dispatch,\n next: Dispatch\n) => {\n dispatch(startProgress());\n\n const { successAction, errorAction, ...requestOptions } = action.payload;\n requestOptions.locale = locale;\n\n const modularuiRequest = createRequest(requestOptions);\n\n return modularuiRequest\n .fetch()\n .then((model) => responseHandler(next, dispatch, successAction, model))\n .catch((error) => errorHandler(next, dispatch, errorAction, error));\n};\n\n/**\n */\nexport const modularUIMiddleware: Middleware<\n ReduxState,\n ReduxAction,\n Dispatch\n> =\n (api: MiddlewareAPI<ReduxState, ReduxAction, Dispatch>) =>\n (next: Dispatch) =>\n (action: PossibleAction) => {\n if (action.type === \"MODULARUI/FETCH\") {\n return handleFetch(\n // $FlowExpectedError[incompatible-exact]\n action,\n api.getState().i18n.locale,\n api.dispatch,\n next\n );\n }\n\n return next(action);\n };\n"],"mappings":"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"}
1
+ {"version":3,"file":"ModularUIMiddleware.js","names":["createRequest","modularui","request","ModularUIRequest","href","method","HTTP_METHODS","GET","data","locale","childmodels","isReload","targetModel","forceTargetModel","responseHandler","next","dispatch","successAction","model","successResult","then","result","catch","error","handleError","Error","finishProgress","errorHandler","errorAction","err","errorResult","handleFetch","action","startProgress","requestOptions","payload","modularuiRequest","fetch","modularUIMiddleware","api","type","getState","i18n"],"sources":["../../../src/redux/_modularui/ModularUIMiddleware.js"],"sourcesContent":["// @flow\nimport ModularUIRequest from \"../../modularui/ModularUIRequest\";\nimport { HTTP_METHODS } from \"../../constants/Constants\";\n\nimport { startProgress, finishProgress } from \"../actions/ProgressIndicator\";\n\nimport { handleError } from \"../actions/Error\";\n\nimport type { Middleware, MiddlewareAPI } from \"redux\";\nimport type {\n ReduxAction,\n ReduxState,\n Dispatch,\n PossibleAction,\n} from \"../types\";\nimport type { ModularUIModel } from \"../../models/types\";\nimport type Href from \"../../models/href/Href\";\nimport type { ModularUIAction, SuccessAction, ErrorAction } from \"./types\";\nimport type { TargetModel } from \"../../modularui/types\";\n\ntype RequestOptions = {\n href: Href,\n method?: $Keys<typeof HTTP_METHODS>,\n data?: string | { [key: string]: string },\n locale: string,\n childmodels?: boolean,\n targetModel?: TargetModel,\n forceTargetModel?: boolean,\n isReload?: boolean,\n};\n\n/**\n * Symbol key that carries API call info interpreted by this Redux middleware.\n */\nconst createRequest = (modularui: RequestOptions): ModularUIRequest => {\n const request = new ModularUIRequest(modularui.href, {\n method: modularui.method || HTTP_METHODS.GET,\n data: modularui.data || {},\n locale: modularui.locale,\n childmodels: modularui.childmodels ?? true,\n isReload: modularui.isReload,\n });\n\n if (modularui.targetModel) {\n request.targetModel = modularui.targetModel;\n request.forceTargetModel = modularui.forceTargetModel ?? false;\n }\n\n return request;\n};\n\n/**\n */\nconst responseHandler = (\n next: Dispatch,\n dispatch: Dispatch,\n successAction: SuccessAction,\n model: ModularUIModel\n) => {\n if (successAction) {\n const successResult = successAction(model);\n\n if (successResult instanceof Promise) {\n successResult\n .then((result) => {\n dispatch(result);\n })\n .catch((error) => {\n next(handleError(error));\n });\n } else {\n try {\n dispatch(successResult);\n } catch (error) {\n throw new Error(\n `Result of successResult is not a valid redux action: ${error}`\n );\n }\n }\n }\n\n return next(finishProgress());\n};\n\n/**\n */\nconst errorHandler = (\n next: Dispatch,\n dispatch: Dispatch,\n errorAction: ?ErrorAction,\n err: any\n) => {\n dispatch(finishProgress());\n\n if (errorAction) {\n const errorResult = errorAction(err);\n\n if (errorResult instanceof Promise) {\n errorResult.then((result) => dispatch(result));\n } else {\n dispatch(errorResult);\n }\n }\n\n return next(handleError(err));\n};\n\n/**\n */\nconst handleFetch = (\n action: ModularUIAction,\n locale: string,\n dispatch: Dispatch,\n next: Dispatch\n) => {\n dispatch(startProgress());\n\n const { successAction, errorAction, ...requestOptions } = action.payload;\n requestOptions.locale = locale;\n\n const modularuiRequest = createRequest(requestOptions);\n\n return modularuiRequest\n .fetch()\n .then((model) => responseHandler(next, dispatch, successAction, model))\n .catch((error) => errorHandler(next, dispatch, errorAction, error));\n};\n\n/**\n */\nexport const modularUIMiddleware: Middleware<\n ReduxState,\n ReduxAction,\n Dispatch\n> =\n (api: MiddlewareAPI<ReduxState, ReduxAction, Dispatch>) =>\n (next: Dispatch) =>\n (action: PossibleAction) => {\n if (action.type === \"MODULARUI/FETCH\") {\n return handleFetch(\n // $FlowExpectedError[incompatible-exact]\n action,\n api.getState().i18n.locale,\n api.dispatch,\n next\n );\n }\n\n return next(action);\n };\n"],"mappings":"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"}
@@ -58,6 +58,7 @@ export type ModularUIAction = {
58
58
  locale: string,
59
59
  childmodels?: boolean,
60
60
  targetModel?: TargetModel,
61
+ forceTargetModel?: boolean,
61
62
  successAction: (
62
63
  model: ModularUIModel
63
64
  ) => UpdateModelAction | SetModelAction,
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","names":[],"sources":["../../../src/redux/_modularui/types.js"],"sourcesContent":["// @flow\nimport type { ModularUIModel } from \"../../models/types\";\nimport type Href from \"../../models/href/Href\";\nimport type { FetchException } from \"../../exceptions\";\nimport type { NoAction } from \"../types\";\nimport typeof {\n HTTP_METHODS,\n MODULARUI_STATUS,\n} from \"../../constants/Constants\";\nimport type { ComponentType } from \"react\";\nimport type { TargetModel } from \"../../modularui/types\";\nimport type { RequestModularUIOptions } from \"../../utils/fetch/types\";\n\nexport type ModularUIOptions = {\n propName?: string,\n removeOnUnmount?: boolean,\n ...RequestModularUIOptions,\n};\n\nexport type ModelEntry = {\n +status: string,\n +model: ModularUIModel,\n +lastModification: number,\n};\n\nexport type ModularUIState = {\n [string]: ModelEntry,\n ...\n};\n\nexport type SetModelAction = {\n type: \"MODULARUI/SET\",\n payload: {\n key: string,\n model: ?ModularUIModel,\n },\n};\n\nexport type UpdateModelAction = {\n type: \"MODULARUI/UPDATE\",\n payload: ModularUIModel,\n};\n\nexport type SuccessAction = (\n model: ModularUIModel\n) => UpdateModelAction | SetModelAction;\n\nexport type ErrorAction = (\n error: FetchException\n) => UpdateStatusAction | RemoveModelByKeyAction | NoAction;\n\nexport type ModularUIAction = {\n type: \"MODULARUI/FETCH\",\n payload: {\n href: Href,\n method?: $Keys<HTTP_METHODS>,\n data?: string | { [key: string]: string },\n locale: string,\n childmodels?: boolean,\n targetModel?: TargetModel,\n successAction: (\n model: ModularUIModel\n ) => UpdateModelAction | SetModelAction,\n errorAction?: ErrorAction,\n },\n};\n\nexport type RemoveModelByKeyAction = {\n type: \"MODULARUI/REMOVE_KEY\",\n payload: string,\n};\n\nexport type ResetModularUIAction = {\n type: \"MODULARUI/RESET\",\n};\n\nexport type UpdateStatusAction = {\n type: \"MODULARUI/STATUS\",\n payload: {\n key: string,\n status: $Keys<MODULARUI_STATUS>,\n },\n};\n\nexport type ModularUIConnector = (\n Component: ComponentType<any>\n) => ComponentType<any>;\n"],"mappings":""}
1
+ {"version":3,"file":"types.js","names":[],"sources":["../../../src/redux/_modularui/types.js"],"sourcesContent":["// @flow\nimport type { ModularUIModel } from \"../../models/types\";\nimport type Href from \"../../models/href/Href\";\nimport type { FetchException } from \"../../exceptions\";\nimport type { NoAction } from \"../types\";\nimport typeof {\n HTTP_METHODS,\n MODULARUI_STATUS,\n} from \"../../constants/Constants\";\nimport type { ComponentType } from \"react\";\nimport type { TargetModel } from \"../../modularui/types\";\nimport type { RequestModularUIOptions } from \"../../utils/fetch/types\";\n\nexport type ModularUIOptions = {\n propName?: string,\n removeOnUnmount?: boolean,\n ...RequestModularUIOptions,\n};\n\nexport type ModelEntry = {\n +status: string,\n +model: ModularUIModel,\n +lastModification: number,\n};\n\nexport type ModularUIState = {\n [string]: ModelEntry,\n ...\n};\n\nexport type SetModelAction = {\n type: \"MODULARUI/SET\",\n payload: {\n key: string,\n model: ?ModularUIModel,\n },\n};\n\nexport type UpdateModelAction = {\n type: \"MODULARUI/UPDATE\",\n payload: ModularUIModel,\n};\n\nexport type SuccessAction = (\n model: ModularUIModel\n) => UpdateModelAction | SetModelAction;\n\nexport type ErrorAction = (\n error: FetchException\n) => UpdateStatusAction | RemoveModelByKeyAction | NoAction;\n\nexport type ModularUIAction = {\n type: \"MODULARUI/FETCH\",\n payload: {\n href: Href,\n method?: $Keys<HTTP_METHODS>,\n data?: string | { [key: string]: string },\n locale: string,\n childmodels?: boolean,\n targetModel?: TargetModel,\n forceTargetModel?: boolean,\n successAction: (\n model: ModularUIModel\n ) => UpdateModelAction | SetModelAction,\n errorAction?: ErrorAction,\n },\n};\n\nexport type RemoveModelByKeyAction = {\n type: \"MODULARUI/REMOVE_KEY\",\n payload: string,\n};\n\nexport type ResetModularUIAction = {\n type: \"MODULARUI/RESET\",\n};\n\nexport type UpdateStatusAction = {\n type: \"MODULARUI/STATUS\",\n payload: {\n key: string,\n status: $Keys<MODULARUI_STATUS>,\n },\n};\n\nexport type ModularUIConnector = (\n Component: ComponentType<any>\n) => ComponentType<any>;\n"],"mappings":""}
@@ -34,9 +34,9 @@ export type RequestOptions = { ...RequestURLOptions, ...RequestBaseOptions };
34
34
  export type RequestModularUIOptions = {
35
35
  ...RequestBaseOptions,
36
36
  targetModel?: TargetModel,
37
+ forceTargetModel?: boolean,
37
38
  updateModel?: ModularUIModel,
38
39
  childmodels?: boolean,
39
40
  isValidationRequest?: boolean,
40
-
41
41
  removeOnUnmount?: boolean,
42
42
  };
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","names":[],"sources":["../../../src/utils/fetch/types.js"],"sourcesContent":["// @flow\nimport typeof { HTTP_METHODS } from \"../../constants/Constants\";\nimport type { ModularUIModel } from \"../../models/types\";\nimport type { TargetModel } from \"../../modularui/types\";\n\nexport type RequestURLOptions = {\n url: string,\n};\n\nexport type RequestBaseOptions = {\n method?: $Keys<HTTP_METHODS>,\n params?: string,\n data?: string | { [key: string]: string },\n timeout?: number,\n responseType?: string,\n headers?: {\n [headerName: string]: string,\n Accept?: string,\n \"Accept-Language\"?: string,\n \"Content-Type\"?: string,\n \"x-filename\"?: string,\n \"x-filesize\"?: string,\n },\n events?: { [eventName: string]: () => void },\n onProgress?: ProgressEventHandler,\n includeContext?: boolean,\n locale?: string,\n cache?: boolean,\n isReload?: boolean,\n};\n\nexport type RequestOptions = { ...RequestURLOptions, ...RequestBaseOptions };\n\nexport type RequestModularUIOptions = {\n ...RequestBaseOptions,\n targetModel?: TargetModel,\n updateModel?: ModularUIModel,\n childmodels?: boolean,\n isValidationRequest?: boolean,\n\n removeOnUnmount?: boolean,\n};\n"],"mappings":""}
1
+ {"version":3,"file":"types.js","names":[],"sources":["../../../src/utils/fetch/types.js"],"sourcesContent":["// @flow\nimport typeof { HTTP_METHODS } from \"../../constants/Constants\";\nimport type { ModularUIModel } from \"../../models/types\";\nimport type { TargetModel } from \"../../modularui/types\";\n\nexport type RequestURLOptions = {\n url: string,\n};\n\nexport type RequestBaseOptions = {\n method?: $Keys<HTTP_METHODS>,\n params?: string,\n data?: string | { [key: string]: string },\n timeout?: number,\n responseType?: string,\n headers?: {\n [headerName: string]: string,\n Accept?: string,\n \"Accept-Language\"?: string,\n \"Content-Type\"?: string,\n \"x-filename\"?: string,\n \"x-filesize\"?: string,\n },\n events?: { [eventName: string]: () => void },\n onProgress?: ProgressEventHandler,\n includeContext?: boolean,\n locale?: string,\n cache?: boolean,\n isReload?: boolean,\n};\n\nexport type RequestOptions = { ...RequestURLOptions, ...RequestBaseOptions };\n\nexport type RequestModularUIOptions = {\n ...RequestBaseOptions,\n targetModel?: TargetModel,\n forceTargetModel?: boolean,\n updateModel?: ModularUIModel,\n childmodels?: boolean,\n isValidationRequest?: boolean,\n removeOnUnmount?: boolean,\n};\n"],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beinformed/ui",
3
- "version": "1.25.4",
3
+ "version": "1.25.5",
4
4
  "description": "Toolbox for be informed javascript layouts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "bugs": "http://support.beinformed.com",
@@ -10,6 +10,7 @@ import type { ModularUIModel, Href } from "../models";
10
10
  type UseModularUIBasicOptions<T: ModularUIModel> = {
11
11
  expectedModels: Array<string>,
12
12
  targetModel?: Class<T> | Array<Class<T>>,
13
+ forceTargetModel?: boolean,
13
14
  };
14
15
 
15
16
  /**
@@ -20,6 +21,7 @@ export const useModularUIBasic = <T: ModularUIModel>(
20
21
  options: UseModularUIBasicOptions<T> = {
21
22
  expectedModels: [],
22
23
  targetModel: undefined,
24
+ forceTargetModel: false,
23
25
  }
24
26
  ): T | null => {
25
27
  const location = useLocation();
@@ -27,9 +29,14 @@ export const useModularUIBasic = <T: ModularUIModel>(
27
29
  throw new IllegalArgumentException("Missing href");
28
30
  }
29
31
 
30
- const useModularUIOptions = { targetModel: undefined, isReload: false };
32
+ const useModularUIOptions = {
33
+ targetModel: undefined,
34
+ forceTargetModel: undefined,
35
+ isReload: false,
36
+ };
31
37
  if (options.targetModel) {
32
38
  useModularUIOptions.targetModel = options.targetModel;
39
+ useModularUIOptions.forceTargetModel = options.forceTargetModel;
33
40
  }
34
41
 
35
42
  // reload when the modular service starts with the current location
@@ -69,6 +69,7 @@ export const useListDetail = (href: string): ListDetailModel | null =>
69
69
  useModularUIBasic("listdetail", href, {
70
70
  expectedModels: ["ListDetail"],
71
71
  targetModel: ListDetailModel,
72
+ forceTargetModel: true,
72
73
  });
73
74
 
74
75
  /**