@sap/ux-specification 1.136.15 → 1.136.17

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 (244) hide show
  1. package/CHANGELOG.md +258 -165
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  3. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  4. package/dist/documentation/v2/v2-ListReport.html +2 -2
  5. package/dist/documentation/v2/v2-ListReportNew.html +2 -2
  6. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  7. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  8. package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
  9. package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
  10. package/dist/documentation/v4/v4-FreestylePage.html +2 -2
  11. package/dist/documentation/v4/v4-ListReport.html +2 -2
  12. package/dist/documentation/v4/v4-ObjectPage.html +2 -2
  13. package/dist/index-min.js +280 -274
  14. package/dist/index-min.js.map +4 -4
  15. package/dist/schemas/v2/AnalyticalListPageConfig.json +3 -3
  16. package/dist/schemas/v2/ListReportConfig.json +5 -5
  17. package/dist/schemas/v2/ListReportNewConfig.json +1 -1
  18. package/dist/schemas/v2/ObjectPageConfig.json +5 -5
  19. package/dist/schemas/v4/ApplicationV4.json +1 -1
  20. package/dist/schemas/v4/BuildingBlocksConfig.json +100 -10
  21. package/dist/schemas/v4/ListReportConfig.json +24 -6
  22. package/dist/schemas/v4/ObjectPageConfig.json +32 -8
  23. package/dist/specification/package.json +14 -12
  24. package/dist/specification/scripts/extractDocu.js +18 -1
  25. package/dist/specification/scripts/extractDocu.js.map +1 -1
  26. package/dist/specification/scripts/generate-validity-report.d.ts +15 -0
  27. package/dist/specification/scripts/generate-validity-report.d.ts.map +1 -0
  28. package/dist/specification/scripts/generate-validity-report.js +367 -0
  29. package/dist/specification/scripts/generate-validity-report.js.map +1 -0
  30. package/dist/specification/scripts/macros/corrections.d.ts +40 -0
  31. package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
  32. package/dist/specification/scripts/macros/corrections.js +114 -7
  33. package/dist/specification/scripts/macros/corrections.js.map +1 -1
  34. package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
  35. package/dist/specification/scripts/macros/schema.js +14 -1
  36. package/dist/specification/scripts/macros/schema.js.map +1 -1
  37. package/dist/specification/scripts/macros/types.d.ts +1 -0
  38. package/dist/specification/scripts/macros/types.d.ts.map +1 -1
  39. package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
  40. package/dist/specification/scripts/schema/to-json-schema.js +2 -13
  41. package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
  42. package/dist/specification/src/api.js +1 -1
  43. package/dist/specification/src/i18n/i18n.d.ts.map +1 -1
  44. package/dist/specification/src/i18n/i18n.js +2 -1
  45. package/dist/specification/src/i18n/i18n.js.map +1 -1
  46. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts +8 -1
  47. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts.map +1 -1
  48. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js +10 -6
  49. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js.map +1 -1
  50. package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts +503 -0
  51. package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts.map +1 -0
  52. package/dist/specification/src/sync/common/decoration/decorator-paths.js +497 -0
  53. package/dist/specification/src/sync/common/decoration/decorator-paths.js.map +1 -0
  54. package/dist/specification/src/sync/common/decoration/decorators.d.ts +116 -24
  55. package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
  56. package/dist/specification/src/sync/common/decoration/decorators.js +308 -78
  57. package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
  58. package/dist/specification/src/sync/common/decoration/index.d.ts +1 -0
  59. package/dist/specification/src/sync/common/decoration/index.d.ts.map +1 -1
  60. package/dist/specification/src/sync/common/decoration/index.js +1 -0
  61. package/dist/specification/src/sync/common/decoration/index.js.map +1 -1
  62. package/dist/specification/src/sync/common/dist_tag.json +8 -3
  63. package/dist/specification/src/sync/common/generate/utils.d.ts +2 -1
  64. package/dist/specification/src/sync/common/generate/utils.d.ts.map +1 -1
  65. package/dist/specification/src/sync/common/generate/utils.js +5 -1
  66. package/dist/specification/src/sync/common/generate/utils.js.map +1 -1
  67. package/dist/specification/src/sync/common/i18n.json +2 -1
  68. package/dist/specification/src/sync/common/rules.d.ts +20 -0
  69. package/dist/specification/src/sync/common/rules.d.ts.map +1 -1
  70. package/dist/specification/src/sync/common/rules.js +22 -2
  71. package/dist/specification/src/sync/common/rules.js.map +1 -1
  72. package/dist/specification/src/sync/common/utils.d.ts +22 -6
  73. package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
  74. package/dist/specification/src/sync/common/utils.js +122 -18
  75. package/dist/specification/src/sync/common/utils.js.map +1 -1
  76. package/dist/specification/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
  77. package/dist/specification/src/sync/v2/generate/analyticalListReport.js +9 -7
  78. package/dist/specification/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  79. package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
  80. package/dist/specification/src/sync/v2/generate/listReport.js +3 -1
  81. package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
  82. package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  83. package/dist/specification/src/sync/v2/generate/objectPage.js +58 -2
  84. package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
  85. package/dist/specification/src/sync/v2/generate/overviewPage.d.ts +1 -9
  86. package/dist/specification/src/sync/v2/generate/overviewPage.d.ts.map +1 -1
  87. package/dist/specification/src/sync/v2/generate/overviewPage.js +30 -1
  88. package/dist/specification/src/sync/v2/generate/overviewPage.js.map +1 -1
  89. package/dist/specification/src/sync/v2/import/app/appProvider.d.ts.map +1 -1
  90. package/dist/specification/src/sync/v2/import/app/appProvider.js +2 -0
  91. package/dist/specification/src/sync/v2/import/app/appProvider.js.map +1 -1
  92. package/dist/specification/src/sync/v2/import/pages/analyticalListPage.d.ts +2 -1
  93. package/dist/specification/src/sync/v2/import/pages/analyticalListPage.d.ts.map +1 -1
  94. package/dist/specification/src/sync/v2/import/pages/analyticalListPage.js +5 -0
  95. package/dist/specification/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  96. package/dist/specification/src/sync/v2/import/pages/listReport.d.ts +2 -1
  97. package/dist/specification/src/sync/v2/import/pages/listReport.d.ts.map +1 -1
  98. package/dist/specification/src/sync/v2/import/pages/listReport.js +5 -0
  99. package/dist/specification/src/sync/v2/import/pages/listReport.js.map +1 -1
  100. package/dist/specification/src/sync/v2/import/pages/objectPage.d.ts.map +1 -1
  101. package/dist/specification/src/sync/v2/import/pages/objectPage.js +2 -1
  102. package/dist/specification/src/sync/v2/import/pages/objectPage.js.map +1 -1
  103. package/dist/specification/src/sync/v2/import/utils.d.ts +28 -1
  104. package/dist/specification/src/sync/v2/import/utils.d.ts.map +1 -1
  105. package/dist/specification/src/sync/v2/import/utils.js +37 -0
  106. package/dist/specification/src/sync/v2/import/utils.js.map +1 -1
  107. package/dist/specification/src/sync/v2/utils.d.ts +12 -2
  108. package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
  109. package/dist/specification/src/sync/v2/utils.js +19 -2
  110. package/dist/specification/src/sync/v2/utils.js.map +1 -1
  111. package/dist/specification/src/sync/v4/application.d.ts +31 -2
  112. package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
  113. package/dist/specification/src/sync/v4/application.js +44 -4
  114. package/dist/specification/src/sync/v4/application.js.map +1 -1
  115. package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts +2 -1
  116. package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
  117. package/dist/specification/src/sync/v4/export/controls/FilterBar.js +2 -1
  118. package/dist/specification/src/sync/v4/export/controls/FilterBar.js.map +1 -1
  119. package/dist/specification/src/sync/v4/export/controls/Header.d.ts +4 -3
  120. package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
  121. package/dist/specification/src/sync/v4/export/controls/Header.js +7 -3
  122. package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
  123. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +2 -1
  124. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
  125. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +7 -0
  126. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
  127. package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +2 -1
  128. package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts.map +1 -1
  129. package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js +2 -1
  130. package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
  131. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +1 -1
  132. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
  133. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +0 -13
  134. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
  135. package/dist/specification/src/sync/v4/export/controls/Table.d.ts +32 -17
  136. package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
  137. package/dist/specification/src/sync/v4/export/controls/Table.js +84 -58
  138. package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
  139. package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts.map +1 -1
  140. package/dist/specification/src/sync/v4/export/controls/TableColumn.js +2 -2
  141. package/dist/specification/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  142. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
  143. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +2 -2
  144. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
  145. package/dist/specification/src/sync/v4/export/export.d.ts.map +1 -1
  146. package/dist/specification/src/sync/v4/export/export.js +25 -3
  147. package/dist/specification/src/sync/v4/export/export.js.map +1 -1
  148. package/dist/specification/src/sync/v4/export/pages/ListReport.js +1 -1
  149. package/dist/specification/src/sync/v4/export/pages/ListReport.js.map +1 -1
  150. package/dist/specification/src/sync/v4/generate/actions.d.ts +1 -1
  151. package/dist/specification/src/sync/v4/generate/actions.d.ts.map +1 -1
  152. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
  153. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +20 -12
  154. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
  155. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
  156. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +16 -1
  157. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
  158. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.d.ts.map +1 -1
  159. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +10 -1
  160. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
  161. package/dist/specification/src/sync/v4/generate/index.d.ts +1 -1
  162. package/dist/specification/src/sync/v4/generate/index.d.ts.map +1 -1
  163. package/dist/specification/src/sync/v4/generate/index.js +1 -1
  164. package/dist/specification/src/sync/v4/generate/index.js.map +1 -1
  165. package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts +73 -0
  166. package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts.map +1 -0
  167. package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js +354 -0
  168. package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js.map +1 -0
  169. package/dist/specification/src/sync/v4/generate/{listReport.d.ts → list-report/listReport.d.ts} +27 -16
  170. package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts.map +1 -0
  171. package/dist/specification/src/sync/v4/generate/{listReport.js → list-report/listReport.js} +191 -163
  172. package/dist/specification/src/sync/v4/generate/list-report/listReport.js.map +1 -0
  173. package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  174. package/dist/specification/src/sync/v4/generate/objectPage.js +145 -44
  175. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  176. package/dist/specification/src/sync/v4/import/pages/listReport.d.ts.map +1 -1
  177. package/dist/specification/src/sync/v4/import/pages/listReport.js +2 -1
  178. package/dist/specification/src/sync/v4/import/pages/listReport.js.map +1 -1
  179. package/dist/specification/src/sync/v4/import/utils.js +5 -3
  180. package/dist/specification/src/sync/v4/import/utils.js.map +1 -1
  181. package/dist/specification/src/sync/v4/sync-rules/App.d.ts +9 -7
  182. package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -1
  183. package/dist/specification/src/sync/v4/sync-rules/App.js +4 -8
  184. package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -1
  185. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +2 -9
  186. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -1
  187. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +2 -11
  188. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -1
  189. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +219 -96
  190. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
  191. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +557 -211
  192. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
  193. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +17 -22
  194. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -1
  195. package/dist/specification/src/sync/v4/sync-rules/Page.js +15 -22
  196. package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -1
  197. package/dist/specification/src/sync/v4/sync-rules/controllerExtensions.d.ts +1 -0
  198. package/dist/specification/src/sync/v4/sync-rules/controllerExtensions.d.ts.map +1 -1
  199. package/dist/specification/src/sync/v4/sync-rules/controllerExtensions.js +17 -9
  200. package/dist/specification/src/sync/v4/sync-rules/controllerExtensions.js.map +1 -1
  201. package/dist/specification/src/sync/v4/sync-rules/index.d.ts +5 -0
  202. package/dist/specification/src/sync/v4/sync-rules/index.d.ts.map +1 -0
  203. package/dist/specification/src/sync/v4/sync-rules/index.js +21 -0
  204. package/dist/specification/src/sync/v4/sync-rules/index.js.map +1 -0
  205. package/dist/specification/src/sync/v4/sync-rules/utils.d.ts.map +1 -1
  206. package/dist/specification/src/sync/v4/sync-rules/utils.js +4 -0
  207. package/dist/specification/src/sync/v4/sync-rules/utils.js.map +1 -1
  208. package/dist/specification/src/sync/v4/utils/index.d.ts +2 -0
  209. package/dist/specification/src/sync/v4/utils/index.d.ts.map +1 -0
  210. package/dist/specification/src/sync/v4/utils/index.js +18 -0
  211. package/dist/specification/src/sync/v4/utils/index.js.map +1 -0
  212. package/dist/specification/src/sync/v4/utils/utils.d.ts +9 -1
  213. package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
  214. package/dist/specification/src/sync/v4/utils/utils.js +17 -2
  215. package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
  216. package/dist/specification/test/test-projects/v2sttaProdMan2/webapp/manifest.json +550 -0
  217. package/dist/specification/test/test-projects/v4new/webapp/manifest.json +147 -0
  218. package/dist/specification/test/test-utils/utils.d.ts +71 -0
  219. package/dist/specification/test/test-utils/utils.d.ts.map +1 -0
  220. package/dist/specification/test/test-utils/utils.js +400 -0
  221. package/dist/specification/test/test-utils/utils.js.map +1 -0
  222. package/dist/specification/test/unit/decorators/validity-test-utils.d.ts +131 -0
  223. package/dist/specification/test/unit/decorators/validity-test-utils.d.ts.map +1 -0
  224. package/dist/specification/test/unit/decorators/validity-test-utils.js +661 -0
  225. package/dist/specification/test/unit/decorators/validity-test-utils.js.map +1 -0
  226. package/dist/types/src/apiTypes.d.ts +2 -3
  227. package/dist/types/src/apiTypes.d.ts.map +1 -1
  228. package/dist/types/src/apiTypes.js.map +1 -1
  229. package/dist/types/src/common/types.d.ts +119 -13
  230. package/dist/types/src/common/types.d.ts.map +1 -1
  231. package/dist/types/src/common/types.js.map +1 -1
  232. package/dist/types/src/v2/controls/ObjectPageTable.d.ts +1 -1
  233. package/dist/types/src/v2/controls/Table.d.ts +1 -1
  234. package/dist/types/src/v4/controls/ObjectPageTable.d.ts +1 -1
  235. package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
  236. package/dist/types/src/v4/controls/Table.d.ts +3 -3
  237. package/dist/types/src/v4/controls/Table.d.ts.map +1 -1
  238. package/package.json +14 -12
  239. package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts +0 -107
  240. package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts.map +0 -1
  241. package/dist/specification/src/sync/v4/generate/ListReportUtils.js +0 -394
  242. package/dist/specification/src/sync/v4/generate/ListReportUtils.js.map +0 -1
  243. package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +0 -1
  244. package/dist/specification/src/sync/v4/generate/listReport.js.map +0 -1
@@ -0,0 +1,354 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.TableAndViews = exports.FilterBar = exports.GeneralListReportSettings = void 0;
7
+ exports.addManifestPathsToDefinitionPropertiesLR = addManifestPathsToDefinitionPropertiesLR;
8
+ const __1 = require("../../../..");
9
+ const utils_1 = require("../../utils");
10
+ const listReport_1 = require("../list-report/listReport");
11
+ const sync_rules_1 = require("../../sync-rules");
12
+ const common_1 = require("../../../common");
13
+ const i18next_1 = __importDefault(require("i18next"));
14
+ /**
15
+ * Add general settings to schema (LR or ALP).
16
+ *
17
+ * - Adds Selection-(PresentationVariant) related enums to the schema.
18
+ */
19
+ class GeneralListReportSettings extends sync_rules_1.BaseConstruct {
20
+ /**
21
+ * Constructor for general settings of ListReport.
22
+ *
23
+ * @param settings - general settings (App, Page, AppSchema, Logger)
24
+ */
25
+ constructor(settings) {
26
+ super(settings);
27
+ }
28
+ init() {
29
+ this.addSPVEnums(__1.DefinitionName.AnnotationPathAsObject);
30
+ }
31
+ /**
32
+ * Adds Selection-(PresentationVariant) related enums to the schema.
33
+ *
34
+ * @param definitionName - definition name
35
+ */
36
+ addSPVEnums(definitionName) {
37
+ const targetTerms = ["com.sap.vocabularies.UI.v1.SelectionVariant" /* UIAnnotationTerms.SelectionVariant */, "com.sap.vocabularies.UI.v1.SelectionPresentationVariant" /* UIAnnotationTerms.SelectionPresentationVariant */];
38
+ const uiAnnotations = this.page.getUIAnnotations();
39
+ if (!uiAnnotations) {
40
+ return;
41
+ }
42
+ const enumStrings = Object.values(uiAnnotations)
43
+ .filter((annotation) => targetTerms.includes(annotation.term))
44
+ .map((annotation) => annotation.qualifier ? `${annotation.term}#${annotation.qualifier}` : annotation.term);
45
+ const enums = [...new Set(enumStrings)];
46
+ this.appSchema.addEnumToSchema(definitionName, ['properties', __1.SchemaTag.annotationPath], enums);
47
+ }
48
+ }
49
+ exports.GeneralListReportSettings = GeneralListReportSettings;
50
+ /**
51
+ * Add filter bar to schema (LR or ALP).
52
+ */
53
+ class FilterBar extends sync_rules_1.BaseConstruct {
54
+ /**
55
+ *
56
+ * @param settings - general settings (App, Page, AppSchema, Logger)
57
+ */
58
+ constructor(settings) {
59
+ super(settings);
60
+ }
61
+ /**
62
+ * Initializes the filter bar adjustments.
63
+ */
64
+ init() {
65
+ this.addFilterBar(this.page.getEntityType(), this.appSchema, this.page.target, this.page.getUIVocabularyAlias());
66
+ }
67
+ // Implementation for FilterBar can be added here
68
+ addVisualFilters() {
69
+ (0, listReport_1.getVisualFilters)(this.page.target);
70
+ }
71
+ addSelectionFields() { }
72
+ /**
73
+ * Adds filter bar to schema (LR or ALP).
74
+ *
75
+ * @param entityType - the entity type
76
+ * @param schema - the application schema
77
+ * @param v4Page - the actual page in the manifest
78
+ * @param alias - alias definition for the UI vocabulary
79
+ */
80
+ addFilterBar(entityType, schema, v4Page, alias) {
81
+ const selectionFields = alias && entityType?.annotations?.[alias]?.SelectionFields;
82
+ let selectionFieldsDefinition;
83
+ // Hide visualFilters/selectionFields depending on existing visual filters
84
+ const appSchema = schema.get();
85
+ const visualFilters = (0, listReport_1.getVisualFilters)(v4Page);
86
+ if (visualFilters) {
87
+ appSchema.definitions[__1.DefinitionName.SelectionFields][__1.SchemaTag.hidden] = true;
88
+ appSchema.definitions[__1.DefinitionName.SelectionFields]['properties'] = {};
89
+ selectionFieldsDefinition = appSchema.definitions[__1.DefinitionName.CompactFilters];
90
+ selectionFieldsDefinition.additionalProperties = false;
91
+ selectionFieldsDefinition.properties = {};
92
+ (0, listReport_1.addVisualFilters)(entityType, appSchema, visualFilters, selectionFields);
93
+ }
94
+ else {
95
+ const filterBar = schema.getDefinition(__1.DefinitionName.FilterBar);
96
+ filterBar.properties['initialLayout'][__1.SchemaTag.hidden] = true;
97
+ filterBar.properties['layout'][__1.SchemaTag.hidden] = true;
98
+ appSchema.definitions[__1.DefinitionName.CompactFilters][__1.SchemaTag.hidden] = true;
99
+ appSchema.definitions[__1.DefinitionName.VisualFilters][__1.SchemaTag.hidden] = true;
100
+ }
101
+ selectionFieldsDefinition = (0, listReport_1.addSelectionFields)(entityType, appSchema, selectionFields, selectionFieldsDefinition);
102
+ // Apply custom filter fields
103
+ (0, listReport_1.applyCustomFilterFields)(appSchema, selectionFieldsDefinition, v4Page);
104
+ // Add "manifestPath" to filter fields
105
+ addManifestPathsToDefinitionPropertiesLR(schema.get(), v4Page.id, __1.DefinitionName.SelectionFields, this.app.getManifest());
106
+ }
107
+ }
108
+ exports.FilterBar = FilterBar;
109
+ /**
110
+ * Adjusts the entity type if a different entity set is maintained for a view.
111
+ *
112
+ * @param {EntitySet} entitySet - actual entity set (AVT information)
113
+ * @param view - the current view in manifest
114
+ * @param page - the page object
115
+ * @param app - the app object
116
+ * @returns the target entity type
117
+ */
118
+ function getTargetEntityType(entitySet, view, page, app) {
119
+ let targetEntityType = page.getEntityType();
120
+ let viewEntitySet = entitySet;
121
+ if (view['entitySet'] && view['entitySet'] !== entitySet.name) {
122
+ viewEntitySet = app.getAVT()?.entitySets.find((es) => {
123
+ return es.name === view['entitySet'];
124
+ });
125
+ targetEntityType = viewEntitySet.entityType;
126
+ }
127
+ return targetEntityType;
128
+ }
129
+ /**
130
+ * Adapts the table definition in schema.
131
+ * Evaluates the path depending on if defaultTemplateAnnotationPath or Selection-/PresentationVariant is present.
132
+ *
133
+ * @param settings - general settings (App, Page, AppSchema, Logger)
134
+ * @param templateAnnotation - defaultTemplateAnnotationPath as registered in manifest
135
+ * @param tableDefinitionName - The name of the table definition in the schema
136
+ */
137
+ function adaptTableDefinition(settings, templateAnnotation, tableDefinitionName) {
138
+ const { appSchema, page, app } = settings;
139
+ let schemaIdForColumns = `${__1.DefinitionName.LineItems}`;
140
+ let schemaIdForActions;
141
+ //here: tableDefinitionName = DefinitionName.Table
142
+ const tableDefinition = appSchema.getDefinition(tableDefinitionName);
143
+ const { visualization, targetAnnotation, namespace } = (0, listReport_1.analyzeViewAnnotation)(templateAnnotation, page.getUIAnnotations(), app.getAVT(), undefined, __1.Visualization.LineItem, app.logger);
144
+ if (visualization) {
145
+ const annotationTerm = visualization.split('.')[1];
146
+ schemaIdForColumns = `${__1.DefinitionName.LineItems}OfSPV::${(0, common_1.prepareRef)(annotationTerm)}`;
147
+ const spvTable = appSchema.cloneDefinition(tableDefinitionName, `${tableDefinitionName}SPV`);
148
+ appSchema.setPropertyRef(spvTable, ['properties', 'toolBar'], `${__1.DefinitionName.ToolBar}<${schemaIdForColumns}>`);
149
+ // Switch from generic column to specific definition
150
+ // schema.setProperty(spvTable, ['properties', 'columns'], {});
151
+ appSchema.setProperty(spvTable, [__1.SchemaTag.annotationPath], targetAnnotation);
152
+ appSchema.setPropertyRef(spvTable, ['properties', 'columns'], schemaIdForColumns);
153
+ appSchema.setDefinitionRef(tableDefinition, `${tableDefinitionName}SPV`);
154
+ appSchema.removeProperty(spvTable, __1.SchemaTag.isViewNode);
155
+ appSchema.removeProperty(tableDefinition, 'properties');
156
+ appSchema.setProperty(tableDefinition, [__1.SchemaTag.annotationPath], `/${namespace}/@${templateAnnotation}`);
157
+ const lineItemAnnotation = page.getUIAnnotations()[annotationTerm];
158
+ if (!lineItemAnnotation) {
159
+ (0, __1.log)(app.logger, {
160
+ severity: "error" /* LogSeverity.Error */,
161
+ message: i18next_1.default.t('NOTARGET', { target: annotationTerm })
162
+ });
163
+ }
164
+ const dataForLineItem = {
165
+ isObjectPage: false,
166
+ appSchema: appSchema.get(),
167
+ lineItemAnnotation,
168
+ entityType: page.entity.type,
169
+ oDataServiceAVT: app.getAVT(),
170
+ lineItemId: schemaIdForColumns
171
+ };
172
+ (0, utils_1.addLineItemsTypeToSchema)(dataForLineItem);
173
+ const annotationTermQualifier = annotationTerm.split('#')?.[1];
174
+ const sectionIdInManifest = annotationTermQualifier
175
+ ? `@${"com.sap.vocabularies.UI.v1.LineItem" /* UIAnnotationTerms.LineItem */}#${annotationTermQualifier}`
176
+ : `@${"com.sap.vocabularies.UI.v1.LineItem" /* UIAnnotationTerms.LineItem */}`;
177
+ (0, utils_1.addCustomColumnDefinition)(appSchema.get(), page.target, app.logger, undefined, schemaIdForColumns, sectionIdInManifest);
178
+ (0, utils_1.addFragmentEnumForAnchor)(appSchema.get(), schemaIdForColumns, page.target, undefined, sectionIdInManifest);
179
+ // Table toolbar actions with custom actions
180
+ schemaIdForActions = `${__1.DefinitionName.Actions}<${schemaIdForColumns}>`;
181
+ const customColumnDefinitionName = (0, common_1.getCustomExtensionDefinitionName)(appSchema.get(), schemaIdForColumns, __1.DefinitionName.CustomTableAction);
182
+ const schemaAdjustmentParameters = {
183
+ logger: app.logger,
184
+ appSchema: appSchema.get(),
185
+ v4Page: page.target,
186
+ tableDefinitionKey: `${tableDefinitionName}SPV`,
187
+ facetDefinitionKey: schemaIdForColumns,
188
+ dataForLineItem,
189
+ entityType: page.entity.type,
190
+ sectionActionsDefinitionKey: schemaIdForActions,
191
+ scopedCustomActionDefinitionKey: (0, common_1.getDefinitionKey)(customColumnDefinitionName),
192
+ customActionDefinitionName: __1.DefinitionName.CustomTableAction,
193
+ sectionIdInManifest
194
+ };
195
+ (0, listReport_1.applyLRSchemaAdjustments)(schemaAdjustmentParameters);
196
+ }
197
+ else {
198
+ appSchema.setPropertyRef(tableDefinition, ['properties', 'toolBar'], `${__1.DefinitionName.ToolBarLR}`);
199
+ appSchema.setPropertyRef(tableDefinition, ['properties', 'columns'], `${__1.DefinitionName.LineItems}`);
200
+ // Switch from generic column to specific definition
201
+ const lineItemAnnotation = page.getUIAnnotations()?.LineItem;
202
+ if (!lineItemAnnotation && !page.target.options?.settings?.views?.paths) {
203
+ (0, __1.log)(app.logger, {
204
+ severity: "error" /* LogSeverity.Error */,
205
+ message: i18next_1.default.t('NOLINEITEMS')
206
+ });
207
+ }
208
+ const dataForLineItem = {
209
+ isObjectPage: false,
210
+ appSchema: appSchema.get(),
211
+ lineItemAnnotation,
212
+ entityType: page.entity.type,
213
+ oDataServiceAVT: app.getAVT(),
214
+ lineItemId: __1.DefinitionName.LineItems
215
+ };
216
+ (0, utils_1.addLineItemsTypeToSchema)(dataForLineItem);
217
+ (0, utils_1.addCustomColumnDefinition)(appSchema.get(), page.target, app.logger);
218
+ (0, utils_1.addFragmentEnumForAnchor)(appSchema.get(), __1.DefinitionName.LineItems, page.target);
219
+ schemaIdForActions = `${__1.DefinitionName.Actions}<${(0, common_1.prepareRef)(schemaIdForColumns)}>`;
220
+ const schemaAdjustmentParameters = {
221
+ logger: app.logger,
222
+ appSchema: appSchema.get(),
223
+ v4Page: page.target,
224
+ tableDefinitionKey: tableDefinitionName,
225
+ facetDefinitionKey: schemaIdForColumns,
226
+ dataForLineItem,
227
+ entityType: page.entity.type,
228
+ customActionDefinitionName: __1.DefinitionName.CustomTableAction,
229
+ sectionActionsDefinitionKey: schemaIdForActions
230
+ };
231
+ (0, listReport_1.applyLRSchemaAdjustments)(schemaAdjustmentParameters);
232
+ if (lineItemAnnotation && !page.target.options?.settings?.views?.paths) {
233
+ tableDefinition[__1.SchemaTag.annotationPath] = (0, common_1.createAnnotationPath)(page.entity.type.fullyQualifiedName, lineItemAnnotation.term, lineItemAnnotation.qualifier);
234
+ }
235
+ }
236
+ // Add "manifestPath" for table properties
237
+ (0, listReport_1.addManifestPathsToPropertiesLR)(appSchema.get(), tableDefinitionName, tableDefinition, {
238
+ pageName: page.target.id,
239
+ manifest: app.getManifest(),
240
+ targetAnnotation
241
+ });
242
+ // Add "manifestPath" for table columns and actions
243
+ const customExtensionDefinitionNames = [schemaIdForColumns, schemaIdForActions];
244
+ customExtensionDefinitionNames.forEach((definitionName) => {
245
+ addManifestPathsToDefinitionPropertiesLR(appSchema.get(), page.target.id, definitionName, app.getManifest());
246
+ });
247
+ }
248
+ /**
249
+ * Add list report views to the app-specific schema.
250
+ *
251
+ * @param settings - general settings (App, Page, AppSchema, Logger)
252
+ * @param tableDefinitionName - The name of the table definition in the schema
253
+ */
254
+ function addLRViews(settings, tableDefinitionName) {
255
+ const { appSchema, app, page } = settings;
256
+ const viewsPaths = page.config.views.paths;
257
+ const tableDefinition = appSchema.getDefinition(tableDefinitionName);
258
+ tableDefinition.properties = {
259
+ annotationPath: tableDefinition.properties.annotationPath,
260
+ initialLoad: tableDefinition.properties.initialLoad,
261
+ views: tableDefinition.properties.views
262
+ };
263
+ const viewsDefinition = appSchema.getDefinition(__1.DefinitionName.MultiTableModeV4);
264
+ for (const view of viewsPaths) {
265
+ if (!view[__1.SchemaTag.key]) {
266
+ continue;
267
+ }
268
+ let navPropName = undefined;
269
+ const targetEntityType = getTargetEntityType(page.entity.set, view, page, app);
270
+ const uiAnnotations = targetEntityType?.annotations.UI;
271
+ const { visualization, targetAnnotation, namespace, title } = (0, listReport_1.analyzeViewAnnotation)(view?.[__1.SchemaTag.annotationPath], uiAnnotations, app.getAVT(), view[__1.SchemaTag.key], undefined, app.logger);
272
+ if (view['entitySet']) {
273
+ navPropName = page.entity.type.navigationProperties.find((np) => {
274
+ return np.targetTypeName === namespace;
275
+ })?.name;
276
+ }
277
+ const viewKey = (0, common_1.prepareRef)(view[__1.SchemaTag.key]);
278
+ const commonInputParameters = {
279
+ viewKey,
280
+ appSchema: appSchema.get(),
281
+ targetAnnotation,
282
+ navPropName,
283
+ targetEntityType,
284
+ title,
285
+ entitySet: view['entitySet']
286
+ };
287
+ (0, listReport_1.addLRViewParts)(visualization, viewsDefinition, commonInputParameters, { serviceAVT: app.getAVT(), entityType: targetEntityType, logger: app.logger }, page, app, uiAnnotations, view);
288
+ (0, listReport_1.addTagsToView)(viewsDefinition, viewKey, namespace, view);
289
+ }
290
+ }
291
+ class TableAndViews extends sync_rules_1.BaseConstruct {
292
+ /**
293
+ * Initializes the addition of table and views to the schema.
294
+ */
295
+ init() {
296
+ this.addTableAndViews();
297
+ }
298
+ /**
299
+ * Adds table and views to the schema.
300
+ */
301
+ addTableAndViews() {
302
+ const tableDefinitionName = (0, utils_1.alignSchemaWithTemplateType)(this.appSchema.get(), this.page.template.type);
303
+ const config = this.page.config;
304
+ if (this.page.template.type === __1.TemplateType.ListReportObjectPageV4) {
305
+ this.appSchema.hide(this.appSchema.getRootProperty([__1.PropertyName.chart]));
306
+ adaptTableDefinition(this.getSettings(), config.defaultAnnotation, tableDefinitionName);
307
+ if (!config.views) {
308
+ this.appSchema.setProperty(__1.DefinitionName.MultiTableModeV4, ['properties'], {});
309
+ }
310
+ else if (config.views.paths) {
311
+ this.appSchema.cleanup(['LineItems', 'ToolBar<LineItems>', 'Actions<LineItems>']);
312
+ addLRViews(this.getSettings(), tableDefinitionName);
313
+ }
314
+ }
315
+ else if (config.isALP) {
316
+ const generateParameters = {
317
+ logger: this.logger,
318
+ entityType: this.page.getEntityType(),
319
+ serviceAVT: this.app.getAVT()
320
+ };
321
+ (0, listReport_1.addALPViews)(this.appSchema.get(), config.views?.paths, generateParameters, config.defaultAnnotation, this.page.target, tableDefinitionName);
322
+ (0, utils_1.addFragmentEnumForAnchor)(this.appSchema.get(), __1.DefinitionName.LineItems, this.page.target);
323
+ }
324
+ }
325
+ }
326
+ exports.TableAndViews = TableAndViews;
327
+ /**
328
+ * Enhances the List Report schema with manifest paths for definition and properties.
329
+ *
330
+ * This function extends the app schema (`appSchema`) by adding manifestPath to definition and properties on the List Report.
331
+ *
332
+ * @param {Definition} appSchema - The application schema object representing the List Report structure.
333
+ * @param {string} pageId - Identifier of the page.
334
+ * @param {string} definitionName - Identifier of the corresponding definition.
335
+ * @param {Manifest} manifest - The application manifest.
336
+ * @param {string} targetAnnotation - Target annotation.
337
+ * @param {string} entitySet - Entity set.
338
+ */
339
+ function addManifestPathsToDefinitionPropertiesLR(appSchema, pageId, definitionName, manifest, targetAnnotation, entitySet) {
340
+ const matchingDefinition = appSchema.definitions[definitionName];
341
+ for (const key in matchingDefinition?.properties ?? {}) {
342
+ const property = matchingDefinition.properties[key];
343
+ (0, listReport_1.addManifestPathsToPropertiesLR)(appSchema, undefined, property, {
344
+ pageName: pageId,
345
+ columnKey: key,
346
+ manifest,
347
+ targetAnnotation,
348
+ viewConfig: {
349
+ entitySet
350
+ }
351
+ }, true);
352
+ }
353
+ }
354
+ //# sourceMappingURL=ListReportUtils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListReportUtils.js","sourceRoot":"","sources":["../../../../../../../src/sync/v4/generate/list-report/ListReportUtils.ts"],"names":[],"mappings":"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"}
@@ -1,11 +1,12 @@
1
- import { type LineItemDataForSchema } from '../utils/utils';
2
- import { TemplateType, Visualization, DefinitionName } from '@sap/ux-specification-types';
3
- import type { ExtensionLogger, v4, GenerateAppSchemaParameters } from '@sap/ux-specification-types';
1
+ import { type LineItemDataForSchema } from '../../utils';
2
+ import { Visualization, DefinitionName, v4 } from '@sap/ux-specification-types';
3
+ import type { ExtensionLogger, GenerateAppSchemaParameters } from '@sap/ux-specification-types';
4
4
  import type { AnnotationTerm, EntityType, ConvertedMetadata } from '@sap-ux/vocabularies-types';
5
5
  import type { SelectionFields } from '@sap-ux/vocabularies-types/vocabularies/UI';
6
- import { type ManifestPathParams } from '../../common';
6
+ import { type ManifestPathParams } from '../../../common';
7
7
  import type { Definition } from 'typescript-json-schema';
8
- import { Page } from '../sync-rules/Page';
8
+ import type { PageConfig, App } from '../../sync-rules';
9
+ import { Page } from '../../sync-rules';
9
10
  /**
10
11
  * Parameter bag for post-generation schema adjustments.
11
12
  *
@@ -36,6 +37,23 @@ export interface SchemaAdjustmentParameters {
36
37
  sectionIdInManifest?: string;
37
38
  customActionPosition?: string;
38
39
  }
40
+ /**
41
+ * Default table type when not specified in manifest.
42
+ */
43
+ export declare const DEFAULT_TABLE_TYPE = v4.TableTypeV4.ResponsiveTable;
44
+ /**
45
+ * Configuration interface for List Report pages.
46
+ * Extends the base PageConfig with List Report specific properties.
47
+ */
48
+ export interface ListReportPageConfig extends PageConfig {
49
+ isALP?: boolean;
50
+ defaultAnnotation?: string;
51
+ views?: v4.SapUi5Views;
52
+ }
53
+ /**
54
+ * Type alias for a Page with ListReportPageConfig configuration.
55
+ */
56
+ export type LRPage = Page<ListReportPageConfig>;
39
57
  /**
40
58
  * Adds the selection fields to the app schema, as properties of the FilterBar.
41
59
  *
@@ -140,19 +158,11 @@ export declare function addTagsToView(viewsDefinition: Definition, viewKey: stri
140
158
  * @param generateParameters.entityType - entity type of the current page
141
159
  * @param generateParameters.logger - extension logger
142
160
  * @param page - the current page object
161
+ * @param app - the application object containing manifest and other app-specific information.
143
162
  * @param uiAnnotations - UI annotations of the given entityType
144
163
  * @param view - the given view
145
164
  */
146
- export declare function addLRViewParts(visualization: string, viewsDefinition: Definition, commonInputParameters: ViewsParameters, { serviceAVT, entityType, logger }: Partial<GenerateAppSchemaParameters>, page: Page, uiAnnotations: object, view: object): void;
147
- /**
148
- * Checks for the default annotation path to use for LR table.
149
- *
150
- * @param v4Page - actual page in the manifest
151
- * @param entityType - actual entity type (AVT information)
152
- * @param templateType - The type of template being used (e.g., ListReportObjectPageV4 or AnalyticalListPageV4)
153
- * @returns annotation term
154
- */
155
- export declare function getDefaultAnnotationPath(v4Page: v4.SapUiAppPageV4, entityType: EntityType, templateType: TemplateType): string | undefined;
165
+ export declare function addLRViewParts(visualization: string, viewsDefinition: Definition, commonInputParameters: ViewsParameters, { serviceAVT, entityType, logger }: Partial<GenerateAppSchemaParameters>, page: Page, app: App, uiAnnotations: object, view: object): void;
156
166
  /**
157
167
  * Adds header actions to schema (LR or ALP).
158
168
  *
@@ -168,8 +178,9 @@ export declare function addHeaderActions(appSchema: Definition, v4Page: v4.SapUi
168
178
  * @param definitionName - The name of the definition/class whose properties are being processed.
169
179
  * @param definition - The definition object containing property schemas.
170
180
  * @param pathParams - Additional context required to compute manifest paths.
181
+ * @param handleRelative - A flag indicating whether to use relative paths for definition properties.
171
182
  */
172
- export declare function addManifestPathsToPropertiesLR(appSchema: Definition, definitionName: string | undefined, definition: Definition, pathParams: ManifestPathParams): void;
183
+ export declare function addManifestPathsToPropertiesLR(appSchema: Definition, definitionName: string | undefined, definition: Definition, pathParams: ManifestPathParams, handleRelative?: boolean): void;
173
184
  /**
174
185
  * Generates an app specific schema for the FE V4 ListReport from the generic schema.
175
186
  * Generic types are replaced by information from the app specific annotations.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listReport.d.ts","sourceRoot":"","sources":["../../../../../../../src/sync/v4/generate/list-report/listReport.ts"],"names":[],"mappings":"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"}