@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
@@ -1,9 +1,22 @@
1
1
  import * as R from "ramda";
2
- import { BehaviorSubject } from "rxjs";
2
+ import { BehaviorSubject, Observable } from "rxjs";
3
+ import { distinctUntilChanged } from "rxjs/operators";
3
4
  import { isEmptyOrNil } from "@applicaster/zapp-react-native-utils/cellUtils";
4
5
  import { createLogger, utilsLogger } from "../../logger";
5
- import { getBoolFromConfigValue } from "../../configurationUtils";
6
- import { PlayerRole, SharedPlayerCallBacksKeys } from "./conts";
6
+ import {
7
+ getBoolFromConfigValue,
8
+ imageSrcFromMediaItem,
9
+ } from "../../configurationUtils";
10
+ // Imported from the leaf modules rather than the `playerUtils` barrel: that
11
+ // barrel imports `playerManager`, so going through it would create a require
12
+ // cycle (playerManager/index -> player -> playerUtils/index -> playerManager).
13
+ import {
14
+ resolvePlayerTitleSubtitle,
15
+ getPlayerContentDataKeys,
16
+ } from "../../playerUtils/resolvePlayerTitleSubtitle";
17
+ import { isAudioItem } from "../../playerUtils/isAudioItem";
18
+ import { isTV } from "../../reactUtils";
19
+ import { PlayerRole, SharedPlayerCallBacksKeys } from "./const";
7
20
  import { OverlaysObserver } from "./OverlayObserver/OverlaysObserver";
8
21
  import { TVSeekController } from "../../reactHooks/player/TVSeekControlller/TVSeekController";
9
22
 
@@ -19,6 +32,23 @@ export declare type PlayerControllerListenerData = {
19
32
  id: string;
20
33
  listener: QuickBrickPlayer.SharedPlayerCallBacks;
21
34
  };
35
+
36
+ /**
37
+ * The player's resolved Title/Subtitle text, published by the player the same
38
+ * way duration and progress are. Consumers render these values as-is rather
39
+ * than reading `entry` or the plugin configuration themselves.
40
+ */
41
+ export type PlayerContent = {
42
+ title: Option<string | number>;
43
+ summary: Option<string | number>;
44
+ /**
45
+ * Cover art for the content currently playing. Published alongside the text
46
+ * (rather than read from `entry` by whoever needs it) so it follows the same
47
+ * entry: on live audio that means the programme's own artwork, refreshed
48
+ * with every feed poll, instead of the channel's.
49
+ */
50
+ imageUrl: Option<string>;
51
+ };
22
52
  /**
23
53
  * Player Instance Controller
24
54
  * Instance exposes utility methods that will help set or get state
@@ -45,6 +75,7 @@ export class Player {
45
75
  readonly playerRole: PlayerRole = PlayerRole.Unspecified;
46
76
  private overlaysObserver?: OverlaysObserver | null;
47
77
  private entryObservable?: BehaviorSubject<ZappEntry> | null;
78
+ private contentSubject?: BehaviorSubject<PlayerContent> | null;
48
79
 
49
80
  protected listeners: {
50
81
  [key: string]: QuickBrickPlayer.SharedPlayerCallBacks;
@@ -58,7 +89,17 @@ export class Player {
58
89
 
59
90
  set entry(newEntry: ZappEntry | null) {
60
91
  this._entry = newEntry;
92
+ // The live entry is scoped to the entry it overlays - see
93
+ // `OverlaysObserver.clearLiveEntry`. No-op when there is no observer,
94
+ // which is every non-live player.
95
+ this.overlaysObserver?.clearLiveEntry();
61
96
  this.entryObservable?.next(newEntry);
97
+ // Optional chaining short-circuits the whole call expression, so
98
+ // `getContent()` is NOT evaluated while no subscriber exists. That
99
+ // matters: `PlayerNative` assigns `this.entry` in its constructor, before
100
+ // subclass arrow-function properties such as `getPluginConfiguration`
101
+ // have been assigned.
102
+ this.contentSubject?.next(this.getContent());
62
103
  }
63
104
 
64
105
  constructor(props) {
@@ -117,6 +158,77 @@ export class Player {
117
158
  return this.entryObservable;
118
159
  };
119
160
 
161
+ /**
162
+ * The player's resolved Title/Subtitle.
163
+ *
164
+ * Resolved on demand rather than cached: the plugin configuration arrives
165
+ * asynchronously on both the native and cast paths, so a value computed once
166
+ * at entry-set time would be stale for whichever arrives first.
167
+ *
168
+ * Every fallback (no config, empty/whitespace key, unresolvable key, key
169
+ * resolving to an empty string or to a non-string/non-number) lives in
170
+ * `resolvePlayerContentText` and is never reimplemented here.
171
+ */
172
+ getContent = (): PlayerContent => {
173
+ // Live audio keeps playing one channel while the programme on air
174
+ // changes, so the observer's freshly-loaded programme entry wins when
175
+ // there is one. Read through `?.` so this never constructs an observer:
176
+ // a VOD or cast player has none and falls straight through to its entry.
177
+ const entry = this.overlaysObserver?.liveEntry ?? this.entry;
178
+
179
+ return {
180
+ ...resolvePlayerTitleSubtitle({
181
+ entry,
182
+ pluginConfiguration: this.getPluginConfiguration(),
183
+ dataKeys: getPlayerContentDataKeys({
184
+ isTV: isTV(),
185
+ isAudioContent: isAudioItem(entry),
186
+ }),
187
+ }),
188
+ // Same selection Android's `EntryHelpers.extractCoverImage` makes:
189
+ // prefer the `image_base` media item, otherwise the first one available.
190
+ // Reused rather than reimplemented so the two platforms cannot drift.
191
+ imageUrl: entry ? imageSrcFromMediaItem(entry, []) : undefined,
192
+ };
193
+ };
194
+
195
+ /**
196
+ * Created lazily, like `entryObservable`. An eagerly created subject would
197
+ * resolve during `PlayerNative`'s constructor and call a not-yet-assigned
198
+ * `getPluginConfiguration`.
199
+ *
200
+ * The seed is produced by calling the resolver, never from raw entry fields:
201
+ * a `BehaviorSubject` replays its seed synchronously on subscribe, so a raw
202
+ * seed would overwrite correctly-resolved text at mount.
203
+ */
204
+ getContentObservable = (): Observable<PlayerContent> => {
205
+ if (!this.contentSubject) {
206
+ this.contentSubject = new BehaviorSubject<PlayerContent>(
207
+ this.getContent()
208
+ );
209
+ }
210
+
211
+ return this.contentSubject.asObservable().pipe(
212
+ // `resolvePlayerTitleSubtitle` returns a fresh object every call, so
213
+ // reference equality would never dedupe. Compare by value.
214
+ distinctUntilChanged(
215
+ (previous, next) =>
216
+ previous.title === next.title &&
217
+ previous.summary === next.summary &&
218
+ previous.imageUrl === next.imageUrl
219
+ )
220
+ );
221
+ };
222
+
223
+ /**
224
+ * Re-resolves and publishes the current content. Called when something the
225
+ * resolution depends on changed without `entry` itself being reassigned -
226
+ * today that is the observer swapping in a newly-loaded live programme.
227
+ */
228
+ publishContent = () => {
229
+ this.contentSubject?.next(this.getContent());
230
+ };
231
+
120
232
  /**
121
233
  * ---------------------------------------- PLAYER SETTERS GETTERS ----------------------------------------
122
234
  * These methods let you get information about the content / ad playing
@@ -1,7 +1,7 @@
1
1
  import { appStore } from "@applicaster/zapp-react-native-redux/AppStore";
2
2
  import { findPluginByIdentifier } from "@applicaster/zapp-react-native-utils/pluginUtils";
3
3
  import { Player } from "./player";
4
- import { PlayerRole } from "./conts";
4
+ import { PlayerRole } from "./const";
5
5
 
6
6
  type PlayerFactoryItem = {
7
7
  Component: any;
@@ -3,7 +3,7 @@ import { isEmptyOrNil } from "@applicaster/zapp-react-native-utils/cellUtils";
3
3
  import { createLogger, utilsLogger } from "../../logger";
4
4
  import { Player } from "./player";
5
5
  import { findNodeHandle } from "react-native";
6
- import { PlayerRole } from "./conts";
6
+ import { PlayerRole } from "./const";
7
7
  import { toBooleanWithDefaultFalse } from "../../booleanUtils";
8
8
  import { RNPlayerManager } from "./nativePlayerManager";
9
9
 
@@ -296,9 +296,11 @@ export class PlayerNative extends Player {
296
296
  }, listeners);
297
297
  };
298
298
 
299
- isAudioItem = () =>
300
- this.getEntry()?.content?.type?.includes?.("audio") ||
301
- this.getEntry()?.type?.value === "audio";
299
+ isAudioItem = (): boolean =>
300
+ Boolean(
301
+ this.getEntry()?.content?.type?.includes?.("audio") ||
302
+ this.getEntry()?.type?.value?.includes?.("audio")
303
+ );
302
304
 
303
305
  isFullScreenSupported = (): boolean => {
304
306
  const config = this.getConfig();
@@ -0,0 +1,43 @@
1
+ import * as React from "react";
2
+ import { Player, PlayerContent } from "./player";
3
+ import { usePlayer } from "./usePlayer";
4
+
5
+ const EMPTY_CONTENT: PlayerContent = {
6
+ title: null,
7
+ summary: null,
8
+ imageUrl: null,
9
+ };
10
+
11
+ /**
12
+ * Subscribes to the player's resolved Title/Subtitle, the same way
13
+ * `usePlayerState` subscribes to playback state. Modeled on that hook
14
+ * deliberately: one React bridge pattern for everything the manager publishes.
15
+ *
16
+ * Passing no `playerId` uses the active player, which is the right default -
17
+ * only one player instance is live at a time. `usePlayer` additionally swaps
18
+ * to the casting receiver while casting, so this follows cast handover
19
+ * automatically.
20
+ */
21
+ export const usePlayerContent = (playerId?: string): PlayerContent => {
22
+ const player: Player = usePlayer(playerId);
23
+
24
+ const [content, setContent] = React.useState<PlayerContent>(
25
+ () => player?.getContent() ?? EMPTY_CONTENT
26
+ );
27
+
28
+ React.useEffect(() => {
29
+ if (!player) {
30
+ setContent(EMPTY_CONTENT);
31
+
32
+ return;
33
+ }
34
+
35
+ const subscription = player
36
+ .getContentObservable()
37
+ .subscribe((next) => setContent(next));
38
+
39
+ return () => subscription.unsubscribe();
40
+ }, [player]);
41
+
42
+ return content;
43
+ };
@@ -3,7 +3,7 @@ import { useConfiguration } from "../../reactHooks/useConfiguration";
3
3
  import { useEffect } from "react";
4
4
  import { playerManager } from "./index";
5
5
  import { useValidatePlayerConfig } from "../../playerUtils/useValidatePlayerConfig";
6
- import { PlayerRole } from "./conts";
6
+ import { PlayerRole } from "./const";
7
7
  import { isAppleTV } from "@applicaster/zapp-react-native-ui-components/Helpers/Platform";
8
8
  import { TVSeekController } from "../../reactHooks/player/TVSeekControlller/TVSeekController";
9
9
  import { KeyInputHandler } from "../keyInputHandler/KeyInputHandler";
@@ -1,7 +1,7 @@
1
1
  import { localStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/LocalStorage";
2
2
  import { sessionStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/SessionStorage";
3
3
  import { createLogger, utilsLogger } from "../../logger";
4
- import { userPreferencesNamespace } from "./conts";
4
+ import { userPreferencesNamespace } from "./const";
5
5
 
6
6
  export const preferredAudioLanguageStorageKey = "preferred_audio_language";
7
7
 
@@ -21,4 +21,12 @@ describe("anyTruthy", () => {
21
21
  expect(anyTruthy([true])).toBe(true);
22
22
  expect(anyTruthy([false])).toBe(false);
23
23
  });
24
+
25
+ it("should return true when the first value is true", () => {
26
+ expect(anyTruthy([true, false, false])).toBe(true);
27
+ });
28
+
29
+ it("should return true when only the last value is true", () => {
30
+ expect(anyTruthy([false, false, true])).toBe(true);
31
+ });
24
32
  });
@@ -28,6 +28,30 @@ describe("shiftArray", () => {
28
28
  expect(shiftArray(negativeOffset, array)).toMatchSnapshot();
29
29
  expect(shiftArray(2 * negativeOffset, array)).toMatchSnapshot();
30
30
  });
31
+
32
+ it("returns a new array and does not mutate the original", () => {
33
+ const original = ["a", "b", "c"];
34
+ const result = shiftArray(1, original);
35
+
36
+ expect(result).toEqual(["b", "c", "a"]);
37
+ expect(result).not.toBe(original);
38
+ expect(original).toEqual(["a", "b", "c"]);
39
+ });
40
+
41
+ it("returns an empty array when shifting an empty array", () => {
42
+ expect(shiftArray(1, [])).toEqual([]);
43
+ expect(shiftArray(-1, [])).toEqual([]);
44
+ });
45
+
46
+ it("returns the same order for a single-element array", () => {
47
+ expect(shiftArray(1, [1])).toEqual([1]);
48
+ expect(shiftArray(-1, [1])).toEqual([1]);
49
+ });
50
+
51
+ it("handles an offset equal to the array length", () => {
52
+ expect(shiftArray(4, array)).toEqual(array);
53
+ expect(shiftArray(-4, array)).toEqual(array);
54
+ });
31
55
  });
32
56
 
33
57
  describe("removeItemFromList", () => {
@@ -58,6 +82,38 @@ describe("removeItemFromList", () => {
58
82
  arrayOfObjects
59
83
  );
60
84
  });
85
+
86
+ it("returns the same reference when the item is not found", () => {
87
+ const list = [1, 2, 3];
88
+
89
+ expect(removeItemFromList(4, list)).toBe(list);
90
+ });
91
+
92
+ it("returns a new array when the item is removed", () => {
93
+ const list = [1, 2, 3];
94
+ const result = removeItemFromList(2, list);
95
+
96
+ expect(result).toEqual([1, 3]);
97
+ expect(result).not.toBe(list);
98
+ expect(list).toEqual([1, 2, 3]);
99
+ });
100
+
101
+ it("removes only the first occurrence of a duplicate item", () => {
102
+ expect(removeItemFromList(2, [1, 2, 2, 3])).toEqual([1, 2, 3]);
103
+ });
104
+
105
+ it("removes the first and last items", () => {
106
+ expect(removeItemFromList(1, [1, 2, 3])).toEqual([2, 3]);
107
+ expect(removeItemFromList(3, [1, 2, 3])).toEqual([1, 2]);
108
+ });
109
+
110
+ it("returns an empty list when removing from an empty list", () => {
111
+ expect(removeItemFromList(1, [])).toEqual([]);
112
+ });
113
+
114
+ it("returns an empty list when removing the only item", () => {
115
+ expect(removeItemFromList(1, [1])).toEqual([]);
116
+ });
61
117
  });
62
118
 
63
119
  describe("mapPromises", () => {
@@ -84,145 +140,146 @@ describe("mapPromises", () => {
84
140
  values.forEach((value) => {
85
141
  expect(promiseFn).toHaveBeenNthCalledWith(value, value, value - 1);
86
142
  });
87
- });
88
143
 
89
- describe("removeItemFromList", () => {
90
- it("removes an item from a list", () => {
91
- const arrayOfPrimitives = [1, 2, 3, 4];
92
- expect(removeItemFromList(1, arrayOfPrimitives)).toEqual([2, 3, 4]);
144
+ expect.assertions(values.length + 1);
145
+ });
93
146
 
94
- const arrayOfObjects = [
95
- { prop: "value1" },
96
- { prop: "value2" },
97
- { prop: "value3" },
98
- ];
147
+ it("resolves to an empty array for an empty input", async () => {
148
+ await expect(mapPromises(promiseFn, [])).resolves.toEqual([]);
149
+ expect(promiseFn).not.toHaveBeenCalled();
150
+ });
99
151
 
100
- expect(removeItemFromList({ prop: "value2" }, arrayOfObjects)).toEqual([
101
- { prop: "value1" },
102
- { prop: "value3" },
103
- ]);
104
- });
152
+ it("rejects when any promise rejects", async () => {
153
+ const failingFn = jest.fn((num) =>
154
+ num === 2 ? Promise.reject(new Error("fail")) : Promise.resolve(num)
155
+ );
105
156
 
106
- it("leaves the list as is if the item is not found", () => {
107
- const arrayOfObjects = [
108
- { prop: "value1" },
109
- { prop: "value2" },
110
- { prop: "value3" },
111
- ];
157
+ await expect(mapPromises(failingFn, [1, 2, 3])).rejects.toThrow("fail");
158
+ });
159
+ });
112
160
 
113
- expect(removeItemFromList({ prop: "value4" }, arrayOfObjects)).toEqual(
114
- arrayOfObjects
115
- );
161
+ describe("reducePromises", () => {
162
+ const promiseFn = jest.fn((current, previous, index, cb) => {
163
+ return new Promise((resolve) => {
164
+ setTimeout(() => {
165
+ resolve(previous + current);
166
+ cb?.(index);
167
+ }, 1);
116
168
  });
117
169
  });
118
170
 
119
- describe("mapPromises", () => {
120
- const promiseFn = jest.fn((num) => Promise.resolve(num + 1));
171
+ beforeEach(() => {
172
+ promiseFn.mockClear();
173
+ });
121
174
 
122
- beforeEach(() => {
123
- promiseFn.mockClear();
124
- });
175
+ it("is a curried function; and returns the reduced promise values", async () => {
176
+ const promiseReducer = reducePromises(promiseFn);
125
177
 
126
- it("is a curried function, and returns an array of resolved values", async () => {
127
- const promiseMapper = mapPromises(promiseFn);
128
- const values = [1, 2, 3];
178
+ const initialValue = 0;
179
+ const values = [1, 2, 3];
180
+ const sumOfValues = initialValue + values.reduce((a, b) => a + b, 0);
129
181
 
130
- expect(typeof promiseMapper).toBe("function");
131
- await expect(promiseMapper(values)).resolves.toEqual([2, 3, 4]);
132
- });
182
+ expect(typeof promiseReducer).toBe("function");
133
183
 
134
- it("calls all the promises immediately", () => {
135
- const values = [1, 2, 3];
184
+ await expect(promiseReducer(initialValue, values)).resolves.toEqual(
185
+ sumOfValues
186
+ );
187
+ });
136
188
 
137
- mapPromises(promiseFn, values);
138
- expect(promiseFn).toHaveBeenCalledTimes(values.length);
189
+ it("calls promises one after the other", (done) => {
190
+ const values = [1, 2, 3];
191
+ const previousValues = [0, 1, 3];
192
+
193
+ reducePromises(
194
+ (current, previous, index) =>
195
+ promiseFn(current, previous, index, (index) => {
196
+ expect(promiseFn).toHaveBeenCalledTimes(index + 1);
197
+
198
+ expect(promiseFn).toHaveBeenNthCalledWith(
199
+ index + 1,
200
+ values[index],
201
+ previousValues[index],
202
+ index,
203
+ expect.any(Function)
204
+ );
205
+
206
+ if (index === 2) done();
207
+ }),
208
+ 0,
209
+ values
210
+ );
139
211
 
140
- values.forEach((value) => {
141
- expect(promiseFn).toHaveBeenNthCalledWith(value, value, value - 1);
142
- });
212
+ expect.assertions(values.length * 2);
213
+ });
143
214
 
144
- expect.assertions(values.length + 1);
145
- });
215
+ it("returns the initial value for an empty list", async () => {
216
+ await expect(reducePromises(promiseFn, 10, [])).resolves.toBe(10);
217
+ expect(promiseFn).not.toHaveBeenCalled();
146
218
  });
147
219
 
148
- describe("reduce promises", () => {
149
- const promiseFn = jest.fn((current, previous, index, cb) => {
150
- return new Promise((resolve) => {
151
- setTimeout(() => {
152
- resolve(previous + current);
153
- cb?.(index);
154
- }, 1);
155
- });
156
- });
220
+ it("reduces a single-element list", async () => {
221
+ await expect(reducePromises(promiseFn, 5, [2])).resolves.toBe(7);
222
+ });
157
223
 
158
- beforeEach(() => {
159
- promiseFn.mockClear();
224
+ it("rejects when a promise rejects", async () => {
225
+ const failingFn = jest.fn(async (current, previous) => {
226
+ if (current === 2) throw new Error("reduce fail");
227
+
228
+ return previous + current;
160
229
  });
161
230
 
162
- it("is a curried function; and returns the reduced promise values", async () => {
163
- const promiseReducer = reducePromises(promiseFn);
231
+ await expect(reducePromises(failingFn, 0, [1, 2, 3])).rejects.toThrow(
232
+ "reduce fail"
233
+ );
234
+ });
235
+ });
236
+
237
+ describe("mapAndSplit", () => {
238
+ it("maps over a list of values and split it in chunks", () => {
239
+ const values = new Array(20).fill(0).map((_, i) => i);
240
+
241
+ const alphabet = Array.from(Array(26)).map((_, i) =>
242
+ String.fromCharCode(i + 65)
243
+ );
164
244
 
165
- const initialValue = 0;
166
- const values = [1, 2, 3];
167
- const sumOfValues = initialValue + values.reduce((a, b) => a + b, 0);
245
+ const getLetterForInt = (num) => alphabet[num];
246
+ const chunkSize = 5;
168
247
 
169
- expect(typeof promiseReducer).toBe("function");
248
+ const result = mapAndSplit<number, string>(
249
+ getLetterForInt,
250
+ chunkSize
251
+ )(values);
170
252
 
171
- await expect(promiseReducer(initialValue, values)).resolves.toEqual(
172
- sumOfValues
173
- );
174
- });
253
+ expect(result.length).toBe(values.length / chunkSize);
175
254
 
176
- it("calls promises one after the other", (done) => {
177
- const values = [1, 2, 3];
178
- const previousValues = [0, 1, 3];
179
-
180
- reducePromises(
181
- (current, previous, index) =>
182
- promiseFn(current, previous, index, (index) => {
183
- expect(promiseFn).toHaveBeenCalledTimes(index + 1);
184
-
185
- expect(promiseFn).toHaveBeenNthCalledWith(
186
- index + 1,
187
- values[index],
188
- previousValues[index],
189
- index,
190
- expect.any(Function)
191
- );
192
-
193
- if (index === 2) done();
194
- }),
195
- 0,
196
- values
197
- );
198
-
199
- expect.assertions(values.length * 2);
255
+ result.forEach((chunk, chunkIndex) => {
256
+ chunk.forEach((value, index) => {
257
+ expect(value).toBe(alphabet[chunkIndex * chunkSize + index]);
258
+ });
200
259
  });
201
260
  });
202
261
 
203
- describe("mapAndSplit", () => {
204
- it("maps over a list of values and split it in chunks", () => {
205
- const values = new Array(20).fill(0).map((_, i) => i);
262
+ it("is a curried function", () => {
263
+ const mapper = (n: number) => n * 2;
264
+ const splitBy2 = mapAndSplit(mapper, 2);
206
265
 
207
- const alphabet = Array.from(Array(26)).map((_, i) =>
208
- String.fromCharCode(i + 65)
209
- );
266
+ expect(typeof splitBy2).toBe("function");
210
267
 
211
- const getLetterForInt = (num) => alphabet[num];
212
- const chunkSize = 5;
268
+ expect(splitBy2([1, 2, 3, 4])).toEqual([
269
+ [2, 4],
270
+ [6, 8],
271
+ ]);
272
+ });
213
273
 
214
- const result = mapAndSplit<number, string>(
215
- getLetterForInt,
216
- chunkSize
217
- )(values);
274
+ it("returns an empty list for an empty input", () => {
275
+ expect(mapAndSplit((n: number) => n, 2)([])).toEqual([]);
276
+ });
218
277
 
219
- expect(result.length).toBe(values.length / chunkSize);
278
+ it("puts remaining items in a final smaller chunk", () => {
279
+ expect(mapAndSplit((n: number) => n, 2)([1, 2, 3])).toEqual([[1, 2], [3]]);
280
+ });
220
281
 
221
- result.forEach((chunk, chunkIndex) => {
222
- chunk.forEach((value, index) => {
223
- expect(value).toBe(alphabet[chunkIndex * chunkSize + index]);
224
- });
225
- });
226
- });
282
+ it("returns a single chunk when chunk size exceeds the list length", () => {
283
+ expect(mapAndSplit((n: number) => n * 10, 10)([1, 2])).toEqual([[10, 20]]);
227
284
  });
228
285
  });
@@ -60,4 +60,15 @@ describe("isEmptyArray", () => {
60
60
 
61
61
  expect(isEmptyArray(value)).toBe(false);
62
62
  });
63
+
64
+ it("array with falsy values is not empty", () => {
65
+ expect(isEmptyArray([0])).toBe(false);
66
+ expect(isEmptyArray([false])).toBe(false);
67
+ expect(isEmptyArray([null])).toBe(false);
68
+ expect(isEmptyArray([undefined])).toBe(false);
69
+ });
70
+
71
+ it("nested empty array is not empty", () => {
72
+ expect(isEmptyArray([[]])).toBe(false);
73
+ });
63
74
  });
@@ -60,4 +60,16 @@ describe("isFilledArray", () => {
60
60
 
61
61
  expect(isFilledArray(value)).toBe(false);
62
62
  });
63
+
64
+ it("array with falsy values is filled", () => {
65
+ expect(isFilledArray([0])).toBe(true);
66
+ expect(isFilledArray([false])).toBe(true);
67
+ expect(isFilledArray([null])).toBe(true);
68
+ expect(isFilledArray([undefined])).toBe(true);
69
+ expect(isFilledArray([""])).toBe(true);
70
+ });
71
+
72
+ it("nested empty array is filled", () => {
73
+ expect(isFilledArray([[]])).toBe(true);
74
+ });
63
75
  });
@@ -0,0 +1,17 @@
1
+ import { isFirst } from "..";
2
+
3
+ describe("isFirst", () => {
4
+ it("returns true for index 0", () => {
5
+ expect(isFirst(0)).toBe(true);
6
+ });
7
+
8
+ it("returns false for positive indexes", () => {
9
+ expect(isFirst(1)).toBe(false);
10
+ expect(isFirst(10)).toBe(false);
11
+ });
12
+
13
+ it("returns true for negative indexes", () => {
14
+ expect(isFirst(-1)).toBe(true);
15
+ expect(isFirst(-100)).toBe(true);
16
+ });
17
+ });
@@ -56,4 +56,18 @@ describe("isIndexInRange", () => {
56
56
 
57
57
  expect(isIndexInRange(index, length)).toBe(false);
58
58
  });
59
+
60
+ it("single-element list", () => {
61
+ expect(isIndexInRange(0, 1)).toBe(true);
62
+ expect(isIndexInRange(1, 1)).toBe(false);
63
+ });
64
+
65
+ it("negative length is out of range", () => {
66
+ expect(isIndexInRange(0, -1)).toBe(false);
67
+ expect(isIndexInRange(0, -5)).toBe(false);
68
+ });
69
+
70
+ it("middle index is in range", () => {
71
+ expect(isIndexInRange(1, 3)).toBe(true);
72
+ });
59
73
  });