@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,25 @@
1
+ export {
2
+ canRenderActionIcon,
3
+ resolveActionAsset,
4
+ isActionAvailableFor,
5
+ observeEntryState,
6
+ uiActionsRegistry,
7
+ } from "./registry";
8
+
9
+ export type {
10
+ RegisteredAction,
11
+ RegisteredActionSource,
12
+ RegisteredActionValue,
13
+ RegistryChangeListener,
14
+ UIActionProvider,
15
+ } from "./registry";
16
+
17
+ export { usableActionItems } from "./usableActionItems";
18
+
19
+ export {
20
+ ENTRY_ACTIONS_IDENTIFIER,
21
+ parseActionIdentifiers,
22
+ resolveActionIdentifiers,
23
+ } from "./resolveActionIdentifiers";
24
+
25
+ export type { ResolveActionIdentifiersParams } from "./resolveActionIdentifiers";
@@ -0,0 +1,335 @@
1
+ /* eslint-disable no-dupe-class-members */
2
+ import type { ComponentType } from "react";
3
+ import { Observable } from "rxjs";
4
+ import { createLogger } from "../logger";
5
+
6
+ const { log_debug, log_warning } = createLogger({
7
+ subsystem: "UIActionsRegistry",
8
+ category: "ActionRegistration",
9
+ });
10
+
11
+ /**
12
+ * The runtime value of a UI action.
13
+ *
14
+ * This is the object that consumers interact with (render buttons for,
15
+ * invoke on press, read initial state from, etc.). It intentionally keeps an
16
+ * open shape (`[K: string]: any`) so that both the modern registry-based
17
+ * actions and the legacy context-provider based actions can be represented by
18
+ * the same structure.
19
+ */
20
+ export type RegisteredActionValue = {
21
+ state?: any;
22
+ getInitialState?: () => Promise<void>;
23
+ initialEntryState?: (item: ZappEntry | ZappFeed) => CellActionEntryState;
24
+ invokeAction: (
25
+ item: ZappEntry | ZappFeed,
26
+ options?: InvokeArgsOptions
27
+ ) => void;
28
+ isActionAvailable?: (item: ZappEntry | ZappFeed) => boolean;
29
+ addListener?: (
30
+ entryId: string,
31
+ listener: CellActionStateListenerFunction
32
+ ) => CellActionStateRemoveListenerFunction;
33
+ /**
34
+ * Optional RX stream of the action state for a given entry. When not
35
+ * provided, `observeEntryState` derives one from `initialEntryState` +
36
+ * `addListener` (see below).
37
+ */
38
+ observeEntryState?: (
39
+ entry: ZappEntry | ZappFeed
40
+ ) => Observable<CellActionEntryState>;
41
+ [K: string]: any;
42
+ };
43
+
44
+ /**
45
+ * Where an action came from.
46
+ *
47
+ * `"entry"` marks actions inflated from `entry.extensions.entry_action`, which
48
+ * exist only for the entry being shown. Consumers that rank actions - the
49
+ * player picks a non-entry action as the overflow companion when it can - read
50
+ * this instead of pattern-matching the identifier.
51
+ */
52
+ export type RegisteredActionSource = "entry";
53
+
54
+ export type RegisteredAction = {
55
+ identifier: string; // Plugin identifier or synthetic name
56
+ action: RegisteredActionValue;
57
+ source?: RegisteredActionSource;
58
+ };
59
+
60
+ /**
61
+ * A function that, given an optional context (currently just the `entry`),
62
+ * returns the list of actions it wants to contribute.
63
+ *
64
+ * Returning an array is what allows a single provider (plugin or otherwise) to
65
+ * expose more than one action, and to compute those actions based on the entry.
66
+ */
67
+ export type UIActionProvider = (params: {
68
+ entry?: ZappEntry | ZappFeed;
69
+ }) => RegisteredAction[];
70
+
71
+ /**
72
+ * Returns an RX `Observable` that emits the action state for `entry`.
73
+ *
74
+ * If the action already exposes its own `observeEntryState`, it is used as-is.
75
+ * Otherwise we build the stream from the legacy imperative API:
76
+ * - it immediately emits `initialEntryState(entry)` (if available), and
77
+ * - it subscribes to further changes via `addListener(entryId, listener)`,
78
+ * unsubscribing automatically when the observable is torn down.
79
+ *
80
+ * This lets every action - old or new - be consumed reactively through a single
81
+ * mechanism, without each consumer having to wire up `addListener` manually.
82
+ */
83
+ export function observeEntryState(
84
+ action: RegisteredActionValue | undefined,
85
+ entry: ZappEntry | ZappFeed
86
+ ): Observable<CellActionEntryState> {
87
+ if (typeof action?.observeEntryState === "function") {
88
+ return action.observeEntryState(entry);
89
+ }
90
+
91
+ return new Observable<CellActionEntryState>((subscriber) => {
92
+ const initialState = action?.initialEntryState?.(entry);
93
+
94
+ if (initialState !== undefined) {
95
+ subscriber.next(initialState);
96
+ }
97
+
98
+ const removeListener = action?.addListener?.(
99
+ String((entry as ZappEntry)?.id),
100
+ (state: CellActionEntryState) => subscriber.next(state)
101
+ );
102
+
103
+ return () => removeListener?.();
104
+ });
105
+ }
106
+
107
+ /** Called whenever a provider is added to or removed from the registry. */
108
+ export type RegistryChangeListener = () => void;
109
+
110
+ /**
111
+ * Whether an action wants to be shown for this entry.
112
+ *
113
+ * Plugins express this through one of three historical names; the first one
114
+ * they define answers, and an action that defines none is always shown. It
115
+ * lives here so that every surface - the player overlay, the bottom sheet, a
116
+ * cell - gives the same answer for the same action. Two surfaces disagreeing
117
+ * means an action the user can reach from one place and not another.
118
+ */
119
+ export function isActionAvailableFor(
120
+ action: RegisteredActionValue | undefined,
121
+ entry: ZappEntry | ZappFeed
122
+ ): boolean {
123
+ // The first name the action defines *as a function* answers. Nullish
124
+ // coalescing would let a plugin shipping one of these as a plain flag
125
+ // short-circuit the chain and mask a real predicate behind it.
126
+ const predicate = [
127
+ action?.isSupportDownloads,
128
+ action?.isActionSupported,
129
+ action?.isActionAvailable,
130
+ ].find((candidate) => typeof candidate === "function");
131
+
132
+ if (!predicate) {
133
+ return true;
134
+ }
135
+
136
+ try {
137
+ return Boolean(predicate(entry));
138
+ } catch (error) {
139
+ // Third-party code, called during render. Showing the action is the
140
+ // recoverable answer: a button that does nothing beats a screen that does
141
+ // not render.
142
+ log_warning(
143
+ "isActionAvailableFor: availability check threw - the action is shown",
144
+ { entryId: (entry as ZappEntry)?.id, error }
145
+ );
146
+
147
+ return true;
148
+ }
149
+ }
150
+
151
+ /** How an action's asset should be drawn, or `null` if it cannot be. */
152
+ export type ResolvedActionAsset =
153
+ | { uri: string }
154
+ | { Component: ComponentType<any> }
155
+ | null;
156
+
157
+ /**
158
+ * Interprets `CellActionEntryState["asset"]`.
159
+ *
160
+ * It is either something an image can take - a URI, or a per-flavour array -
161
+ * or a component that draws itself. A plain object is neither: a locale or
162
+ * state map arrives that way, and handing one to JSX throws "Element type is
163
+ * invalid".
164
+ *
165
+ * A React *element* carries the same `$$typeof` marker as a `memo`,
166
+ * `forwardRef` or `lazy` result, so `asset: <Icon/>` where `asset: Icon` was
167
+ * meant would pass a naive check and throw exactly that. Elements are told
168
+ * apart by carrying `props`.
169
+ *
170
+ * One function so that "can this draw?" and "draw it" cannot disagree.
171
+ */
172
+ export function resolveActionAsset(asset: unknown): ResolvedActionAsset {
173
+ if (typeof asset === "string") {
174
+ return asset.length > 0 ? { uri: asset } : null;
175
+ }
176
+
177
+ if (Array.isArray(asset)) {
178
+ const first = asset.find(
179
+ (candidate) => typeof candidate === "string" && candidate.length > 0
180
+ );
181
+
182
+ return first ? { uri: first as string } : null;
183
+ }
184
+
185
+ if (typeof asset === "function") {
186
+ return { Component: asset as ComponentType<any> };
187
+ }
188
+
189
+ if (
190
+ typeof asset === "object" &&
191
+ asset !== null &&
192
+ "$$typeof" in asset &&
193
+ !("props" in asset)
194
+ ) {
195
+ return { Component: asset as ComponentType<any> };
196
+ }
197
+
198
+ return null;
199
+ }
200
+
201
+ /**
202
+ * Whether the action has something an icon-only button can actually draw.
203
+ *
204
+ * An overlay button is an icon and nothing else, so an action whose state
205
+ * carries no usable asset renders as nothing at all - legal for an entry action
206
+ * declared with a title and no `iconURL`. Surfaces that must keep an action
207
+ * reachable ask this before putting it somewhere it can only appear as an icon.
208
+ */
209
+ export function canRenderActionIcon(
210
+ action: RegisteredActionValue | undefined,
211
+ entry: ZappEntry | ZappFeed
212
+ ): boolean {
213
+ try {
214
+ return resolveActionAsset(action?.initialEntryState?.(entry)?.asset) !== null; // prettier-ignore
215
+ } catch {
216
+ return false;
217
+ }
218
+ }
219
+
220
+ class UIActionsRegistry {
221
+ private registeredActions: Record<string, UIActionProvider> = {};
222
+
223
+ private changeListeners: RegistryChangeListener[] = [];
224
+
225
+ /**
226
+ * Subscribes to provider registrations and unregistrations.
227
+ *
228
+ * Providers can appear after the UI that wants them has already rendered -
229
+ * the audio player registers playback speed only once its controller has
230
+ * state - so consumers need to be told rather than poll for it.
231
+ *
232
+ * Returns an unsubscribe function.
233
+ */
234
+ subscribe(listener: RegistryChangeListener): () => void {
235
+ this.changeListeners.push(listener);
236
+
237
+ return () => {
238
+ this.changeListeners = this.changeListeners.filter(
239
+ (registered) => registered !== listener
240
+ );
241
+ };
242
+ }
243
+
244
+ private notifyChanged(): void {
245
+ // Copied so a listener that unsubscribes itself does not disturb this pass.
246
+ this.changeListeners.slice().forEach((listener) => listener());
247
+ }
248
+
249
+ /**
250
+ * Register a dynamic action provider under a unique `name`.
251
+ * The provider can return one or more actions and may use the passed `entry`.
252
+ * Returns an unregister function.
253
+ */
254
+ registerActionProvider(
255
+ name: string,
256
+ actionProvider: UIActionProvider
257
+ ): () => void {
258
+ const isOverride = Boolean(this.registeredActions[name]);
259
+
260
+ if (isOverride) {
261
+ log_warning(
262
+ `registerActionProvider: overriding existing provider for "${name}"`,
263
+ { name }
264
+ );
265
+ } else {
266
+ log_debug(`registerActionProvider: registered "${name}"`, { name });
267
+ }
268
+
269
+ this.registeredActions[name] = actionProvider;
270
+ this.notifyChanged();
271
+
272
+ return () => {
273
+ // Only remove if it's still the same provider to avoid races where a
274
+ // newer registration replaced this one.
275
+ if (this.registeredActions[name] === actionProvider) {
276
+ delete this.registeredActions[name];
277
+ log_debug(`registerActionProvider: unregistered "${name}"`, { name });
278
+ this.notifyChanged();
279
+ } else {
280
+ log_debug(
281
+ `registerActionProvider: skipped unregister for "${name}" – newer provider is active`,
282
+ { name }
283
+ );
284
+ }
285
+ };
286
+ }
287
+
288
+ /**
289
+ * Convenience helper to register a single, static action from anywhere in the
290
+ * app (it does not need to be a plugin). Returns an unregister function.
291
+ */
292
+ registerAction(
293
+ identifier: string,
294
+ action: RegisteredActionValue
295
+ ): () => void {
296
+ return this.registerActionProvider(identifier, () => [
297
+ { identifier, action },
298
+ ]);
299
+ }
300
+
301
+ getActions(name: string, entry?: ZappEntry | ZappFeed): RegisteredAction[] {
302
+ if (!this.registeredActions[name]) {
303
+ // Not necessarily a misconfiguration: consumers legitimately probe for
304
+ // providers that register late - the audio player asks for its own
305
+ // playback-speed action before the controller has state. Only the layer
306
+ // that knows the identifier was *configured* can call this a fault, so
307
+ // `resolveActionIdentifiers` is where that warning lives.
308
+ log_debug(`getActions: no provider registered for "${name}"`, { name });
309
+
310
+ return [];
311
+ }
312
+
313
+ // Resolution runs on every render of every surface that shows actions, so
314
+ // there is deliberately no log of the resolved list here.
315
+ return this.registeredActions[name]({ entry }) ?? [];
316
+ }
317
+
318
+ /**
319
+ * Returns the runtime value of the first action registered under `name`, or
320
+ * `undefined`. This mirrors the shape returned by the legacy `useActions`
321
+ * hook, easing migration of single-action consumers.
322
+ */
323
+ getAction(
324
+ name: string,
325
+ entry?: ZappEntry | ZappFeed
326
+ ): RegisteredActionValue | undefined {
327
+ return this.getActions(name, entry)[0]?.action;
328
+ }
329
+
330
+ hasAction(name: string): boolean {
331
+ return Boolean(this.registeredActions[name]);
332
+ }
333
+ }
334
+
335
+ export const uiActionsRegistry = new UIActionsRegistry();
@@ -0,0 +1,100 @@
1
+ import { createLogger } from "../logger";
2
+
3
+ import { RegisteredAction, uiActionsRegistry } from "./registry";
4
+
5
+ const { log_warning } = createLogger({
6
+ subsystem: "UIActionsRegistry",
7
+ category: "ActionRegistration",
8
+ });
9
+
10
+ /** Identifier that stands for "whatever this entry declares", not a provider. */
11
+ export const ENTRY_ACTIONS_IDENTIFIER = "entry_actions";
12
+
13
+ export type ResolveActionIdentifiersParams = {
14
+ identifiers: string | string[];
15
+ entry: ZappEntry | ZappFeed;
16
+ /**
17
+ * Expands the `entry_actions` token.
18
+ *
19
+ * The registry maps an identifier to a provider, which is the right shape for
20
+ * a plugin: one installation, one implementation, looked up by id. Entry
21
+ * actions are not that - they are data on the entry being shown, and their
22
+ * execution context belongs to whoever is showing it. So the caller expands
23
+ * them, rather than the registry holding one global provider whose context
24
+ * was captured wherever it happened to be registered.
25
+ */
26
+ expandEntryActions?: (entry: ZappEntry | ZappFeed) => RegisteredAction[];
27
+ };
28
+
29
+ /**
30
+ * Identifiers already reported as having no provider.
31
+ *
32
+ * Resolution runs on every render of every surface that shows actions, so one
33
+ * uninstalled plugin would otherwise repeat its warning forever. An identifier
34
+ * is forgotten again as soon as it does resolve, so a provider that appears
35
+ * late and later disappears is still reported.
36
+ */
37
+ const reportedMissingProviders = new Set<string>();
38
+
39
+ export function parseActionIdentifiers(
40
+ config?: string | string[] | null
41
+ ): string[] {
42
+ // Deliberately not using the `utils` barrel: this module sits underneath the
43
+ // registry, and pulling that barrel in creates an import cycle.
44
+ if (config === null || config === undefined) {
45
+ return [];
46
+ }
47
+
48
+ return (Array.isArray(config) ? config : config.split(","))
49
+ .map((identifier) => identifier.trim())
50
+ .filter(Boolean);
51
+ }
52
+
53
+ /**
54
+ * Resolves a *configured* list of action identifiers against the registry.
55
+ *
56
+ * Everything reaching this function was typed into an app configuration
57
+ * (`player_action_buttons`, `modal_bottom_sheet_actions`), so an identifier
58
+ * with no provider at all means a button the app was configured to show will
59
+ * not appear - a typo, or a plugin that is not installed. A provider that runs
60
+ * and returns nothing is a different matter: that is the action opting out for
61
+ * this entry, which is expected and stays silent.
62
+ */
63
+ export function resolveActionIdentifiers({
64
+ identifiers,
65
+ entry,
66
+ expandEntryActions,
67
+ }: ResolveActionIdentifiersParams): RegisteredAction[] {
68
+ return parseActionIdentifiers(identifiers).flatMap((identifier) => {
69
+ if (identifier === ENTRY_ACTIONS_IDENTIFIER) {
70
+ if (expandEntryActions) {
71
+ return expandEntryActions(entry);
72
+ }
73
+
74
+ log_warning(
75
+ `resolveActionIdentifiers: "${ENTRY_ACTIONS_IDENTIFIER}" is configured but this caller cannot expand it - the entry's own actions will not be shown`,
76
+ { entryId: (entry as ZappEntry)?.id }
77
+ );
78
+
79
+ return [];
80
+ }
81
+
82
+ const actions = uiActionsRegistry.getActions(identifier, entry);
83
+
84
+ // `hasAction` is only read to decide what to say; resolution itself is
85
+ // unchanged, so an identifier with no provider still resolves to nothing
86
+ // exactly as before.
87
+ if (uiActionsRegistry.hasAction(identifier)) {
88
+ reportedMissingProviders.delete(identifier);
89
+ } else if (!reportedMissingProviders.has(identifier)) {
90
+ reportedMissingProviders.add(identifier);
91
+
92
+ log_warning(
93
+ `resolveActionIdentifiers: configured action "${identifier}" has no registered provider - its button will not be shown`,
94
+ { identifier, entryId: (entry as ZappEntry)?.id }
95
+ );
96
+ }
97
+
98
+ return actions;
99
+ });
100
+ }
@@ -0,0 +1,66 @@
1
+ import { createLogger } from "../logger";
2
+
3
+ import { RegisteredAction } from "./registry";
4
+
5
+ const { log_warning } = createLogger({
6
+ subsystem: "UIActionsRegistry",
7
+ category: "ActionRegistration",
8
+ });
9
+
10
+ /**
11
+ * Identifiers already reported as unusable. This runs on every render of the
12
+ * player overlay, so the warning is emitted once per identifier and forgotten
13
+ * again as soon as that action becomes invokable.
14
+ */
15
+ const reportedUnusable = new Set<string>();
16
+
17
+ function isInvokableAction(
18
+ item: RegisteredAction | undefined
19
+ ): item is RegisteredAction {
20
+ return typeof item?.action?.invokeAction === "function";
21
+ }
22
+
23
+ /**
24
+ * Narrows a resolved action list to what can actually be shown and invoked:
25
+ * anything without a usable `invokeAction` is dropped, and a repeated
26
+ * identifier keeps only its first occurrence. Order is preserved.
27
+ *
28
+ * Both the player overflow and the bottom sheet plugin build their list this
29
+ * way, and the player resolver applies it to `player_action_buttons` too - a
30
+ * hand-typed config string can name the same action twice.
31
+ */
32
+ export function usableActionItems(
33
+ items: RegisteredAction[]
34
+ ): RegisteredAction[] {
35
+ const seen = new Set<string>();
36
+ const result: RegisteredAction[] = [];
37
+
38
+ for (const item of items ?? []) {
39
+ const identifier = item?.identifier;
40
+
41
+ // A duplicate is expected - a config string may name the same action twice
42
+ // - and an action with no identifier cannot be named in a log anyway.
43
+ if (!identifier || seen.has(identifier)) {
44
+ continue;
45
+ }
46
+
47
+ if (!isInvokableAction(item)) {
48
+ if (!reportedUnusable.has(identifier)) {
49
+ reportedUnusable.add(identifier);
50
+
51
+ log_warning(
52
+ `usableActionItems: dropping action "${identifier}" - its provider returned no invokeAction, so it cannot be shown`,
53
+ { identifier }
54
+ );
55
+ }
56
+
57
+ continue;
58
+ }
59
+
60
+ reportedUnusable.delete(identifier);
61
+ seen.add(identifier);
62
+ result.push(item);
63
+ }
64
+
65
+ return result;
66
+ }
@@ -0,0 +1,146 @@
1
+ import {
2
+ batchSaveOwnedValues,
3
+ batchRemoveOwnedValues,
4
+ } from "../localStorageHelper";
5
+ import { localStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/LocalStorage";
6
+
7
+ // Mock localStorage
8
+ jest.mock(
9
+ "@applicaster/zapp-react-native-bridge/ZappStorage/LocalStorage",
10
+ () => ({
11
+ localStorage: {
12
+ getItem: jest.fn(),
13
+ setItem: jest.fn(),
14
+ removeItem: jest.fn(),
15
+ },
16
+ })
17
+ );
18
+
19
+ describe("localStorageHelper", () => {
20
+ const ownershipKey = "test_ownership_key";
21
+ const ownershipNamespace = "test_namespace";
22
+
23
+ beforeEach(() => {
24
+ jest.clearAllMocks();
25
+ });
26
+
27
+ describe("addOwnedKeys via batchSaveOwnedValues", () => {
28
+ it("should add new keys to existing owned keys", async () => {
29
+ // Setup existing keys in storage
30
+ const existingKeys = {
31
+ namespace1: ["key1"],
32
+ };
33
+
34
+ (localStorage.getItem as jest.Mock).mockResolvedValue(
35
+ JSON.stringify(existingKeys)
36
+ );
37
+
38
+ const newValues = {
39
+ namespace1: { key2: "value2" },
40
+ namespace2: { key3: "value3" },
41
+ };
42
+
43
+ await batchSaveOwnedValues({
44
+ storageValues: newValues,
45
+ ownershipKey,
46
+ ownershipNamespace,
47
+ });
48
+
49
+ // Verify localStorage.setItem was called with correct updated keys
50
+ // Note: order of keys in array might vary depending on Set implementation, but usually insertion order
51
+ // However, to be safe, we can parse the argument and check contents
52
+
53
+ const lastCall = (localStorage.setItem as jest.Mock).mock.calls.find(
54
+ (call) => call[0] === ownershipKey
55
+ );
56
+
57
+ expect(lastCall).toBeDefined();
58
+ const savedData = JSON.parse(lastCall[1]);
59
+
60
+ expect(savedData.namespace1).toContain("key1");
61
+ expect(savedData.namespace1).toContain("key2");
62
+ expect(savedData.namespace2).toContain("key3");
63
+ });
64
+
65
+ it("should handle empty existing keys", async () => {
66
+ (localStorage.getItem as jest.Mock).mockResolvedValue(null);
67
+
68
+ const newValues = {
69
+ namespace1: { key1: "value1" },
70
+ };
71
+
72
+ await batchSaveOwnedValues({
73
+ storageValues: newValues,
74
+ ownershipKey,
75
+ ownershipNamespace,
76
+ });
77
+
78
+ const lastCall = (localStorage.setItem as jest.Mock).mock.calls.find(
79
+ (call) => call[0] === ownershipKey
80
+ );
81
+
82
+ expect(lastCall).toBeDefined();
83
+ const savedData = JSON.parse(lastCall[1]);
84
+
85
+ expect(savedData.namespace1).toEqual(["key1"]);
86
+ });
87
+ });
88
+
89
+ describe("removeOwnedKeys via batchRemoveOwnedValues", () => {
90
+ it("should remove keys from owned keys", async () => {
91
+ const existingKeys = {
92
+ namespace1: ["key1", "key2"],
93
+ namespace2: ["key3"],
94
+ };
95
+
96
+ (localStorage.getItem as jest.Mock).mockResolvedValue(
97
+ JSON.stringify(existingKeys)
98
+ );
99
+
100
+ const keysToRemove = {
101
+ namespace1: ["key1"],
102
+ };
103
+
104
+ await batchRemoveOwnedValues({
105
+ storageValues: keysToRemove,
106
+ ownershipKey,
107
+ ownershipNamespace,
108
+ });
109
+
110
+ const lastCall = (localStorage.setItem as jest.Mock).mock.calls.find(
111
+ (call) => call[0] === ownershipKey
112
+ );
113
+
114
+ expect(lastCall).toBeDefined();
115
+ const savedData = JSON.parse(lastCall[1]);
116
+
117
+ expect(savedData.namespace1).toEqual(["key2"]);
118
+ expect(savedData.namespace2).toEqual(["key3"]);
119
+ });
120
+
121
+ it("should remove namespace if all keys removed", async () => {
122
+ const existingKeys = {
123
+ namespace1: ["key1"],
124
+ };
125
+
126
+ (localStorage.getItem as jest.Mock).mockResolvedValue(
127
+ JSON.stringify(existingKeys)
128
+ );
129
+
130
+ const keysToRemove = {
131
+ namespace1: ["key1"],
132
+ };
133
+
134
+ await batchRemoveOwnedValues({
135
+ storageValues: keysToRemove,
136
+ ownershipKey,
137
+ ownershipNamespace,
138
+ });
139
+
140
+ expect(localStorage.removeItem).toHaveBeenCalledWith(
141
+ ownershipKey,
142
+ ownershipNamespace
143
+ );
144
+ });
145
+ });
146
+ });