@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,134 @@
1
+ import { get } from "@applicaster/zapp-react-native-utils/utils";
2
+ import { isNotEmptyString } from "@applicaster/zapp-react-native-utils/stringUtils";
3
+
4
+ type GetValue = <T = string | number | null>(key: string) => T;
5
+
6
+ export type PlayerContentField = "title" | "subtitle";
7
+
8
+ const CUSTOM_SOURCE = "other";
9
+
10
+ const DEFAULT_ENTRY_PATH: Record<PlayerContentField, string> = {
11
+ title: "title",
12
+ subtitle: "summary",
13
+ };
14
+
15
+ /**
16
+ * Configuration keys backing each field, exported so callers can build a
17
+ * stable configuration getter without duplicating the key strings.
18
+ */
19
+ export const PLAYER_CONTENT_DATA_KEYS: Record<
20
+ PlayerContentField,
21
+ { source: string; custom: string }
22
+ > = {
23
+ title: {
24
+ source: "title_data_key_source",
25
+ custom: "title_custom_data_key",
26
+ },
27
+ subtitle: {
28
+ source: "subtitle_data_key_source",
29
+ custom: "subtitle_custom_data_key",
30
+ },
31
+ };
32
+
33
+ export type PlayerContentDataKeys = Record<
34
+ PlayerContentField,
35
+ { source: string; custom: string }
36
+ >;
37
+
38
+ /**
39
+ * TV keeps separate Title/Summary configuration per media type. Mobile has
40
+ * no equivalent split - it shares a single `PLAYER_CONTENT_DATA_KEYS` set
41
+ * for both video and audio - which is why these sets carry a media-type
42
+ * prefix (`video_player_*` / `audio_player_*`) and mobile's doesn't.
43
+ */
44
+ export const VIDEO_PLAYER_CONTENT_DATA_KEYS: PlayerContentDataKeys = {
45
+ title: {
46
+ source: "video_player_title_data_key_source",
47
+ custom: "video_player_title_custom_data_key",
48
+ },
49
+ subtitle: {
50
+ source: "video_player_summary_data_key_source",
51
+ custom: "video_player_summary_custom_data_key",
52
+ },
53
+ };
54
+
55
+ export const AUDIO_PLAYER_CONTENT_DATA_KEYS: PlayerContentDataKeys = {
56
+ title: {
57
+ source: "audio_player_title_data_key_source",
58
+ custom: "audio_player_title_custom_data_key",
59
+ },
60
+ subtitle: {
61
+ source: "audio_player_summary_data_key_source",
62
+ custom: "audio_player_summary_custom_data_key",
63
+ },
64
+ };
65
+
66
+ /**
67
+ * Builds a GetValue over a plugin configuration object. Callers that hold a
68
+ * configuration rather than a `value` closure use this instead of hand-rolling
69
+ * the lookup.
70
+ */
71
+ export const createConfigValueGetter =
72
+ (configuration: Option<Record<string, any>>): GetValue =>
73
+ <T>(key: string) =>
74
+ (configuration?.[key] ?? null) as T;
75
+
76
+ type ResolvePlayerContentTextParams = {
77
+ entry: Option<ZappEntry>;
78
+ field: PlayerContentField;
79
+ value: GetValue;
80
+ dataKeys?: PlayerContentDataKeys;
81
+ };
82
+
83
+ /**
84
+ * Resolves the text shown for the player's Title or Subtitle.
85
+ *
86
+ * Unless the customer explicitly selected the "Other" data key source and
87
+ * supplied a resolvable key, this returns the hardcoded entry field the
88
+ * player has always used, which keeps existing apps unchanged.
89
+ */
90
+ export const resolvePlayerContentText = ({
91
+ entry,
92
+ field,
93
+ value,
94
+ dataKeys,
95
+ }: ResolvePlayerContentTextParams): Option<string | number> => {
96
+ if (!entry) {
97
+ return undefined;
98
+ }
99
+
100
+ const defaultValue = get(entry, DEFAULT_ENTRY_PATH[field]);
101
+
102
+ const { source, custom } = (dataKeys ?? PLAYER_CONTENT_DATA_KEYS)[field];
103
+
104
+ if (value(source) !== CUSTOM_SOURCE) {
105
+ return defaultValue;
106
+ }
107
+
108
+ const customKey = value<Option<string>>(custom);
109
+
110
+ // Only trim when the config value really is a string - it comes from
111
+ // free-text Studio configuration and can be a non-string (or null/undefined),
112
+ // and calling .trim() on that would throw.
113
+ const trimmedKey = isNotEmptyString(customKey) ? customKey.trim() : customKey;
114
+
115
+ if (!isNotEmptyString(trimmedKey)) {
116
+ return defaultValue;
117
+ }
118
+
119
+ const customValue = get(entry, trimmedKey);
120
+
121
+ if (customValue === null || customValue === undefined || customValue === "") {
122
+ return defaultValue;
123
+ }
124
+
125
+ // The key is free text in the Studio, so it can easily land on an object or
126
+ // an array (`extensions.show` instead of `extensions.show.name`). Those
127
+ // reach <Text> untouched and throw "Objects are not valid as a React child",
128
+ // so they fall back like every other unusable key.
129
+ if (typeof customValue !== "string" && typeof customValue !== "number") {
130
+ return defaultValue;
131
+ }
132
+
133
+ return customValue;
134
+ };
@@ -7,7 +7,53 @@ import { isTV } from "@applicaster/zapp-react-native-utils/reactUtils";
7
7
  import { getBoolFromConfigValue } from "../configurationUtils";
8
8
  import { Dimensions } from "react-native";
9
9
 
10
- export { getPlayerActionButtons } from "./getPlayerActionButtons";
10
+ export { resolvePlayerActions } from "./resolvePlayerActions";
11
+
12
+ export { isEntryAction } from "../entryActions";
13
+
14
+ export {
15
+ parseActionIdentifiers,
16
+ resolveActionIdentifiers,
17
+ } from "../uiActionsRegistrator";
18
+
19
+ export type { ResolveActionIdentifiersParams } from "../uiActionsRegistrator";
20
+
21
+ export type {
22
+ ActionButtonDescriptor,
23
+ OverflowDescriptor,
24
+ PlayerControlDescriptor,
25
+ ResolvePlayerActionsParams,
26
+ } from "./resolvePlayerActions";
27
+
28
+ export {
29
+ resolvePlayerContentText,
30
+ PLAYER_CONTENT_DATA_KEYS,
31
+ VIDEO_PLAYER_CONTENT_DATA_KEYS,
32
+ AUDIO_PLAYER_CONTENT_DATA_KEYS,
33
+ createConfigValueGetter,
34
+ } from "./contentDataKeys";
35
+
36
+ export type {
37
+ PlayerContentField,
38
+ PlayerContentDataKeys,
39
+ } from "./contentDataKeys";
40
+
41
+ export {
42
+ resolvePlayerTitleSubtitle,
43
+ getPlayerContentDataKeys,
44
+ } from "./resolvePlayerTitleSubtitle";
45
+
46
+ export { isAudioItem } from "./isAudioItem";
47
+
48
+ export const HLS_MIME_TYPES = [
49
+ "application/x-mpegURL",
50
+ "application/vnd.apple.mpegurl",
51
+ ];
52
+
53
+ export const STREAMING_VIDEO_MIME_TYPES = [
54
+ ...HLS_MIME_TYPES,
55
+ "application/dash+xml",
56
+ ];
11
57
 
12
58
  /**
13
59
  * Gets duration value from player manager, and from extensions
@@ -27,7 +73,7 @@ export function isLiveLegacy(content) {
27
73
  ]);
28
74
 
29
75
  const durationFromExt = R.path(["extensions", "duration"], content);
30
- const durationFromMgr = playerManager.getDuration();
76
+ const durationFromMgr = playerManager.getInstanceController()?.getDuration();
31
77
  const duration = Math.floor(durationFromExt || durationFromMgr);
32
78
 
33
79
  const isLive = R.anyPass([isNotaValidNumber, R.lte(R.__, 0)])(duration);
@@ -71,7 +117,9 @@ function isLiveByManager(): boolean {
71
117
  return true;
72
118
  }
73
119
 
74
- const durationFromPlayerManager = playerManager.getDuration();
120
+ const durationFromPlayerManager = playerManager
121
+ .getInstanceController()
122
+ ?.getDuration();
75
123
 
76
124
  return isLiveByDuration(durationFromPlayerManager);
77
125
  }
@@ -80,19 +128,14 @@ export function isLive(entry: ZappEntry): boolean {
80
128
  return isEntryLive(entry) || isLiveByManager();
81
129
  }
82
130
 
83
- export const isAudioItem = (item: Option<ZappEntry>) => {
84
- if (
85
- isString(item?.content?.type) &&
86
- item?.content?.type?.includes?.("audio")
87
- ) {
88
- return true;
89
- }
131
+ export const isVideoItem = (item: Option<ZappEntry>) => {
132
+ const contentType = item?.content?.type;
90
133
 
91
- if (isString(item?.type?.value) && item?.type?.value?.includes?.("audio")) {
92
- return true;
93
- }
94
-
95
- return false;
134
+ return (
135
+ isString(contentType) &&
136
+ (contentType.includes("video") ||
137
+ STREAMING_VIDEO_MIME_TYPES.includes(contentType))
138
+ );
96
139
  };
97
140
 
98
141
  export const isInlineTV = (screenData) => {
@@ -0,0 +1,26 @@
1
+ import { isString } from "@applicaster/zapp-react-native-utils/typeGuards";
2
+
3
+ /**
4
+ * Lives in its own module rather than in `playerUtils/index.ts` because that
5
+ * barrel imports `playerManager`, and files inside `appUtils/playerManager/`
6
+ * need this helper. Importing it from the barrel there would create a require
7
+ * cycle:
8
+ *
9
+ * playerManager/index -> player -> playerUtils/index -> playerManager/index
10
+ *
11
+ * Re-exported from the barrel, so existing importers are unaffected.
12
+ */
13
+ export const isAudioItem = (item: Option<ZappEntry>) => {
14
+ if (
15
+ isString(item?.content?.type) &&
16
+ item?.content?.type?.includes?.("audio")
17
+ ) {
18
+ return true;
19
+ }
20
+
21
+ if (isString(item?.type?.value) && item?.type?.value?.includes?.("audio")) {
22
+ return true;
23
+ }
24
+
25
+ return false;
26
+ };
@@ -0,0 +1,71 @@
1
+ import { selectActionButtons } from "../conf/player/selectors";
2
+ import {
3
+ usableActionItems,
4
+ RegisteredAction,
5
+ resolveActionIdentifiers,
6
+ } from "../uiActionsRegistrator";
7
+
8
+ export type ResolvePlayerActionsParams = {
9
+ configuration: any;
10
+ entry: ZappEntry | ZappFeed;
11
+ /** Expands the `entry_actions` token; see `resolveActionIdentifiers`. */
12
+ expandEntryActions?: (entry: ZappEntry | ZappFeed) => RegisteredAction[];
13
+ };
14
+
15
+ /**
16
+ * The player's action buttons, resolved against the entry.
17
+ *
18
+ * Every `player_action_buttons` token goes through `uiActionsRegistry`, except
19
+ * `entry_actions`, which the caller expands from the entry itself. The list is
20
+ * not capped; the overlay decides how many fit and sends the rest to the sheet.
21
+ */
22
+ export function resolvePlayerActions({
23
+ configuration,
24
+ entry,
25
+ expandEntryActions,
26
+ }: ResolvePlayerActionsParams): RegisteredAction[] {
27
+ const buttonsString = selectActionButtons(configuration);
28
+
29
+ if (!buttonsString) {
30
+ return [];
31
+ }
32
+
33
+ // Deduped at the source: `player_action_buttons` is a hand-typed string, so
34
+ // the same identifier can legitimately appear twice. Left alone, a repeat
35
+ // would be counted twice against the inline limit, rendered twice on the
36
+ // overlay, and collide as a React key. Items with no `invokeAction` are
37
+ // dropped here too - they can never do anything.
38
+ return usableActionItems(
39
+ resolveActionIdentifiers({
40
+ identifiers: buttonsString,
41
+ entry,
42
+ expandEntryActions,
43
+ })
44
+ );
45
+ }
46
+
47
+ /** One control on the player overlay, before overflow is applied. */
48
+ export type ActionButtonDescriptor =
49
+ | { kind: "subtitle" }
50
+ | { kind: "close" }
51
+ | { kind: "airplay" }
52
+ | { kind: "action"; action: RegisteredAction };
53
+
54
+ /**
55
+ * The Overflow control, produced by `splitOverflow` when more content actions
56
+ * resolve than fit on the overlay.
57
+ */
58
+ export type OverflowDescriptor = {
59
+ kind: "overflow";
60
+ /**
61
+ * Every content action, the overlay companion included. An overlay button
62
+ * renders nothing when its action has no icon, so the companion needs the
63
+ * sheet as a second home or it could be reachable from nowhere.
64
+ */
65
+ additionalActions: RegisteredAction[];
66
+ };
67
+
68
+ /** What the overlay actually renders, once overflow has been applied. */
69
+ export type PlayerControlDescriptor =
70
+ | ActionButtonDescriptor
71
+ | OverflowDescriptor;
@@ -0,0 +1,76 @@
1
+ import {
2
+ createConfigValueGetter,
3
+ resolvePlayerContentText,
4
+ VIDEO_PLAYER_CONTENT_DATA_KEYS,
5
+ AUDIO_PLAYER_CONTENT_DATA_KEYS,
6
+ } from "./contentDataKeys";
7
+ import type { PlayerContentDataKeys } from "./contentDataKeys";
8
+
9
+ /**
10
+ * Resolves the player's Title/Subtitle text as raw values (string | number |
11
+ * null). Called by `Player.getContent()`, which publishes the result on the
12
+ * player's content channel; every consumer - the mobile/TV transport
13
+ * controls, `ProgramInfo`, the TV audio player, the Chromecast controller and
14
+ * the native bridge - reads it from there rather than resolving for itself.
15
+ *
16
+ * `dataKeys` selects which Studio-configured key set backs the resolution:
17
+ * omit it for the default (mobile) `PLAYER_CONTENT_DATA_KEYS` set, or pass
18
+ * an explicit set (e.g. `VIDEO_PLAYER_CONTENT_DATA_KEYS`) for platforms/content
19
+ * types that keep separate Studio configuration for this text. Getting the
20
+ * key set backwards would make one platform read another platform's
21
+ * configuration, so every caller must be explicit about which set it wants.
22
+ *
23
+ * Keeping this in one place is what stops the dot-path / key-set resolution
24
+ * logic (`resolvePlayerContentText`) from being duplicated per caller.
25
+ */
26
+ export const resolvePlayerTitleSubtitle = ({
27
+ entry,
28
+ pluginConfiguration,
29
+ dataKeys,
30
+ }: {
31
+ entry: Option<ZappEntry>;
32
+ pluginConfiguration: Option<Record<string, any>>;
33
+ dataKeys?: PlayerContentDataKeys;
34
+ }): {
35
+ title: Option<string | number>;
36
+ summary: Option<string | number>;
37
+ } => {
38
+ const value = createConfigValueGetter(pluginConfiguration);
39
+
40
+ const title =
41
+ resolvePlayerContentText({ entry, field: "title", value, dataKeys }) ??
42
+ null;
43
+
44
+ const summary =
45
+ resolvePlayerContentText({
46
+ entry,
47
+ field: "subtitle",
48
+ value,
49
+ dataKeys,
50
+ }) ?? null;
51
+
52
+ return { title, summary };
53
+ };
54
+
55
+ /**
56
+ * Picks which Studio-configured key set backs a Title/Subtitle resolution,
57
+ * from the full three-way choice: TV audio, TV video, or mobile. Each of
58
+ * those ships separate Studio configuration for this text; getting this
59
+ * backwards would make one platform (or content type) read another's
60
+ * configuration.
61
+ */
62
+ export const getPlayerContentDataKeys = ({
63
+ isTV,
64
+ isAudioContent,
65
+ }: {
66
+ isTV: boolean;
67
+ isAudioContent: boolean;
68
+ }): PlayerContentDataKeys | undefined => {
69
+ if (!isTV) {
70
+ return undefined;
71
+ }
72
+
73
+ return isAudioContent
74
+ ? AUDIO_PLAYER_CONTENT_DATA_KEYS
75
+ : VIDEO_PLAYER_CONTENT_DATA_KEYS;
76
+ };
@@ -1,8 +1,13 @@
1
1
  /// <reference types="@applicaster/applicaster-types" />
2
2
  /* eslint-disable @typescript-eslint/no-unused-vars */
3
- import { Context, useContext, useState } from "react";
3
+ import { Context, useCallback, useContext, useEffect, useState } from "react";
4
4
  import { ActionsContext } from "@applicaster/zapp-react-native-ui-components/Contexts/ActionsContext";
5
5
 
6
+ import {
7
+ observeEntryState,
8
+ RegisteredActionValue,
9
+ uiActionsRegistry,
10
+ } from "../../uiActionsRegistrator";
6
11
  import { reactHooksLogger } from "../logger";
7
12
 
8
13
  const logger = reactHooksLogger.addSubsystem("actions");
@@ -30,7 +35,13 @@ export function useActions<T = unknown>(plugId: string): any {
30
35
  if (!logged) {
31
36
  logger.warning({
32
37
  message: `useActions: Couldn't find an action for ${plugId} plugin`,
33
- data: { actions: context?.actions },
38
+ // Identifiers only. The action map holds every plugin's module and
39
+ // live React context, which is far too large for a log line and can
40
+ // carry whatever state those plugins hold.
41
+ data: {
42
+ plugId,
43
+ availableActions: Object.keys(context?.actions ?? {}),
44
+ },
34
45
  });
35
46
 
36
47
  setLogged(true);
@@ -46,3 +57,107 @@ export function useActions<T = unknown>(plugId: string): any {
46
57
 
47
58
  return context;
48
59
  }
60
+
61
+ export type UseEntryActionState = {
62
+ state: CellActionEntryState | undefined;
63
+ invokeAction: (options?: InvokeArgsOptions) => void;
64
+ };
65
+
66
+ /**
67
+ * Subscribes a component to a single action's state for a given `entry`.
68
+ *
69
+ * It observes state changes reactively via `observeEntryState` (which is backed
70
+ * by the action's `addListener`), seeds the initial value synchronously from
71
+ * `initialEntryState`, and returns a memoized `invokeAction` that forwards
72
+ * optimistic `updateState` updates back into local state.
73
+ *
74
+ * This is the single, unified way to drive an action button - it works the same
75
+ * for registry actions, legacy context-provider actions and entry actions.
76
+ */
77
+ export function useEntryActionState(
78
+ action: RegisteredActionValue | undefined,
79
+ entry: ZappEntry | ZappFeed
80
+ ): UseEntryActionState {
81
+ const [state, setState] = useState<CellActionEntryState | undefined>(() =>
82
+ action?.initialEntryState?.(entry)
83
+ );
84
+
85
+ const entryId = (entry as ZappEntry)?.id;
86
+
87
+ useEffect(() => {
88
+ if (!action) return undefined;
89
+
90
+ // An action's stream is third-party code. Subscribing with only a `next`
91
+ // handler lets RxJS rethrow an error notification asynchronously, where no
92
+ // error boundary catches it - one plugin faulting would take the app down
93
+ // rather than this one button. The button keeps its last known state.
94
+ let subscription;
95
+
96
+ try {
97
+ subscription = observeEntryState(action, entry).subscribe({
98
+ next: setState,
99
+ error: (error) =>
100
+ logger.warning({
101
+ message:
102
+ "useEntryActionState: the action's state stream failed - the button keeps its last state",
103
+ data: { entryId, error },
104
+ }),
105
+ });
106
+ } catch (error) {
107
+ logger.warning({
108
+ message:
109
+ "useEntryActionState: could not observe the action - the button keeps its initial state",
110
+ data: { entryId, error },
111
+ });
112
+
113
+ return undefined;
114
+ }
115
+
116
+ return () => subscription.unsubscribe();
117
+ // eslint-disable-next-line @wogns3623/better-exhaustive-deps/exhaustive-deps
118
+ }, [action, entryId]);
119
+
120
+ const invokeAction = useCallback(
121
+ (options: InvokeArgsOptions = {}) => {
122
+ if (typeof action?.invokeAction !== "function") {
123
+ // A button was rendered and pressed, and the press goes nowhere. Only
124
+ // reachable on a user interaction, so it costs nothing on render. The
125
+ // action value carries no identifier, so the label is what locates the
126
+ // button that misbehaved.
127
+ logger.warning({
128
+ message:
129
+ "useEntryActionState: the pressed action has no invokeAction - the press did nothing",
130
+ data: { entryId, label: state?.label },
131
+ });
132
+ }
133
+
134
+ action?.invokeAction?.(entry, { updateState: setState, ...options });
135
+ },
136
+ // eslint-disable-next-line @wogns3623/better-exhaustive-deps/exhaustive-deps
137
+ [action, entryId]
138
+ );
139
+
140
+ return { state, invokeAction };
141
+ }
142
+
143
+ /**
144
+ * A value that changes whenever a provider is added to or removed from
145
+ * `uiActionsRegistry`.
146
+ *
147
+ * Providers can register after the UI that wants them has rendered - the audio
148
+ * player registers playback speed only once its controller has state, and
149
+ * plugin-backed actions are bridged in from an effect. Put this in the
150
+ * dependency list of anything that resolves actions, so the list is re-read
151
+ * instead of being frozen at first paint.
152
+ */
153
+ export function useRegistryRevision(): number {
154
+ const [revision, setRevision] = useState(0);
155
+
156
+ useEffect(
157
+ () =>
158
+ uiActionsRegistry.subscribe(() => setRevision((current) => current + 1)),
159
+ []
160
+ );
161
+
162
+ return revision;
163
+ }
@@ -4,6 +4,7 @@ import * as React from "react";
4
4
  import * as R from "ramda";
5
5
  import { handleActionSchemeUrl } from "@applicaster/quick-brick-core/App/DeepLinking/URLSchemeHandler/SchemeHandlerHooks/useUrlSchemeHandler";
6
6
  import { CellTapContext } from "@applicaster/zapp-react-native-ui-components/Contexts/CellTapContext";
7
+ import { useUIComponentContext } from "@applicaster/zapp-react-native-ui-components/Contexts/UIComponentContext";
7
8
  import {
8
9
  useNavigation,
9
10
  useProfilerLogging,
@@ -28,7 +29,6 @@ import { useScreenStateStore } from "../navigation/useScreenStateStore";
28
29
  type Props = {
29
30
  item?: ZappEntry;
30
31
  index?: number;
31
- component?: ZappUIComponent;
32
32
  zappPipesData?: ZappPipesData;
33
33
  };
34
34
 
@@ -37,24 +37,25 @@ type onPressReturnFn =
37
37
  | (() => void);
38
38
 
39
39
  export const useCellClick = ({
40
- component,
41
40
  zappPipesData,
42
41
  item,
43
- }: Props): onPressReturnFn => {
42
+ }: Props = {}): onPressReturnFn => {
44
43
  const { push, currentRoute } = useNavigation();
45
44
  const { pathname } = useRoute();
46
45
  const screenStateStore = useScreenStateStore();
47
46
 
48
47
  const onCellTap: Option<Function> = React.useContext(CellTapContext);
49
48
  const actionExecutor = React.useContext(ActionExecutorContext);
49
+ const component = useUIComponentContext();
50
50
  const screenData = useCurrentScreenData();
51
51
  const screenState = useScreenContext()?.options;
52
+ const entry = useScreenContext()?.entry;
52
53
 
53
54
  const cellSelectable = toBooleanWithDefaultTrue(
54
55
  component?.rules?.component_cells_selectable
55
56
  );
56
57
 
57
- const [entryContext, setEntryContext] =
58
+ const [_entryContext, setEntryContext] =
58
59
  ZappPipesEntryContext.useZappPipesContext(pathname);
59
60
 
60
61
  const logTimestamp = useProfilerLogging();
@@ -89,7 +90,8 @@ export const useCellClick = ({
89
90
  screenState,
90
91
  screenRoute: pathname,
91
92
  screenStateStore,
92
- entryContext,
93
+ entryContext: selectedItem,
94
+ screenEntry: entry,
93
95
  });
94
96
  }
95
97
 
@@ -117,14 +119,20 @@ export const useCellClick = ({
117
119
  }
118
120
  },
119
121
  [
120
- onCellTap,
121
- currentRoute,
122
+ item,
122
123
  setEntryContext,
123
- pathname,
124
- push,
125
124
  sendAnalyticsOnPress,
125
+ logTimestamp,
126
+ pathname,
127
+ component,
128
+ onCellTap,
129
+ entry,
130
+ actionExecutor,
126
131
  screenData,
127
132
  screenState,
133
+ screenStateStore,
134
+ currentRoute,
135
+ push,
128
136
  ]
129
137
  );
130
138
 
@@ -138,5 +146,5 @@ export const useCellClick = ({
138
146
  onPressRef.current = onPress;
139
147
  }
140
148
 
141
- return React.useCallback(onPressRef.current, []);
149
+ return React.useCallback(onPressRef.current, [item]);
142
150
  };
@@ -0,0 +1,4 @@
1
+ export const useMarkPipesDataStale = jest.fn();
2
+
3
+ /** @deprecated alias of useMarkPipesDataStale */
4
+ export const usePipesCacheReset = useMarkPipesDataStale;
@@ -242,4 +242,29 @@ describe("useGetUrlInflater", () => {
242
242
  const url = result.current(source, mapping);
243
243
  expect(url).toBe("https://foo.com/shows/A123?q=user%20query");
244
244
  });
245
+
246
+ it("handles search queries with apostrophes without HTML entity escaping or URL truncation", () => {
247
+ const source =
248
+ "https://api.pc-cms.tele.quebec/api/applicaster/v1/mobile/search?q={{q}}";
249
+
250
+ const mapping = {
251
+ q: { source: "search", property: "q" },
252
+ };
253
+
254
+ const searchContext = getSearchContext("L'aventure", mapping);
255
+
256
+ const result = getInflatedDataSourceUrl({
257
+ source,
258
+ contexts: {
259
+ search: searchContext,
260
+ },
261
+ mapping,
262
+ });
263
+
264
+ expect(result).toBe(
265
+ "https://api.pc-cms.tele.quebec/api/applicaster/v1/mobile/search?q=L'aventure"
266
+ );
267
+
268
+ expect(result).not.toContain("&#x27;");
269
+ });
245
270
  });
@@ -6,7 +6,11 @@ export { useEntryScreenId } from "./useEntryScreenId";
6
6
 
7
7
  export { useBuildPipesUrl } from "./useBuildPipesUrl";
8
8
 
9
- export { usePipesCacheReset } from "./usePipesCacheReset";
9
+ export {
10
+ useMarkPipesDataStale,
11
+ // eslint-disable-next-line @typescript-eslint/no-deprecated
12
+ usePipesCacheReset,
13
+ } from "./useMarkPipesDataStale";
10
14
 
11
15
  export { useBatchLoading } from "./useBatchLoading";
12
16