@applicaster/zapp-react-native-utils 16.0.0-rc.8 → 16.0.0-rc.81

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 (190) hide show
  1. package/actionsExecutor/ActionExecutor.ts +47 -11
  2. package/actionsExecutor/ActionExecutorContext.tsx +102 -315
  3. package/actionsExecutor/__tests__/feedDecorator.test.ts +61 -0
  4. package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +25 -0
  5. package/actionsExecutor/actions/__tests__/goBack.test.ts +62 -0
  6. package/actionsExecutor/actions/__tests__/goHome.test.ts +19 -0
  7. package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
  8. package/actionsExecutor/actions/__tests__/navigateToScreen.test.ts +133 -0
  9. package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
  10. package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +212 -0
  11. package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
  12. package/actionsExecutor/actions/appRestart.ts +24 -0
  13. package/actionsExecutor/actions/confirmDialog.ts +53 -0
  14. package/actionsExecutor/actions/dismissBottomSheet.ts +23 -0
  15. package/actionsExecutor/actions/goBack.ts +60 -0
  16. package/actionsExecutor/actions/goHome.ts +31 -0
  17. package/actionsExecutor/actions/index.ts +38 -0
  18. package/actionsExecutor/actions/localStorageRemove.ts +27 -0
  19. package/actionsExecutor/actions/localStorageSet.ts +28 -0
  20. package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
  21. package/actionsExecutor/actions/navigateToScreen.ts +137 -0
  22. package/actionsExecutor/actions/openBottomSheet.ts +325 -0
  23. package/actionsExecutor/actions/refreshComponent.ts +85 -0
  24. package/actionsExecutor/actions/screenSetVariable.ts +35 -0
  25. package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
  26. package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
  27. package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
  28. package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
  29. package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
  30. package/actionsExecutor/actions/showToast.ts +87 -0
  31. package/actionsExecutor/actions/switchLayout.ts +40 -0
  32. package/actionsExecutor/consts.ts +25 -0
  33. package/actionsExecutor/feedDecorator.ts +6 -6
  34. package/actionsExecutor/types.ts +59 -0
  35. package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
  36. package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
  37. package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
  38. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
  39. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
  40. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
  41. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
  42. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
  43. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
  44. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
  45. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
  46. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
  47. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
  48. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
  49. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
  50. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
  51. package/analyticsUtils/__tests__/fixtures/index.js +20 -0
  52. package/analyticsUtils/analyticsMapper.ts +4 -1
  53. package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
  54. package/appUtils/HooksManager/index.ts +12 -8
  55. package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
  56. package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
  57. package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
  58. package/appUtils/contextKeysManager/index.ts +1 -1
  59. package/appUtils/contextKeysManager/utils/index.ts +38 -25
  60. package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
  61. package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
  62. package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
  63. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.android.tv.ts +4 -0
  64. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ios.tv.ts +4 -0
  65. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ts +11 -0
  66. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.web.ts +4 -0
  67. package/appUtils/playerManager/OverlayObserver/utils.ts +54 -20
  68. package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
  69. package/appUtils/playerManager/__tests__/playerFactory.test.ts +1 -1
  70. package/appUtils/playerManager/__tests__/playerNative.test.ts +38 -0
  71. package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
  72. package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
  73. package/appUtils/playerManager/index.ts +1 -1
  74. package/appUtils/playerManager/player.ts +115 -3
  75. package/appUtils/playerManager/playerFactory.ts +1 -1
  76. package/appUtils/playerManager/playerNative.ts +6 -4
  77. package/appUtils/playerManager/usePlayerContent.tsx +43 -0
  78. package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
  79. package/appUtils/playerManager/userLanguagePreference.ts +1 -1
  80. package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
  81. package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
  82. package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
  83. package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
  84. package/arrayUtils/__tests__/isFirst.test.ts +17 -0
  85. package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
  86. package/arrayUtils/__tests__/isLast.test.ts +31 -0
  87. package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
  88. package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
  89. package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
  90. package/arrayUtils/__tests__/sample.test.ts +61 -0
  91. package/arrayUtils/index.ts +136 -20
  92. package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
  93. package/bottomSheet/index.ts +17 -0
  94. package/cellUtils/index.ts +33 -8
  95. package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
  96. package/colorUtils/__tests__/isValidColor.test.ts +70 -0
  97. package/colorUtils/index.ts +50 -0
  98. package/configurationUtils/__tests__/manifestKeyParser.test.ts +21 -0
  99. package/configurationUtils/__tests__/modalBlocksParser.test.ts +260 -0
  100. package/configurationUtils/manifestKeyParser.ts +50 -10
  101. package/configurationUtils/modalBlocksParser.ts +296 -0
  102. package/entryActions/__tests__/buildEntryActions.test.ts +156 -0
  103. package/entryActions/aliasPresentation.ts +124 -0
  104. package/entryActions/buildEntryActions.ts +166 -0
  105. package/entryActions/index.ts +17 -0
  106. package/entryActions/types.ts +39 -0
  107. package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
  108. package/manifestUtils/_internals/index.js +14 -3
  109. package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -0
  110. package/manifestUtils/defaultManifestConfigurations/player.js +349 -20
  111. package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
  112. package/manifestUtils/fieldUtils/index.js +125 -0
  113. package/manifestUtils/index.js +3 -0
  114. package/manifestUtils/keys.js +9 -0
  115. package/manifestUtils/mobileAction/button/index.js +16 -0
  116. package/manifestUtils/mobileAction/container/index.js +3 -1
  117. package/manifestUtils/mobileAction/groups/defaults.js +3 -1
  118. package/manifestUtils/modalBlocks.js +304 -0
  119. package/manifestUtils/platformIsTV.js +1 -0
  120. package/modalState/ContentViewModel.ts +113 -0
  121. package/modalState/EditableCollection.ts +17 -0
  122. package/modalState/EditableCollectionRegistry.ts +51 -0
  123. package/modalState/ModalOrchestrator.ts +211 -0
  124. package/modalState/RemoteEditableCollection.ts +227 -0
  125. package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
  126. package/modalState/__tests__/ContentViewModel.test.ts +165 -0
  127. package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
  128. package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +47 -0
  129. package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
  130. package/modalState/__tests__/index.test.ts +30 -1
  131. package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
  132. package/modalState/index.ts +35 -83
  133. package/modalState/store.ts +102 -0
  134. package/modalState/types.ts +159 -0
  135. package/modalState/useBottomSheetContent.ts +104 -0
  136. package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
  137. package/numberUtils/__tests__/isZero.test.ts +27 -0
  138. package/numberUtils/__tests__/requireNumber.test.ts +50 -0
  139. package/numberUtils/__tests__/toNumber.test.ts +27 -0
  140. package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
  141. package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
  142. package/numberUtils/index.ts +27 -8
  143. package/package.json +2 -2
  144. package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
  145. package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
  146. package/pipesUtils/index.ts +1 -0
  147. package/pipesUtils/withPipesEndpoint.tsx +54 -0
  148. package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
  149. package/playerUtils/__tests__/resolvePlayerActions.test.ts +138 -0
  150. package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
  151. package/playerUtils/contentDataKeys.ts +134 -0
  152. package/playerUtils/index.ts +58 -15
  153. package/playerUtils/isAudioItem.ts +26 -0
  154. package/playerUtils/resolvePlayerActions.ts +71 -0
  155. package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
  156. package/reactHooks/actions/index.ts +117 -2
  157. package/reactHooks/cell-click/index.ts +18 -10
  158. package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
  159. package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
  160. package/reactHooks/feed/index.ts +5 -1
  161. package/reactHooks/feed/useBatchLoading.ts +9 -1
  162. package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
  163. package/reactHooks/index.ts +2 -0
  164. package/reactHooks/layout/index.ts +1 -1
  165. package/reactHooks/navigation/__mocks__/index.ts +4 -0
  166. package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
  167. package/reactHooks/navigation/index.ts +1 -1
  168. package/reactHooks/navigation/useIsScreenActive.ts +29 -8
  169. package/reactHooks/state/useComponentScreenState.ts +1 -1
  170. package/reactHooks/usePluginConfiguration.ts +4 -1
  171. package/reactHooks/utils/__tests__/index.test.js +22 -2
  172. package/reactHooks/utils/index.ts +13 -2
  173. package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
  174. package/riverComponetsMeasurementProvider/index.tsx +12 -8
  175. package/stringUtils/__tests__/stringUtils.test.js +42 -0
  176. package/stringUtils/index.ts +2 -2
  177. package/uiActionsRegistrator/__tests__/resolveActionIdentifiers.test.ts +93 -0
  178. package/uiActionsRegistrator/__tests__/subscribe.test.ts +107 -0
  179. package/uiActionsRegistrator/__tests__/usableActionItems.test.ts +52 -0
  180. package/uiActionsRegistrator/index.ts +25 -0
  181. package/uiActionsRegistrator/registry.ts +335 -0
  182. package/uiActionsRegistrator/resolveActionIdentifiers.ts +100 -0
  183. package/uiActionsRegistrator/usableActionItems.ts +66 -0
  184. package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
  185. package/zappFrameworkUtils/localStorageHelper.ts +19 -15
  186. package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
  187. package/playerUtils/__tests__/getPlayerActionButtons.test.ts +0 -54
  188. package/playerUtils/getPlayerActionButtons.ts +0 -17
  189. package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
  190. /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
@@ -0,0 +1,296 @@
1
+ import { getAllSpecificStyles } from "./manifestKeyParser";
2
+
3
+ export type ModalBlocksConfig = {
4
+ header: {
5
+ container: Record<string, any>;
6
+ title: Record<string, any>;
7
+ closeButton: Record<string, any>;
8
+ actionButtons: Record<string, any>;
9
+ };
10
+ action: {
11
+ background: Record<string, any>;
12
+ title: Record<string, any>;
13
+ icons: Record<string, any>;
14
+ leadingIcon: Record<string, any>;
15
+ trailingIcon: Record<string, any>;
16
+ };
17
+ item: {
18
+ background: Record<string, any>;
19
+ image: Record<string, any>;
20
+ nowPlayingContainer: Record<string, any>;
21
+ nowPlayingAsset: Record<string, any>;
22
+ nowPlayingLabel: Record<string, any>;
23
+ textLabel1: Record<string, any>;
24
+ textLabel2: Record<string, any>;
25
+ buttonsContainer: Record<string, any>;
26
+ button1: Record<string, any>;
27
+ button2: Record<string, any>;
28
+ /** Studio item.checkbox_asset / item.checked_checkbox_asset */
29
+ checkbox?: Record<string, any>;
30
+ /** Studio reorder/remove icons for Edit Order rows */
31
+ actionButtons?: Record<string, any>;
32
+ };
33
+ nowPlayingItem?: {
34
+ background: Record<string, any>;
35
+ image: Record<string, any>;
36
+ nowPlayingContainer: Record<string, any>;
37
+ nowPlayingAsset: Record<string, any>;
38
+ nowPlayingLabel: Record<string, any>;
39
+ textLabel1: Record<string, any>;
40
+ textLabel2: Record<string, any>;
41
+ buttonsContainer: Record<string, any>;
42
+ button1: Record<string, any>;
43
+ button2: Record<string, any>;
44
+ checkbox?: Record<string, any>;
45
+ actionButtons?: Record<string, any>;
46
+ };
47
+ button: {
48
+ background: Record<string, any>;
49
+ title: Record<string, any>;
50
+ icons: Record<string, any>;
51
+ leadingIcon: Record<string, any>;
52
+ };
53
+ };
54
+
55
+ export const parseModalBlocksConfiguration = (
56
+ configuration: Record<string, any>,
57
+ componentName: string
58
+ ): ModalBlocksConfig => {
59
+ const result: ModalBlocksConfig = {
60
+ header: {
61
+ container: {},
62
+ title: {},
63
+ closeButton: {},
64
+ actionButtons: {},
65
+ },
66
+ action: {
67
+ background: {},
68
+ title: {},
69
+ icons: {},
70
+ leadingIcon: {},
71
+ trailingIcon: {},
72
+ },
73
+ item: {
74
+ background: {},
75
+ image: {},
76
+ nowPlayingContainer: {},
77
+ nowPlayingAsset: {},
78
+ nowPlayingLabel: {},
79
+ textLabel1: {},
80
+ textLabel2: {},
81
+ buttonsContainer: {},
82
+ button1: {},
83
+ button2: {},
84
+ checkbox: {},
85
+ actionButtons: {},
86
+ },
87
+ nowPlayingItem: {
88
+ background: {},
89
+ image: {},
90
+ nowPlayingContainer: {},
91
+ nowPlayingAsset: {},
92
+ nowPlayingLabel: {},
93
+ textLabel1: {},
94
+ textLabel2: {},
95
+ buttonsContainer: {},
96
+ button1: {},
97
+ button2: {},
98
+ checkbox: {},
99
+ actionButtons: {},
100
+ },
101
+ button: {
102
+ background: {},
103
+ title: {},
104
+ icons: {},
105
+ leadingIcon: {},
106
+ },
107
+ };
108
+
109
+ if (!configuration || !componentName) {
110
+ return result;
111
+ }
112
+
113
+ const normalizedComponentName = componentName.replace(/-/g, "_");
114
+
115
+ // Helper to parse sub-components for a block
116
+ const parseBlock = (blockName: string, subComponents: string[]) => {
117
+ subComponents.forEach((subComponent) => {
118
+ // e.g. header_container
119
+ const fullSubComponentName = `${blockName}_${subComponent}`;
120
+
121
+ // e.g. result.header.container
122
+ const camelSubComponent = subComponent.replace(/_([a-z0-9])/g, (g) =>
123
+ g[1].toUpperCase()
124
+ );
125
+
126
+ const camelBlockName = (blockName as string).replace(
127
+ /_([a-z0-9])/g,
128
+ (g) => g[1].toUpperCase()
129
+ ) as keyof ModalBlocksConfig;
130
+
131
+ getAllSpecificStyles({
132
+ configuration,
133
+ componentName: normalizedComponentName,
134
+ subComponentName: fullSubComponentName,
135
+ styleSeparator: "",
136
+ outStyles:
137
+ result[camelBlockName]![
138
+ camelSubComponent as keyof (typeof result)[typeof camelBlockName]
139
+ ],
140
+ });
141
+ });
142
+ };
143
+
144
+ parseBlock("header", [
145
+ "container",
146
+ "title",
147
+ "close_button",
148
+ "action_buttons",
149
+ ]);
150
+
151
+ parseBlock("action", [
152
+ "background",
153
+ "title",
154
+ "icons",
155
+ "leading_icon",
156
+ "trailing_icon",
157
+ ]);
158
+
159
+ parseBlock("item", [
160
+ "background",
161
+ "image",
162
+ "now_playing_container",
163
+ "now_playing_asset",
164
+ "now_playing_label",
165
+ // Underscored form (QB convention) and Studio/manifest-generator form
166
+ // without the underscore before the digit (text_label1).
167
+ "text_label_1",
168
+ "text_label_2",
169
+ "text_label1",
170
+ "text_label2",
171
+ "buttons_container",
172
+ "button_1",
173
+ "button_2",
174
+ ]);
175
+
176
+ parseBlock("now_playing_item", [
177
+ "background",
178
+ "image",
179
+ "now_playing_container",
180
+ "now_playing_asset",
181
+ "now_playing_label",
182
+ "text_label_1",
183
+ "text_label_2",
184
+ "text_label1",
185
+ "text_label2",
186
+ "buttons_container",
187
+ "button_1",
188
+ "button_2",
189
+ ]);
190
+
191
+ parseBlock("button", ["background", "title", "icons", "leading_icon"]);
192
+
193
+ // Playlist-experience Studio keys live in this shared parser because modal
194
+ // blocks are themed by themePluginId. Gate them so other plugins are not
195
+ // affected by playlist-only asset names.
196
+ const isPlaylistExperience =
197
+ normalizedComponentName === "playlist_experience";
198
+
199
+ // Studio uploads Create New icon as button.create_new_playlist_asset (not
200
+ // button.leading_icon.asset). Map it onto leadingIcon so AudioPlayerButton
201
+ // can override the hardcoded action-type asset.
202
+ const createNewPlaylistAsset = isPlaylistExperience
203
+ ? configuration["button.create_new_playlist_asset"] ||
204
+ configuration[
205
+ `${normalizedComponentName}_button_create_new_playlist_asset`
206
+ ]
207
+ : undefined;
208
+
209
+ if (createNewPlaylistAsset) {
210
+ if (!result.button.leadingIcon.default) {
211
+ result.button.leadingIcon.default = {};
212
+ }
213
+
214
+ result.button.leadingIcon.default.asset = createNewPlaylistAsset;
215
+ }
216
+
217
+ // Studio checkbox assets are top-level item.* keys (not a parseBlock
218
+ // sub-component). Map onto item.checkbox so multiSelect can render them.
219
+ const checkboxAsset =
220
+ configuration["item.checkbox_asset"] ||
221
+ configuration[`${normalizedComponentName}_item_checkbox_asset`];
222
+
223
+ const checkedCheckboxAsset =
224
+ configuration["item.checked_checkbox_asset"] ||
225
+ configuration[`${normalizedComponentName}_item_checked_checkbox_asset`];
226
+
227
+ if (checkboxAsset || checkedCheckboxAsset) {
228
+ if (!result.item.checkbox.default) {
229
+ result.item.checkbox.default = {};
230
+ }
231
+
232
+ if (checkboxAsset) {
233
+ result.item.checkbox.default.asset = checkboxAsset;
234
+ }
235
+
236
+ if (checkedCheckboxAsset) {
237
+ result.item.checkbox.default.checkedAsset = checkedCheckboxAsset;
238
+ }
239
+ }
240
+
241
+ // Edit Order row icons: prefer reorder_playlist_item.*, then flavor1, then
242
+ // flavor2 playlist_experience_assets_* (playlist-experience theme only).
243
+ const removeAsset = isPlaylistExperience
244
+ ? configuration["reorder_playlist_item.remove_from_playlist_asset"] ||
245
+ configuration[
246
+ `${normalizedComponentName}_reorder_playlist_item_remove_from_playlist_asset`
247
+ ] ||
248
+ configuration[
249
+ "playlist_experience_assets_flavor1.remove_from_playlist_asset"
250
+ ] ||
251
+ configuration[
252
+ `${normalizedComponentName}_assets_flavor1_remove_from_playlist_asset`
253
+ ] ||
254
+ configuration[
255
+ "playlist_experience_assets_flavor2.remove_from_playlist_asset"
256
+ ] ||
257
+ configuration[
258
+ `${normalizedComponentName}_assets_flavor2_remove_from_playlist_asset`
259
+ ]
260
+ : undefined;
261
+
262
+ const dragAsset = isPlaylistExperience
263
+ ? configuration["reorder_playlist_item.reorder_handle_asset"] ||
264
+ configuration[
265
+ `${normalizedComponentName}_reorder_playlist_item_reorder_handle_asset`
266
+ ] ||
267
+ configuration[
268
+ "playlist_experience_assets_flavor1.reorder_handle_asset"
269
+ ] ||
270
+ configuration[
271
+ `${normalizedComponentName}_assets_flavor1_reorder_handle_asset`
272
+ ] ||
273
+ configuration[
274
+ "playlist_experience_assets_flavor2.reorder_handle_asset"
275
+ ] ||
276
+ configuration[
277
+ `${normalizedComponentName}_assets_flavor2_reorder_handle_asset`
278
+ ]
279
+ : undefined;
280
+
281
+ if (removeAsset || dragAsset) {
282
+ if (!result.item.actionButtons.default) {
283
+ result.item.actionButtons.default = {};
284
+ }
285
+
286
+ if (removeAsset) {
287
+ result.item.actionButtons.default.removeAsset = removeAsset;
288
+ }
289
+
290
+ if (dragAsset) {
291
+ result.item.actionButtons.default.dragAsset = dragAsset;
292
+ }
293
+ }
294
+
295
+ return result;
296
+ };
@@ -0,0 +1,156 @@
1
+ import { buildEntryActions } from "../buildEntryActions";
2
+
3
+ describe("buildEntryActions - alias & label resolution", () => {
4
+ const mockDeps = {
5
+ actionExecutor: { handleActions: jest.fn() } as any,
6
+ actionContext: {},
7
+ };
8
+
9
+ const resolveEntryActions = (entry: ZappEntry) =>
10
+ buildEntryActions(entry, mockDeps);
11
+
12
+ it("resolves entry action with explicit button title", () => {
13
+ const entry = {
14
+ id: "entry-1",
15
+ extensions: {
16
+ entry_action: [
17
+ {
18
+ button: {
19
+ title: "Custom Action Title",
20
+ iconURL: "http://example.com/icon.png",
21
+ },
22
+ actions: [{ type: "test" }],
23
+ dismiss_on_action: true,
24
+ },
25
+ ],
26
+ },
27
+ };
28
+
29
+ const actions = resolveEntryActions(entry as any);
30
+
31
+ expect(actions).toHaveLength(1);
32
+ expect(actions[0].identifier).toBe("entry_action_0");
33
+
34
+ const state = actions[0].action.initialEntryState(entry as any);
35
+
36
+ expect(state).toEqual({
37
+ state: 0,
38
+ label: "Custom Action Title",
39
+ asset: "http://example.com/icon.png",
40
+ });
41
+ });
42
+
43
+ it("resolves entry action with button label property", () => {
44
+ const entry = {
45
+ id: "entry-2",
46
+ extensions: {
47
+ entry_action: [
48
+ {
49
+ button: { label: "Label Property Action" },
50
+ actions: [{ type: "test" }],
51
+ },
52
+ ],
53
+ },
54
+ };
55
+
56
+ const actions = resolveEntryActions(entry as any);
57
+
58
+ expect(actions).toHaveLength(1);
59
+ const state = actions[0].action.initialEntryState(entry as any);
60
+ expect(state.label).toBe("Label Property Action");
61
+ });
62
+
63
+ it("resolves entry action with known backend button alias (e.g. add_all_to_queue)", () => {
64
+ const entry = {
65
+ id: "entry-3",
66
+ extensions: {
67
+ entry_action: [
68
+ {
69
+ button: { alias: "add_all_to_queue" },
70
+ actions: [{ type: "test" }],
71
+ dismiss_on_action: true,
72
+ },
73
+ {
74
+ button: { alias: "add_to_playlist" },
75
+ actions: [{ type: "test" }],
76
+ },
77
+ {
78
+ button: { alias: "delete_collection" },
79
+ actions: [{ type: "test" }],
80
+ },
81
+ ],
82
+ },
83
+ };
84
+
85
+ const actions = resolveEntryActions(entry as any);
86
+
87
+ expect(actions).toHaveLength(3);
88
+
89
+ expect(actions[0].action.initialEntryState(entry as any)).toMatchObject({
90
+ state: 0,
91
+ label: "Add all to Queue",
92
+ });
93
+
94
+ expect(actions[1].action.initialEntryState(entry as any)).toMatchObject({
95
+ state: 0,
96
+ label: "Add to Playlist",
97
+ });
98
+
99
+ expect(actions[2].action.initialEntryState(entry as any)).toMatchObject({
100
+ state: 0,
101
+ label: "Delete collection",
102
+ });
103
+ });
104
+
105
+ it("formats unknown alias nicely as fallback", () => {
106
+ const entry = {
107
+ id: "entry-4",
108
+ extensions: {
109
+ entry_action: [
110
+ {
111
+ button: { alias: "custom_unknown_action" },
112
+ actions: [{ type: "test" }],
113
+ },
114
+ ],
115
+ },
116
+ };
117
+
118
+ const actions = resolveEntryActions(entry as any);
119
+
120
+ expect(actions).toHaveLength(1);
121
+ const state = actions[0].action.initialEntryState(entry as any);
122
+ expect(state.label).toBe("Custom unknown action");
123
+ });
124
+
125
+ it("uses actionExecutor.getActionState for plugin-provided label and asset", () => {
126
+ mockDeps.actionExecutor.getActionState = jest.fn(() => ({
127
+ label: "From Plugin",
128
+ asset: "plugin_asset",
129
+ }));
130
+
131
+ const entry = {
132
+ id: "entry-plugin-state",
133
+ extensions: {
134
+ entry_action: [
135
+ {
136
+ button: { alias: "custom_plugin_action" },
137
+ actions: [{ type: "plugin-action" }],
138
+ },
139
+ ],
140
+ },
141
+ };
142
+
143
+ const actions = resolveEntryActions(entry as any);
144
+ const state = actions[0].action.initialEntryState(entry as any);
145
+
146
+ expect(mockDeps.actionExecutor.getActionState).toHaveBeenCalledWith(
147
+ "plugin-action",
148
+ entry
149
+ );
150
+
151
+ expect(state).toMatchObject({
152
+ label: "From Plugin",
153
+ asset: "plugin_asset",
154
+ });
155
+ });
156
+ });
@@ -0,0 +1,124 @@
1
+ /**
2
+ * Presentation defaults for backend action aliases.
3
+ *
4
+ * Entries may declare an action by `alias` alone, without a label or an icon.
5
+ * These maps are the last-resort labels/icons for the aliases we know about; an
6
+ * unknown alias falls back to a humanized version of the alias itself.
7
+ *
8
+ * They are defaults, not a framework guarantee: an app that speaks a different
9
+ * alias vocabulary, needs other languages, or does not want to depend on these
10
+ * icon hosts passes its own through `EntryActionDeps.aliasPresentation`.
11
+ */
12
+
13
+ import { EntryAction } from "./types";
14
+
15
+ const ADD_TO_PLAYLIST_ICON =
16
+ "https://assets-secure.applicaster.com/zapp/assets/app_family/1710/906728572617/playlist_add_24dp_FFFFFF_FILL0_wght400_GRAD0_opsz24.png";
17
+
18
+ const REMOVE_ICON =
19
+ "https://assets-secure.applicaster.com/zapp/assets/app_family/1710/372097240191/remove_24dp_EA3323_FILL0_wght400_GRAD0_opsz24.png";
20
+
21
+ const EDIT_ICON =
22
+ "https://upload.wikimedia.org/wikipedia/commons/b/b6/Edit-icon.png";
23
+
24
+ /** Known backend action alias labels. */
25
+ export const ALIAS_LABELS: Record<string, string> = {
26
+ add_to_playlist: "Add to Playlist",
27
+ add_to_queue: "Add to Queue",
28
+ add_all_to_queue: "Add all to Queue",
29
+ play_all: "Play All",
30
+ remove_item: "Remove item",
31
+ delete_collection: "Delete collection",
32
+ create_collection: "Create collection",
33
+ edit: "Edit",
34
+ edit_name: "Edit Name & Details",
35
+ };
36
+
37
+ /** Known backend action alias image assets. */
38
+ export const ALIAS_ASSETS: Record<string, string> = {
39
+ add_to_playlist: ADD_TO_PLAYLIST_ICON,
40
+ add_to_queue: ADD_TO_PLAYLIST_ICON,
41
+ add_all_to_queue: ADD_TO_PLAYLIST_ICON,
42
+ play_all: ADD_TO_PLAYLIST_ICON,
43
+ remove_item: REMOVE_ICON,
44
+ delete_collection: REMOVE_ICON,
45
+ edit: EDIT_ICON,
46
+ edit_name: EDIT_ICON,
47
+ };
48
+
49
+ /** Per-app overrides for the maps above. */
50
+ export type AliasPresentation = {
51
+ labels?: Record<string, string>;
52
+ assets?: Record<string, string>;
53
+ };
54
+
55
+ function formatAliasLabel(
56
+ alias: string,
57
+ overrides?: AliasPresentation
58
+ ): string {
59
+ const label = overrides?.labels?.[alias] ?? ALIAS_LABELS[alias];
60
+
61
+ if (label) {
62
+ return label;
63
+ }
64
+
65
+ const formatted = alias.replace(/_/g, " ");
66
+
67
+ return formatted.charAt(0).toUpperCase() + formatted.slice(1);
68
+ }
69
+
70
+ const nonEmptyString = (value: unknown): value is string =>
71
+ typeof value === "string" && value.length > 0;
72
+
73
+ /**
74
+ * Label the backend stated outright, if any. Distinct from
75
+ * {@link resolveButtonLabel} because an explicit label outranks the executor's
76
+ * action state, while the alias fallback does not.
77
+ */
78
+ export function resolveExplicitLabel(
79
+ button: EntryAction["button"]
80
+ ): string | undefined {
81
+ if (nonEmptyString(button?.title)) {
82
+ return button.title;
83
+ }
84
+
85
+ if (nonEmptyString(button?.label)) {
86
+ return button.label;
87
+ }
88
+
89
+ return undefined;
90
+ }
91
+
92
+ /** Label to show for an entry action: explicit title/label, else the alias. */
93
+ export function resolveButtonLabel(
94
+ button: EntryAction["button"],
95
+ overrides?: AliasPresentation
96
+ ): string {
97
+ const explicit = resolveExplicitLabel(button);
98
+
99
+ if (explicit) {
100
+ return explicit;
101
+ }
102
+
103
+ if (nonEmptyString(button?.alias)) {
104
+ return formatAliasLabel(button.alias, overrides);
105
+ }
106
+
107
+ return "";
108
+ }
109
+
110
+ /** Icon to show for an entry action: explicit iconURL, else the alias default. */
111
+ export function resolveButtonAsset(
112
+ button: EntryAction["button"],
113
+ overrides?: AliasPresentation
114
+ ): string | undefined {
115
+ if (button?.iconURL) {
116
+ return button.iconURL;
117
+ }
118
+
119
+ if (!button?.alias) {
120
+ return undefined;
121
+ }
122
+
123
+ return overrides?.assets?.[button.alias] ?? ALIAS_ASSETS[button.alias];
124
+ }