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

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 (189) 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__/modalBlocksParser.test.ts +107 -0
  99. package/configurationUtils/manifestKeyParser.ts +38 -9
  100. package/configurationUtils/modalBlocksParser.ts +178 -0
  101. package/entryActions/__tests__/buildEntryActions.test.ts +156 -0
  102. package/entryActions/aliasPresentation.ts +124 -0
  103. package/entryActions/buildEntryActions.ts +166 -0
  104. package/entryActions/index.ts +17 -0
  105. package/entryActions/types.ts +39 -0
  106. package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
  107. package/manifestUtils/_internals/index.js +14 -3
  108. package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -0
  109. package/manifestUtils/defaultManifestConfigurations/player.js +349 -20
  110. package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
  111. package/manifestUtils/fieldUtils/index.js +125 -0
  112. package/manifestUtils/index.js +3 -0
  113. package/manifestUtils/keys.js +9 -0
  114. package/manifestUtils/mobileAction/button/index.js +16 -0
  115. package/manifestUtils/mobileAction/container/index.js +3 -1
  116. package/manifestUtils/mobileAction/groups/defaults.js +3 -1
  117. package/manifestUtils/modalBlocks.js +304 -0
  118. package/manifestUtils/platformIsTV.js +1 -0
  119. package/modalState/ContentViewModel.ts +113 -0
  120. package/modalState/EditableCollection.ts +17 -0
  121. package/modalState/EditableCollectionRegistry.ts +51 -0
  122. package/modalState/ModalOrchestrator.ts +211 -0
  123. package/modalState/RemoteEditableCollection.ts +227 -0
  124. package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
  125. package/modalState/__tests__/ContentViewModel.test.ts +165 -0
  126. package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
  127. package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +47 -0
  128. package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
  129. package/modalState/__tests__/index.test.ts +30 -1
  130. package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
  131. package/modalState/index.ts +35 -83
  132. package/modalState/store.ts +102 -0
  133. package/modalState/types.ts +159 -0
  134. package/modalState/useBottomSheetContent.ts +104 -0
  135. package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
  136. package/numberUtils/__tests__/isZero.test.ts +27 -0
  137. package/numberUtils/__tests__/requireNumber.test.ts +50 -0
  138. package/numberUtils/__tests__/toNumber.test.ts +27 -0
  139. package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
  140. package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
  141. package/numberUtils/index.ts +27 -8
  142. package/package.json +2 -2
  143. package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
  144. package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
  145. package/pipesUtils/index.ts +1 -0
  146. package/pipesUtils/withPipesEndpoint.tsx +54 -0
  147. package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
  148. package/playerUtils/__tests__/resolvePlayerActions.test.ts +138 -0
  149. package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
  150. package/playerUtils/contentDataKeys.ts +134 -0
  151. package/playerUtils/index.ts +58 -15
  152. package/playerUtils/isAudioItem.ts +26 -0
  153. package/playerUtils/resolvePlayerActions.ts +71 -0
  154. package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
  155. package/reactHooks/actions/index.ts +117 -2
  156. package/reactHooks/cell-click/index.ts +18 -10
  157. package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
  158. package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
  159. package/reactHooks/feed/index.ts +5 -1
  160. package/reactHooks/feed/useBatchLoading.ts +9 -1
  161. package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
  162. package/reactHooks/index.ts +2 -0
  163. package/reactHooks/layout/index.ts +1 -1
  164. package/reactHooks/navigation/__mocks__/index.ts +4 -0
  165. package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
  166. package/reactHooks/navigation/index.ts +1 -1
  167. package/reactHooks/navigation/useIsScreenActive.ts +29 -8
  168. package/reactHooks/state/useComponentScreenState.ts +1 -1
  169. package/reactHooks/usePluginConfiguration.ts +4 -1
  170. package/reactHooks/utils/__tests__/index.test.js +22 -2
  171. package/reactHooks/utils/index.ts +13 -2
  172. package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
  173. package/riverComponetsMeasurementProvider/index.tsx +12 -8
  174. package/stringUtils/__tests__/stringUtils.test.js +42 -0
  175. package/stringUtils/index.ts +2 -2
  176. package/uiActionsRegistrator/__tests__/resolveActionIdentifiers.test.ts +93 -0
  177. package/uiActionsRegistrator/__tests__/subscribe.test.ts +107 -0
  178. package/uiActionsRegistrator/__tests__/usableActionItems.test.ts +52 -0
  179. package/uiActionsRegistrator/index.ts +25 -0
  180. package/uiActionsRegistrator/registry.ts +335 -0
  181. package/uiActionsRegistrator/resolveActionIdentifiers.ts +100 -0
  182. package/uiActionsRegistrator/usableActionItems.ts +66 -0
  183. package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
  184. package/zappFrameworkUtils/localStorageHelper.ts +19 -15
  185. package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
  186. package/playerUtils/__tests__/getPlayerActionButtons.test.ts +0 -54
  187. package/playerUtils/getPlayerActionButtons.ts +0 -17
  188. package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
  189. /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
@@ -159,9 +159,17 @@ export const useBatchLoading = (
159
159
  options.riverId,
160
160
  ]);
161
161
 
162
+ // Initial preload only. Batch loading warms the first batch of component
163
+ // feeds and signals readiness; the feed set is frozen at mount on purpose.
164
+ // Per-component loads and reloads (including stale revalidation) are owned by
165
+ // useFeedLoader in ZappPipesDataConnector. Re-running on `feeds`/input changes
166
+ // would re-fire on every store update and cause redundant dispatch storms, so
167
+ // this intentionally runs once on mount.
168
+ /* eslint-disable @wogns3623/better-exhaustive-deps/exhaustive-deps */
162
169
  React.useEffect(() => {
163
170
  runBatchLoading();
164
- }, [runBatchLoading]); // Adding runBatchLoading as a dependency to ensure that it reloads feeds when clearPipesData is called
171
+ }, []);
172
+ /* eslint-enable @wogns3623/better-exhaustive-deps/exhaustive-deps */
165
173
 
166
174
  React.useEffect(() => {
167
175
  // check if all feeds are ready and set hasEverBeenReady to true
@@ -2,17 +2,19 @@ import React from "react";
2
2
 
3
3
  import { getDatasourceUrl } from "@applicaster/zapp-react-native-ui-components/Decorators/RiverFeedLoader/utils/getDatasourceUrl";
4
4
  import { usePipesContexts } from "@applicaster/zapp-react-native-ui-components/Decorators/RiverFeedLoader/utils/usePipesContexts";
5
- import { clearPipesData } from "@applicaster/zapp-react-native-redux/ZappPipes";
5
+ import { markPipesDataStale } from "@applicaster/zapp-react-native-redux/ZappPipes";
6
6
 
7
7
  import { useRoute } from "../navigation";
8
8
  import { useAppDispatch } from "@applicaster/zapp-react-native-redux";
9
9
 
10
10
  /**
11
- * reset river components cache when screen is unmounted
11
+ * Mark a river's `clear_cache_on_reload` feeds as stale when the screen is
12
+ * unmounted. The cached data is kept (so a screen sharing the same feed does
13
+ * not lose it mid-mount) and revalidated on next access.
12
14
  * @param {string} riverId screen id
13
15
  * @param {Array} riverComponents list of UI components
14
16
  */
15
- export const usePipesCacheReset = (riverId, riverComponents) => {
17
+ export const useMarkPipesDataStale = (riverId, riverComponents) => {
16
18
  const dispatch = useAppDispatch();
17
19
  const { screenData, pathname } = useRoute();
18
20
  const pipesContexts = usePipesContexts(riverId, pathname);
@@ -35,10 +37,16 @@ export const usePipesCacheReset = (riverId, riverComponents) => {
35
37
  );
36
38
 
37
39
  if (url) {
38
- dispatch(clearPipesData(url, { riverId }));
40
+ dispatch(markPipesDataStale(url, { riverId }));
39
41
  }
40
42
  }
41
43
  });
42
44
  };
43
45
  }, []);
44
46
  };
47
+
48
+ /**
49
+ * @deprecated Renamed to `useMarkPipesDataStale`. Kept as an alias for backward
50
+ * compatibility with external consumers.
51
+ */
52
+ export const usePipesCacheReset = useMarkPipesDataStale;
@@ -17,3 +17,5 @@ export * from "./screen";
17
17
  export * from "./state";
18
18
 
19
19
  export * from "./events";
20
+
21
+ export * from "./utils";
@@ -49,7 +49,7 @@ export function useStatusBarHeight() {
49
49
  });
50
50
  }
51
51
 
52
- const getNavbarHeight = () => {
52
+ export const getNavbarHeight = () => {
53
53
  return isTV() ? 60 : platformSelect({ ios: 44, android: 56 });
54
54
  };
55
55
 
@@ -38,3 +38,7 @@ export const useNavigationPluginData = jest.fn().mockReturnValue(mockMenu);
38
38
  export const useIsNavBarVisible = jest.fn().mockReturnValue(true);
39
39
 
40
40
  export const useIsScreenActive = jest.fn().mockReturnValue(true);
41
+
42
+ export const isScreenActiveForRoute = jest.fn(
43
+ (route, currentRoute) => route === currentRoute
44
+ );
@@ -0,0 +1,42 @@
1
+ import { isScreenActiveForRoute } from "../useIsScreenActive";
2
+
3
+ describe("isScreenActiveForRoute", () => {
4
+ const route = "/river/home/river/tabs";
5
+ const currentRoute = "/river/home/river/tabs";
6
+
7
+ it("returns false when route does not match", () => {
8
+ expect(
9
+ isScreenActiveForRoute(route, "/river/home", { visible: false })
10
+ ).toBe(false);
11
+ });
12
+
13
+ it("keeps underlying screen active when video modal is docked", () => {
14
+ expect(
15
+ isScreenActiveForRoute(route, currentRoute, {
16
+ visible: true,
17
+ mode: "MINIMIZED",
18
+ })
19
+ ).toBe(true);
20
+ });
21
+
22
+ it.each(["FULLSCREEN", "MAXIMIZED", "PIP"])(
23
+ "deactivates underlying screen when video modal is visible",
24
+ (mode) => {
25
+ expect(
26
+ isScreenActiveForRoute(route, currentRoute, {
27
+ visible: true,
28
+ mode,
29
+ })
30
+ ).toBe(false);
31
+ }
32
+ );
33
+
34
+ it("keeps video-modal route active when video modal is open", () => {
35
+ expect(
36
+ isScreenActiveForRoute("video-modal/123", currentRoute, {
37
+ visible: true,
38
+ mode: "FULLSCREEN",
39
+ })
40
+ ).toBe(true);
41
+ });
42
+ });
@@ -32,7 +32,7 @@ export { useNavigationType } from "./useNavigationType";
32
32
 
33
33
  export { useGetBottomTabBarHeight } from "./useGetBottomTabBarHeight";
34
34
 
35
- export { useIsScreenActive } from "./useIsScreenActive";
35
+ export { useIsScreenActive, isScreenActiveForRoute } from "./useIsScreenActive";
36
36
 
37
37
  export { useProfilerLogging } from "./useProfilerLogging";
38
38
 
@@ -2,20 +2,41 @@ import { ROUTE_TYPES } from "@applicaster/zapp-react-native-utils/navigationUtil
2
2
  import { useNavigation } from "./useNavigation";
3
3
  import { usePathname } from "./usePathname";
4
4
 
5
- // If current screen is active/focused (visible to the user)
6
- export const useIsScreenActive = () => {
7
- const pathname = usePathname();
8
- const { currentRoute, videoModalState } = useNavigation();
5
+ type VideoModalState = {
6
+ visible?: boolean;
7
+ mode?: string;
8
+ } | null;
9
9
 
10
- if (videoModalState.visible) {
11
- if (pathname.includes(ROUTE_TYPES.VIDEO_MODAL)) {
10
+ /**
11
+ * Whether a navigation route should be treated as the active/focused screen.
12
+ * Docked (MINIMIZED) video modal does not deactivate the underlying screen —
13
+ * only FULLSCREEN / MAXIMIZED / PIP do.
14
+ */
15
+ export function isScreenActiveForRoute(
16
+ route: string,
17
+ currentRoute: string,
18
+ videoModalState: VideoModalState
19
+ ) {
20
+ if (videoModalState?.visible) {
21
+ if (route.includes(ROUTE_TYPES.VIDEO_MODAL)) {
12
22
  return true;
13
23
  }
14
24
 
15
- if (["FULLSCREEN", "MAXIMIZED", "PIP"].includes(videoModalState.mode)) {
25
+ if (
26
+ ["FULLSCREEN", "MAXIMIZED", "PIP"].includes(videoModalState.mode ?? "")
27
+ ) {
16
28
  return false;
17
29
  }
30
+ // MINIMIZED (docked): fall through — underlying screen stays active
18
31
  }
19
32
 
20
- return pathname === currentRoute;
33
+ return route === currentRoute;
34
+ }
35
+
36
+ // If current screen is active/focused (visible to the user)
37
+ export const useIsScreenActive = () => {
38
+ const pathname = usePathname();
39
+ const { currentRoute, videoModalState } = useNavigation();
40
+
41
+ return isScreenActiveForRoute(pathname, currentRoute, videoModalState);
21
42
  };
@@ -41,5 +41,5 @@ export const useComponentScreenState = <T = unknown>(
41
41
  [componentId, store]
42
42
  );
43
43
 
44
- return [value, setValue] as const;
44
+ return [value, setValue];
45
45
  };
@@ -24,7 +24,10 @@ export function parsePluginConfiguration(plugin, manifest) {
24
24
  return populateFields(plugin, manifest.custom_configuration_fields);
25
25
  }
26
26
 
27
- export function usePluginConfiguration<T, S>(identifier, manifest) {
27
+ export function usePluginConfiguration<T = any, S = Record<string, any>>(
28
+ identifier: string,
29
+ manifest?: any
30
+ ) {
28
31
  const plugins = usePlugins();
29
32
 
30
33
  const plugin = useMemo(
@@ -1,5 +1,5 @@
1
- import { usePrevious, useIsInitialRender } from "../";
2
- import { renderHook, cleanup } from "@testing-library/react-native";
1
+ import { usePrevious, useIsInitialRender, useForceUpdate } from "../";
2
+ import { renderHook, cleanup, act } from "@testing-library/react-native";
3
3
 
4
4
  describe("usePrevious", () => {
5
5
  it("renders", () => {
@@ -49,3 +49,23 @@ describe("useIsInitialRender", () => {
49
49
  expect(result.current).toBe(false);
50
50
  });
51
51
  });
52
+
53
+ describe("useForceUpdate", () => {
54
+ it("forces component to re-render when called", () => {
55
+ let renderCount = 0;
56
+
57
+ const { result } = renderHook(() => {
58
+ renderCount++;
59
+
60
+ return useForceUpdate();
61
+ });
62
+
63
+ expect(renderCount).toBe(1);
64
+
65
+ act(() => {
66
+ result.current();
67
+ });
68
+
69
+ expect(renderCount).toBe(2);
70
+ });
71
+ });
@@ -1,4 +1,4 @@
1
- import { useRef, useEffect } from "react";
1
+ import { useEffect, useReducer, useRef } from "react";
2
2
 
3
3
  /**
4
4
  * This hook returns a previous value that was passed to it.
@@ -31,6 +31,16 @@ export const useIsInitialRender = (): boolean => {
31
31
  return isInitialRenderRef.current;
32
32
  };
33
33
 
34
+ /**
35
+ * Returns a function that forces a re-render of the component when invoked.
36
+ * @return {() => void}
37
+ */
38
+ export const useForceUpdate = (): (() => void) => {
39
+ const [, forceUpdate] = useReducer((n: number) => n + 1, 0);
40
+
41
+ return forceUpdate;
42
+ };
43
+
34
44
  export const checkIsLocalFeed = (feedUrl) => feedUrl?.startsWith("pipesv2://");
35
45
 
36
46
  export const shouldDispatchData = (
@@ -40,6 +50,7 @@ export const shouldDispatchData = (
40
50
  ) => {
41
51
  const currentFeedHasData = feed?.data;
42
52
  const isLocalFeed = checkIsLocalFeed(url);
53
+ const isFeedStale = feed?.stale;
43
54
 
44
- return !currentFeedHasData || clearCache || isLocalFeed;
55
+ return !currentFeedHasData || clearCache || isFeedStale || isLocalFeed;
45
56
  };
@@ -2,6 +2,12 @@ import React from "react";
2
2
  import { useContentTypes } from "@applicaster/zapp-react-native-redux/hooks";
3
3
  import { useNavigation } from "@applicaster/zapp-react-native-utils/reactHooks";
4
4
  import { useRivers } from "../../state";
5
+ import { createLogger } from "../../../logger";
6
+
7
+ const { log_warning } = createLogger({
8
+ subsystem: "zapp-react-native-utils/reactHooks/videoModal",
9
+ category: "useVideoModalScreenData",
10
+ });
5
11
 
6
12
  export const useVideoModalScreenData = ():
7
13
  | (ZappEntry & { targetScreen: any }) // TODO: fix ZappEntry type ( was ZappRiver but conflict )
@@ -14,10 +20,22 @@ export const useVideoModalScreenData = ():
14
20
  const rivers = useRivers();
15
21
 
16
22
  return React.useMemo(() => {
17
- if (item?.type?.value) {
18
- const screenId = contentTypes[item?.type?.value].screen_id;
23
+ const itemType = item?.type?.value;
24
+
25
+ if (!itemType) {
26
+ return;
27
+ }
19
28
 
20
- return { ...item, targetScreen: rivers?.[screenId] };
29
+ const screenId = contentTypes[itemType]?.screen_id;
30
+
31
+ if (!screenId) {
32
+ log_warning(
33
+ `Type mapping is missing for item type: ${itemType}, title: ${item.title}`
34
+ );
35
+
36
+ return;
21
37
  }
22
- }, [item]);
38
+
39
+ return { ...item, targetScreen: rivers?.[screenId] };
40
+ }, [contentTypes, item, rivers]);
23
41
  };
@@ -1,10 +1,20 @@
1
1
  import * as React from "react";
2
- import { NativeModules, StyleSheet, View } from "react-native";
2
+ import { NativeModules, View, StyleSheet } from "react-native";
3
3
  import { getXray } from "@applicaster/zapp-react-native-utils/logger";
4
4
 
5
- import { isApplePlatform, isWeb } from "../reactUtils";
5
+ import { isApplePlatform, isWeb, isTV } from "../reactUtils";
6
6
  import { useRivers } from "../reactHooks";
7
7
 
8
+ const isTVPlatform = isTV();
9
+
10
+ const styles = StyleSheet.create({
11
+ container: isTVPlatform
12
+ ? {
13
+ flex: 1,
14
+ }
15
+ : {},
16
+ });
17
+
8
18
  const layoutReducer = (state, { payload }) => {
9
19
  return state.map((item, index, _state) => ({
10
20
  height: index === payload.index ? payload.height : item.height,
@@ -30,12 +40,6 @@ type MeasurementContext = {
30
40
  onLayout: (index: number) => (event) => void;
31
41
  };
32
42
 
33
- const styles = StyleSheet.create({
34
- container: {
35
- flex: 1,
36
- },
37
- });
38
-
39
43
  const { Logger } = getXray();
40
44
 
41
45
  const logger = new Logger("general", "ui");
@@ -122,6 +122,48 @@ describe("inflate string", () => {
122
122
  "this is a string with custom separators"
123
123
  );
124
124
  });
125
+
126
+ it("does not HTML-escape search variables containing single quotes or apostrophes", () => {
127
+ const string = "https://api.example.com/search?q={{search.query}}";
128
+ const data = { search: { query: "L'aventure" } };
129
+
130
+ expect(inflateString({ string, data })).toBe(
131
+ "https://api.example.com/search?q=L'aventure"
132
+ );
133
+ });
134
+
135
+ it("search context with straight apostrophe", () => {
136
+ const string =
137
+ "https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q={{search.q}}";
138
+
139
+ const data = { search: { q: "l'a" } };
140
+
141
+ expect(inflateString({ string, data })).toBe(
142
+ "https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q=l'a"
143
+ );
144
+ });
145
+
146
+ it("search context with backtick apostrophe", () => {
147
+ const string =
148
+ "https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q={{search.q}}";
149
+
150
+ const data = { search: { q: "l`a" } };
151
+
152
+ expect(inflateString({ string, data })).toBe(
153
+ "https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q=l`a"
154
+ );
155
+ });
156
+
157
+ it("search context with right single quotation mark", () => {
158
+ const string =
159
+ "https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q={{search.q}}";
160
+
161
+ const data = { search: { q: "l’a" } };
162
+
163
+ expect(inflateString({ string, data })).toBe(
164
+ "https://api.pc-cms.tele.quebec/api/applicaster/v1/tv/search?q=l’a"
165
+ );
166
+ });
125
167
  });
126
168
 
127
169
  describe("objectToReadableString", () => {
@@ -72,8 +72,8 @@ const valueIsNull = (value) => () => value === null;
72
72
  const encodeHelper = "encodeURL";
73
73
 
74
74
  const encodeHandlebarsExpressions = R.compose(
75
- R.replace(/{{([^}]+)}}/g, (match, p1) =>
76
- p1.includes("search") ? match : `{{{${encodeHelper} ${p1}}}}`
75
+ R.replace(/{{([^}]+)}}/g, (_, p1) =>
76
+ p1.includes("search") ? `{{{${p1}}}}` : `{{{${encodeHelper} ${p1}}}}`
77
77
  )
78
78
  );
79
79
 
@@ -0,0 +1,93 @@
1
+ import {
2
+ parseActionIdentifiers,
3
+ resolveActionIdentifiers,
4
+ } from "../resolveActionIdentifiers";
5
+ import { uiActionsRegistry } from "../registry";
6
+
7
+ const action = (identifier: string) =>
8
+ ({ identifier, action: { invokeAction: jest.fn() } }) as any;
9
+
10
+ describe("parseActionIdentifiers", () => {
11
+ it("parses comma-separated identifiers", () => {
12
+ expect(parseActionIdentifiers(" a, b , ,c ")).toEqual(["a", "b", "c"]);
13
+ });
14
+
15
+ it("parses identifier arrays", () => {
16
+ expect(parseActionIdentifiers([" a ", "", "b", " ", "c"])).toEqual([
17
+ "a",
18
+ "b",
19
+ "c",
20
+ ]);
21
+ });
22
+
23
+ it("returns empty array for nil config", () => {
24
+ expect(parseActionIdentifiers(null)).toEqual([]);
25
+ expect(parseActionIdentifiers(undefined)).toEqual([]);
26
+ });
27
+ });
28
+
29
+ describe("resolveActionIdentifiers", () => {
30
+ const entry = { id: "entry-1" } as any;
31
+
32
+ beforeEach(() => {
33
+ jest
34
+ .spyOn(uiActionsRegistry, "getActions")
35
+ .mockImplementation((identifier) => [action(identifier)] as any);
36
+ });
37
+
38
+ afterEach(() => {
39
+ jest.restoreAllMocks();
40
+ });
41
+
42
+ it("resolves through registry by default", () => {
43
+ const result = resolveActionIdentifiers({
44
+ identifiers: "favorites,share",
45
+ entry,
46
+ });
47
+
48
+ expect(result.map((item) => item.identifier)).toEqual([
49
+ "favorites",
50
+ "share",
51
+ ]);
52
+
53
+ expect(uiActionsRegistry.getActions).toHaveBeenCalledWith(
54
+ "favorites",
55
+ entry
56
+ );
57
+
58
+ expect(uiActionsRegistry.getActions).toHaveBeenCalledWith("share", entry);
59
+ });
60
+
61
+ it("expands entry_actions through the caller, not the registry", () => {
62
+ const expanded = [action("entry_action_0"), action("entry_action_1")];
63
+ const expandEntryActions = jest.fn(() => expanded);
64
+
65
+ const unregister = uiActionsRegistry.registerAction("share", {
66
+ invokeAction: jest.fn(),
67
+ });
68
+
69
+ try {
70
+ const result = resolveActionIdentifiers({
71
+ identifiers: "entry_actions,share",
72
+ entry,
73
+ expandEntryActions,
74
+ });
75
+
76
+ expect(expandEntryActions).toHaveBeenCalledWith(entry);
77
+
78
+ expect(result.map((item) => item.identifier)).toEqual([
79
+ "entry_action_0",
80
+ "entry_action_1",
81
+ "share",
82
+ ]);
83
+ } finally {
84
+ unregister();
85
+ }
86
+ });
87
+
88
+ it("resolves nothing for entry_actions when the caller cannot expand it", () => {
89
+ expect(
90
+ resolveActionIdentifiers({ identifiers: "entry_actions", entry })
91
+ ).toEqual([]);
92
+ });
93
+ });
@@ -0,0 +1,107 @@
1
+ import { isActionAvailableFor, uiActionsRegistry } from "../registry";
2
+
3
+ const value = { invokeAction: jest.fn() };
4
+
5
+ describe("uiActionsRegistry.subscribe", () => {
6
+ it("fires on registration and on unregistration", () => {
7
+ const listener = jest.fn();
8
+ const unsubscribe = uiActionsRegistry.subscribe(listener);
9
+
10
+ const unregister = uiActionsRegistry.registerAction("late-action", value);
11
+
12
+ expect(listener).toHaveBeenCalledTimes(1);
13
+
14
+ unregister();
15
+
16
+ expect(listener).toHaveBeenCalledTimes(2);
17
+
18
+ unsubscribe();
19
+ });
20
+
21
+ it("lets a listener see the action it was told about", () => {
22
+ let seen: string[] = [];
23
+
24
+ const unsubscribe = uiActionsRegistry.subscribe(() => {
25
+ seen = uiActionsRegistry
26
+ .getActions("late-action", { id: "e1" } as any)
27
+ .map((item) => item.identifier);
28
+ });
29
+
30
+ const unregister = uiActionsRegistry.registerAction("late-action", value);
31
+
32
+ expect(seen).toEqual(["late-action"]);
33
+
34
+ unregister();
35
+ unsubscribe();
36
+ });
37
+
38
+ it("stops calling a listener once unsubscribed", () => {
39
+ const listener = jest.fn();
40
+
41
+ uiActionsRegistry.subscribe(listener)();
42
+
43
+ uiActionsRegistry.registerAction("another-action", value)();
44
+
45
+ expect(listener).not.toHaveBeenCalled();
46
+ });
47
+
48
+ it("survives a listener that unsubscribes itself while being notified", () => {
49
+ const other = jest.fn();
50
+
51
+ const unsubscribeOther = uiActionsRegistry.subscribe(other);
52
+
53
+ const unsubscribeSelf = uiActionsRegistry.subscribe(() => {
54
+ unsubscribeSelf();
55
+ });
56
+
57
+ expect(() =>
58
+ uiActionsRegistry.registerAction("self-removing", value)()
59
+ ).not.toThrow();
60
+
61
+ expect(other).toHaveBeenCalled();
62
+
63
+ unsubscribeOther();
64
+ });
65
+ });
66
+
67
+ describe("isActionAvailableFor", () => {
68
+ const entry = { id: "e1" } as any;
69
+
70
+ it("shows an action that states no opinion", () => {
71
+ expect(isActionAvailableFor({ invokeAction: jest.fn() }, entry)).toBe(true);
72
+ });
73
+
74
+ it.each([
75
+ ["isSupportDownloads"],
76
+ ["isActionSupported"],
77
+ ["isActionAvailable"],
78
+ ])("honours %s", (predicate) => {
79
+ expect(
80
+ isActionAvailableFor(
81
+ { invokeAction: jest.fn(), [predicate]: () => false } as any,
82
+ entry
83
+ )
84
+ ).toBe(false);
85
+ });
86
+
87
+ it("asks only the first predicate the action defines", () => {
88
+ const isActionAvailable = jest.fn(() => true);
89
+
90
+ expect(
91
+ isActionAvailableFor(
92
+ {
93
+ invokeAction: jest.fn(),
94
+ isSupportDownloads: () => false,
95
+ isActionAvailable,
96
+ } as any,
97
+ entry
98
+ )
99
+ ).toBe(false);
100
+
101
+ expect(isActionAvailable).not.toHaveBeenCalled();
102
+ });
103
+
104
+ it("treats a missing action as unavailable-free", () => {
105
+ expect(isActionAvailableFor(undefined, entry)).toBe(true);
106
+ });
107
+ });
@@ -0,0 +1,52 @@
1
+ import { usableActionItems } from "../usableActionItems";
2
+
3
+ const action = (identifier: string) =>
4
+ ({ identifier, action: { invokeAction: jest.fn() } }) as any;
5
+
6
+ describe("usableActionItems", () => {
7
+ it("keeps a usable list untouched, in order", () => {
8
+ const base = [action("share"), action("favorites")];
9
+
10
+ expect(usableActionItems(base).map((item) => item.identifier)).toEqual([
11
+ "share",
12
+ "favorites",
13
+ ]);
14
+ });
15
+
16
+ it("keeps the first of a repeated identifier", () => {
17
+ const firstShare = action("share");
18
+ const secondShare = action("share");
19
+
20
+ const result = usableActionItems([
21
+ firstShare,
22
+ action("favorites"),
23
+ secondShare,
24
+ ]);
25
+
26
+ expect(result.map((item) => item.identifier)).toEqual([
27
+ "share",
28
+ "favorites",
29
+ ]);
30
+
31
+ expect(result[0]).toBe(firstShare);
32
+ });
33
+
34
+ it("drops items that cannot be invoked or have no identifier", () => {
35
+ const result = usableActionItems([
36
+ action("share"),
37
+ { identifier: "blank" } as any,
38
+ { identifier: "no-invoke", action: {} } as any,
39
+ { action: { invokeAction: jest.fn() } } as any,
40
+ action("entry_action_0"),
41
+ ]);
42
+
43
+ expect(result.map((item) => item.identifier)).toEqual([
44
+ "share",
45
+ "entry_action_0",
46
+ ]);
47
+ });
48
+
49
+ it("tolerates a missing list", () => {
50
+ expect(usableActionItems(undefined as any)).toEqual([]);
51
+ });
52
+ });