@applicaster/zapp-react-native-utils 16.0.0-rc.9 → 16.0.0-rc.91

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 (201) hide show
  1. package/actionsExecutor/ActionExecutor.ts +57 -12
  2. package/actionsExecutor/ActionExecutorContext.tsx +113 -314
  3. package/actionsExecutor/__tests__/ActionExecutor.test.ts +71 -0
  4. package/actionsExecutor/__tests__/feedDecorator.test.ts +61 -0
  5. package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +25 -0
  6. package/actionsExecutor/actions/__tests__/goBack.test.ts +62 -0
  7. package/actionsExecutor/actions/__tests__/goHome.test.ts +19 -0
  8. package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
  9. package/actionsExecutor/actions/__tests__/navigateToScreen.test.ts +133 -0
  10. package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
  11. package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +212 -0
  12. package/actionsExecutor/actions/__tests__/presentScreen.test.ts +127 -0
  13. package/actionsExecutor/actions/__tests__/showAlert.test.ts +49 -0
  14. package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
  15. package/actionsExecutor/actions/appRestart.ts +24 -0
  16. package/actionsExecutor/actions/confirmDialog.ts +53 -0
  17. package/actionsExecutor/actions/dismissBottomSheet.ts +23 -0
  18. package/actionsExecutor/actions/goBack.ts +60 -0
  19. package/actionsExecutor/actions/goHome.ts +31 -0
  20. package/actionsExecutor/actions/index.ts +42 -0
  21. package/actionsExecutor/actions/localStorageRemove.ts +27 -0
  22. package/actionsExecutor/actions/localStorageSet.ts +28 -0
  23. package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
  24. package/actionsExecutor/actions/navigateToScreen.ts +137 -0
  25. package/actionsExecutor/actions/openBottomSheet.ts +329 -0
  26. package/actionsExecutor/actions/presentScreen.ts +78 -0
  27. package/actionsExecutor/actions/refreshComponent.ts +85 -0
  28. package/actionsExecutor/actions/screenSetVariable.ts +35 -0
  29. package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
  30. package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
  31. package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
  32. package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
  33. package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
  34. package/actionsExecutor/actions/showAlert.ts +51 -0
  35. package/actionsExecutor/actions/showToast.ts +87 -0
  36. package/actionsExecutor/actions/switchLayout.ts +40 -0
  37. package/actionsExecutor/consts.ts +27 -0
  38. package/actionsExecutor/feedDecorator.ts +6 -6
  39. package/actionsExecutor/types.ts +59 -0
  40. package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
  41. package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
  42. package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
  43. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
  44. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
  45. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
  46. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
  47. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
  48. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
  49. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
  50. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
  51. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
  52. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
  53. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
  54. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
  55. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
  56. package/analyticsUtils/__tests__/fixtures/index.js +20 -0
  57. package/analyticsUtils/analyticsMapper.ts +4 -1
  58. package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
  59. package/appUtils/HooksManager/index.ts +12 -8
  60. package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
  61. package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
  62. package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
  63. package/appUtils/contextKeysManager/index.ts +1 -1
  64. package/appUtils/contextKeysManager/utils/index.ts +38 -25
  65. package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
  66. package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
  67. package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
  68. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.android.tv.ts +4 -0
  69. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ios.tv.ts +4 -0
  70. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ts +11 -0
  71. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.web.ts +4 -0
  72. package/appUtils/playerManager/OverlayObserver/utils.ts +54 -20
  73. package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
  74. package/appUtils/playerManager/__tests__/playerFactory.test.ts +1 -1
  75. package/appUtils/playerManager/__tests__/playerNative.test.ts +38 -0
  76. package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
  77. package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
  78. package/appUtils/playerManager/index.ts +1 -1
  79. package/appUtils/playerManager/player.ts +115 -3
  80. package/appUtils/playerManager/playerFactory.ts +1 -1
  81. package/appUtils/playerManager/playerNative.ts +6 -4
  82. package/appUtils/playerManager/usePlayerContent.tsx +43 -0
  83. package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
  84. package/appUtils/playerManager/userLanguagePreference.ts +1 -1
  85. package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
  86. package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
  87. package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
  88. package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
  89. package/arrayUtils/__tests__/isFirst.test.ts +17 -0
  90. package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
  91. package/arrayUtils/__tests__/isLast.test.ts +31 -0
  92. package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
  93. package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
  94. package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
  95. package/arrayUtils/__tests__/sample.test.ts +61 -0
  96. package/arrayUtils/index.ts +136 -20
  97. package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
  98. package/bottomSheet/index.ts +17 -0
  99. package/cellUtils/index.ts +33 -8
  100. package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
  101. package/colorUtils/__tests__/isValidColor.test.ts +70 -0
  102. package/colorUtils/index.ts +50 -0
  103. package/configurationUtils/__tests__/manifestKeyParser.test.ts +21 -0
  104. package/configurationUtils/__tests__/modalBlocksParser.test.ts +208 -0
  105. package/configurationUtils/manifestKeyParser.ts +50 -10
  106. package/configurationUtils/modalBlocksParser.ts +200 -0
  107. package/entryActions/__tests__/buildEntryActions.test.ts +235 -0
  108. package/entryActions/aliasPresentation.ts +108 -0
  109. package/entryActions/buildEntryActions.ts +167 -0
  110. package/entryActions/index.ts +15 -0
  111. package/entryActions/types.ts +39 -0
  112. package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
  113. package/manifestUtils/_internals/index.js +14 -3
  114. package/manifestUtils/defaultManifestConfigurations/generalContent.js +41 -0
  115. package/manifestUtils/defaultManifestConfigurations/player.js +349 -20
  116. package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
  117. package/manifestUtils/fieldUtils/index.js +125 -0
  118. package/manifestUtils/index.js +3 -0
  119. package/manifestUtils/keys.js +9 -0
  120. package/manifestUtils/mobileAction/button/index.js +16 -0
  121. package/manifestUtils/mobileAction/container/index.js +3 -1
  122. package/manifestUtils/mobileAction/groups/defaults.js +3 -1
  123. package/manifestUtils/modalBlocks.js +304 -0
  124. package/manifestUtils/platformIsTV.js +1 -0
  125. package/modalState/ContentViewModel.ts +113 -0
  126. package/modalState/EditableCollection.ts +17 -0
  127. package/modalState/EditableCollectionRegistry.ts +51 -0
  128. package/modalState/ModalOrchestrator.ts +211 -0
  129. package/modalState/RemoteEditableCollection.ts +235 -0
  130. package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
  131. package/modalState/__tests__/ContentViewModel.test.ts +165 -0
  132. package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
  133. package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +47 -0
  134. package/modalState/__tests__/RemoteEditableCollection.test.ts +415 -0
  135. package/modalState/__tests__/index.test.ts +30 -1
  136. package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
  137. package/modalState/__tests__/useModalStoreState.test.ts +142 -0
  138. package/modalState/index.ts +35 -83
  139. package/modalState/store.ts +109 -0
  140. package/modalState/types.ts +160 -0
  141. package/modalState/useBottomSheetContent.ts +109 -0
  142. package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
  143. package/numberUtils/__tests__/isZero.test.ts +27 -0
  144. package/numberUtils/__tests__/requireNumber.test.ts +50 -0
  145. package/numberUtils/__tests__/toNumber.test.ts +27 -0
  146. package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
  147. package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
  148. package/numberUtils/index.ts +27 -8
  149. package/package.json +2 -2
  150. package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
  151. package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
  152. package/pipesUtils/index.ts +1 -0
  153. package/pipesUtils/withPipesEndpoint.tsx +54 -0
  154. package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
  155. package/playerUtils/__tests__/resolvePlayerActions.test.ts +138 -0
  156. package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
  157. package/playerUtils/contentDataKeys.ts +134 -0
  158. package/playerUtils/index.ts +41 -18
  159. package/playerUtils/isAudioItem.ts +26 -0
  160. package/playerUtils/resolvePlayerActions.ts +71 -0
  161. package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
  162. package/reactHooks/actions/index.ts +117 -2
  163. package/reactHooks/cell-click/__tests__/index.test.js +64 -0
  164. package/reactHooks/cell-click/index.ts +39 -24
  165. package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
  166. package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
  167. package/reactHooks/feed/index.ts +5 -1
  168. package/reactHooks/feed/useBatchLoading.ts +9 -1
  169. package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
  170. package/reactHooks/index.ts +2 -0
  171. package/reactHooks/layout/index.ts +1 -1
  172. package/reactHooks/navigation/__mocks__/index.ts +4 -0
  173. package/reactHooks/navigation/__tests__/index.test.tsx +176 -1
  174. package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
  175. package/reactHooks/navigation/__tests__/usePresentScreen.test.ts +154 -0
  176. package/reactHooks/navigation/index.ts +3 -1
  177. package/reactHooks/navigation/useIsScreenActive.ts +29 -8
  178. package/reactHooks/navigation/usePresentScreen.ts +157 -0
  179. package/reactHooks/navigation/useRoute.ts +22 -5
  180. package/reactHooks/state/useComponentScreenState.ts +1 -1
  181. package/reactHooks/usePluginConfiguration.ts +4 -1
  182. package/reactHooks/utils/__tests__/index.test.js +22 -2
  183. package/reactHooks/utils/index.ts +13 -2
  184. package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
  185. package/riverComponetsMeasurementProvider/index.tsx +12 -8
  186. package/stringUtils/__tests__/stringUtils.test.js +42 -0
  187. package/stringUtils/index.ts +2 -2
  188. package/uiActionsRegistrator/__tests__/resolveActionIdentifiers.test.ts +93 -0
  189. package/uiActionsRegistrator/__tests__/subscribe.test.ts +107 -0
  190. package/uiActionsRegistrator/__tests__/usableActionItems.test.ts +52 -0
  191. package/uiActionsRegistrator/index.ts +25 -0
  192. package/uiActionsRegistrator/registry.ts +335 -0
  193. package/uiActionsRegistrator/resolveActionIdentifiers.ts +100 -0
  194. package/uiActionsRegistrator/usableActionItems.ts +66 -0
  195. package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
  196. package/zappFrameworkUtils/localStorageHelper.ts +19 -15
  197. package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
  198. package/playerUtils/__tests__/getPlayerActionButtons.test.ts +0 -54
  199. package/playerUtils/getPlayerActionButtons.ts +0 -17
  200. package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
  201. /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
@@ -2,10 +2,10 @@ import { localStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/
2
2
  import { isNilOrEmpty } from "../reactUtils/helpers";
3
3
  import { parseJsonIfNeeded } from "@applicaster/zapp-react-native-utils/functionUtils";
4
4
  import {
5
- StorageOwnedValues,
6
5
  NamespaceValues,
7
- StorageValuesToRemove,
6
+ StorageOwnedValues,
8
7
  StorageValuesToAdd,
8
+ StorageValuesToRemove,
9
9
  } from "./types";
10
10
  import { Storage } from "@applicaster/zapp-react-native-bridge/ZappStorage/Storage";
11
11
 
@@ -43,10 +43,10 @@ function mapOwnedKeysToAdd(
43
43
  ): StorageOwnedValues {
44
44
  const mappedData = {};
45
45
 
46
- Object.keys(storageValues).forEach((namespace: string) => {
46
+ for (const namespace of Object.keys(storageValues)) {
47
47
  const data = storageValues[namespace];
48
48
  mappedData[namespace] = Object.keys(data);
49
- });
49
+ }
50
50
 
51
51
  return mappedData;
52
52
  }
@@ -59,6 +59,8 @@ export async function batchSave(
59
59
  return false;
60
60
  }
61
61
 
62
+ const promises = [];
63
+
62
64
  for (const namespace of Object.keys(storageValues)) {
63
65
  const namespaceData = storageValues[namespace];
64
66
 
@@ -66,10 +68,12 @@ export async function batchSave(
66
68
  const value = namespaceData[key];
67
69
 
68
70
  if (!isNilOrEmpty(value)) {
69
- await storage.setItem(key, value, namespace);
71
+ promises.push(storage.setItem(key, value, namespace));
70
72
  }
71
73
  }
72
74
  }
75
+
76
+ await Promise.all(promises);
73
77
  }
74
78
 
75
79
  export async function batchSaveToLocalStorage(
@@ -82,13 +86,17 @@ export async function batchRemoveFromStorage(
82
86
  storageValues: StorageValuesToRemove,
83
87
  storage: Storage = localStorage
84
88
  ) {
89
+ const promises = [];
90
+
85
91
  for (const namespace of Object.keys(storageValues)) {
86
92
  const namespaceData = storageValues[namespace];
87
93
 
88
94
  for (const key of namespaceData) {
89
- await storage.removeItem(key, namespace);
95
+ promises.push(storage.removeItem(key, namespace));
90
96
  }
91
97
  }
98
+
99
+ await Promise.all(promises);
92
100
  }
93
101
 
94
102
  export async function batchRemoveFromLocalStorage(
@@ -111,12 +119,12 @@ async function addOwnedKeys({
111
119
  ownershipNamespace
112
120
  );
113
121
 
114
- Object.keys(newKeys).forEach(async (namespace: string) => {
122
+ for (const namespace of Object.keys(newKeys)) {
115
123
  const newOwnedKeys: string[] = newKeys[namespace];
116
124
  const currentKeys = allStoragedOwnedKeys[namespace] || [];
117
125
  const combinedSet = new Set([...currentKeys, ...newOwnedKeys]);
118
126
  allStoragedOwnedKeys[namespace] = Array.from(combinedSet);
119
- });
127
+ }
120
128
 
121
129
  const data = JSON.stringify(allStoragedOwnedKeys);
122
130
  await localStorage.setItem(ownershipKey, data, ownershipNamespace);
@@ -136,18 +144,14 @@ async function removeOwnedKeys({
136
144
  ownershipNamespace
137
145
  );
138
146
 
139
- Object.keys(toRemoveKeys).forEach(async (namespace: string) => {
147
+ for (const namespace of Object.keys(toRemoveKeys)) {
140
148
  const keysToRemove: string[] = toRemoveKeys[namespace] || [];
141
149
  const currentKeys: string[] = currentKeysList[namespace] || [];
142
150
 
143
151
  const storageOwnedSet = new Set(currentKeys);
144
152
  const keysToRemoveSet = new Set(keysToRemove);
145
153
 
146
- function removeAll(originalSet, toBeRemovedSet) {
147
- toBeRemovedSet.forEach(Set.prototype.delete, originalSet);
148
- }
149
-
150
- removeAll(storageOwnedSet, keysToRemoveSet);
154
+ keysToRemoveSet.forEach((key) => storageOwnedSet.delete(key));
151
155
  const newLoginKeys = Array.from(storageOwnedSet);
152
156
 
153
157
  if (isNilOrEmpty(newLoginKeys)) {
@@ -155,7 +159,7 @@ async function removeOwnedKeys({
155
159
  } else {
156
160
  currentKeysList[namespace] = newLoginKeys;
157
161
  }
158
- });
162
+ }
159
163
 
160
164
  if (isNilOrEmpty(currentKeysList)) {
161
165
  await localStorage.removeItem(ownershipKey, ownershipNamespace);
@@ -1,56 +0,0 @@
1
- import { useEffect, useState } from "react";
2
- import { OverlaysObserver } from "./OverlayObserver/OverlaysObserver";
3
- import { useFeedLoader } from "../../reactHooks";
4
- import { usePlayer } from "./usePlayer";
5
-
6
- const getLiveUrl = (url: string) => {
7
- // Use the replace method with a regular expression to replace all instances of subClass with livePage
8
- return url.replace(new RegExp("subClass", "g"), "livePage");
9
- };
10
-
11
- export const useTitleSummaryOverlay = (
12
- entry,
13
- isLive = false,
14
- interval: number
15
- ) => {
16
- // TODO: Have generic place for live url from configuration. Currently its hardcoded for client.
17
- const feedUrl = getLiveUrl(entry?.extensions?.live?.channel_src ?? "");
18
- const player = usePlayer();
19
- const [title, setTitle] = useState<string | number>(entry?.title || "");
20
- const [summary, setSummary] = useState<string | number>(entry?.summary || "");
21
-
22
- // Hook to load feed data
23
- const { data: feedData, reloadData } = useFeedLoader({ feedUrl });
24
-
25
- useEffect(() => {
26
- if (player && feedUrl && isLive) {
27
- const observer = new OverlaysObserver({ player });
28
-
29
- observer.setFeedDataHandlers(feedUrl, reloadData, interval, (entry) => {
30
- setTitle(entry?.title || "");
31
- setSummary(entry?.summary || "");
32
- });
33
-
34
- const subscription = observer
35
- .getTitleSummaryObservable()
36
- .subscribe(({ title, summary }) => {
37
- setTitle(title);
38
- setSummary(summary);
39
- });
40
-
41
- return () => {
42
- subscription.unsubscribe();
43
- observer.clearFeedDataInterval();
44
- };
45
- }
46
- }, [player, feedUrl, reloadData, isLive]);
47
-
48
- useEffect(() => {
49
- if (isLive && feedData?.entry?.[0]) {
50
- setTitle(feedData.entry[0].title || "");
51
- setSummary(feedData.entry[0].summary || "");
52
- }
53
- }, [feedData]);
54
-
55
- return { title, summary };
56
- };
@@ -1,54 +0,0 @@
1
- import { getPlayerActionButtons } from "../getPlayerActionButtons";
2
- import { selectActionButtons } from "../../conf/player/selectors";
3
-
4
- jest.mock("../../conf/player/selectors", () => ({
5
- selectActionButtons: jest.fn(),
6
- }));
7
-
8
- describe("getPlayerActionButtons", () => {
9
- afterEach(() => {
10
- jest.clearAllMocks();
11
- });
12
-
13
- it("returns an empty array if selectActionButtons returns undefined", () => {
14
- (selectActionButtons as jest.Mock).mockReturnValue(undefined);
15
- const result = getPlayerActionButtons({});
16
- expect(result).toEqual([]);
17
- });
18
-
19
- it("returns an empty array if selectActionButtons returns null", () => {
20
- (selectActionButtons as jest.Mock).mockReturnValue(null);
21
- const result = getPlayerActionButtons({});
22
- expect(result).toEqual([]);
23
- });
24
-
25
- it("returns an empty array if selectActionButtons returns empty string", () => {
26
- (selectActionButtons as jest.Mock).mockReturnValue("");
27
- const result = getPlayerActionButtons({});
28
- expect(result).toEqual([]);
29
- });
30
-
31
- it("returns the first two trimmed action buttons", () => {
32
- (selectActionButtons as jest.Mock).mockReturnValue(" play , pause , stop ");
33
- const result = getPlayerActionButtons({});
34
- expect(result).toEqual(["play", "pause"]);
35
- });
36
-
37
- it("returns only one button if only one is present", () => {
38
- (selectActionButtons as jest.Mock).mockReturnValue(" play ");
39
- const result = getPlayerActionButtons({});
40
- expect(result).toEqual(["play"]);
41
- });
42
-
43
- it("trims whitespace from button names", () => {
44
- (selectActionButtons as jest.Mock).mockReturnValue(" play , pause ");
45
- const result = getPlayerActionButtons({});
46
- expect(result).toEqual(["play", "pause"]);
47
- });
48
-
49
- it("returns an empty array if selectActionButtons returns only commas", () => {
50
- (selectActionButtons as jest.Mock).mockReturnValue(" , , ");
51
- const result = getPlayerActionButtons({});
52
- expect(result).toEqual(["", ""]);
53
- });
54
- });
@@ -1,17 +0,0 @@
1
- import { map, take, trim } from "../utils";
2
- import { selectActionButtons } from "../conf/player/selectors";
3
-
4
- /**
5
- * Returns the first two action buttons from the configuration.
6
- * @param {Object} configuration - The player configuration object.
7
- * @returns {Array} An array containing the first two action buttons.
8
- */
9
- export const getPlayerActionButtons = (configuration: any) => {
10
- const buttonsString = selectActionButtons(configuration);
11
-
12
- if (!buttonsString) {
13
- return [];
14
- }
15
-
16
- return take(2, map(buttonsString.split(","), trim));
17
- };
@@ -1 +0,0 @@
1
- export const usePipesCacheReset = jest.fn();