@applicaster/zapp-react-native-utils 16.0.0-rc.6 → 16.0.0-rc.60

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 (161) hide show
  1. package/actionsExecutor/ActionExecutor.ts +47 -11
  2. package/actionsExecutor/ActionExecutorContext.tsx +87 -316
  3. package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +22 -0
  4. package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
  5. package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
  6. package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +130 -0
  7. package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
  8. package/actionsExecutor/actions/appRestart.ts +24 -0
  9. package/actionsExecutor/actions/confirmDialog.ts +53 -0
  10. package/actionsExecutor/actions/dismissBottomSheet.ts +22 -0
  11. package/actionsExecutor/actions/index.ts +34 -0
  12. package/actionsExecutor/actions/localStorageRemove.ts +27 -0
  13. package/actionsExecutor/actions/localStorageSet.ts +28 -0
  14. package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
  15. package/actionsExecutor/actions/navigateToScreen.ts +123 -0
  16. package/actionsExecutor/actions/openBottomSheet.ts +322 -0
  17. package/actionsExecutor/actions/refreshComponent.ts +85 -0
  18. package/actionsExecutor/actions/screenSetVariable.ts +35 -0
  19. package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
  20. package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
  21. package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
  22. package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
  23. package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
  24. package/actionsExecutor/actions/showToast.ts +87 -0
  25. package/actionsExecutor/actions/switchLayout.ts +40 -0
  26. package/actionsExecutor/consts.ts +23 -0
  27. package/actionsExecutor/types.ts +59 -0
  28. package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
  29. package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
  30. package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
  31. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
  32. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
  33. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
  34. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
  35. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
  36. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
  37. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
  38. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
  39. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
  40. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
  41. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
  42. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
  43. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
  44. package/analyticsUtils/__tests__/fixtures/index.js +20 -0
  45. package/analyticsUtils/analyticsMapper.ts +4 -1
  46. package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
  47. package/appUtils/HooksManager/index.ts +12 -8
  48. package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
  49. package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
  50. package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
  51. package/appUtils/contextKeysManager/index.ts +1 -1
  52. package/appUtils/contextKeysManager/utils/index.ts +38 -25
  53. package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
  54. package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
  55. package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
  56. package/appUtils/playerManager/OverlayObserver/utils.ts +49 -20
  57. package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
  58. package/appUtils/playerManager/__tests__/playerFactory.test.ts +150 -0
  59. package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
  60. package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
  61. package/appUtils/playerManager/index.ts +1 -1
  62. package/appUtils/playerManager/player.ts +115 -3
  63. package/appUtils/playerManager/playerFactory.ts +18 -35
  64. package/appUtils/playerManager/playerNative.ts +1 -1
  65. package/appUtils/playerManager/usePlayerContent.tsx +43 -0
  66. package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
  67. package/appUtils/playerManager/userLanguagePreference.ts +1 -1
  68. package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
  69. package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
  70. package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
  71. package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
  72. package/arrayUtils/__tests__/isFirst.test.ts +17 -0
  73. package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
  74. package/arrayUtils/__tests__/isLast.test.ts +31 -0
  75. package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
  76. package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
  77. package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
  78. package/arrayUtils/__tests__/sample.test.ts +61 -0
  79. package/arrayUtils/index.ts +136 -20
  80. package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
  81. package/bottomSheet/index.ts +17 -0
  82. package/cellUtils/index.ts +3 -5
  83. package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
  84. package/colorUtils/__tests__/isValidColor.test.ts +70 -0
  85. package/colorUtils/index.ts +50 -0
  86. package/configurationUtils/__tests__/modalBlocksParser.test.ts +107 -0
  87. package/configurationUtils/manifestKeyParser.ts +38 -9
  88. package/configurationUtils/modalBlocksParser.ts +178 -0
  89. package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
  90. package/manifestUtils/_internals/index.js +6 -0
  91. package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -0
  92. package/manifestUtils/defaultManifestConfigurations/player.js +327 -19
  93. package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
  94. package/manifestUtils/fieldUtils/index.js +125 -0
  95. package/manifestUtils/index.js +3 -0
  96. package/manifestUtils/keys.js +9 -0
  97. package/manifestUtils/mobileAction/button/index.js +16 -0
  98. package/manifestUtils/mobileAction/container/index.js +3 -1
  99. package/manifestUtils/mobileAction/groups/defaults.js +3 -1
  100. package/manifestUtils/modalBlocks.js +304 -0
  101. package/manifestUtils/platformIsTV.js +1 -0
  102. package/modalState/ContentViewModel.ts +113 -0
  103. package/modalState/EditableCollection.ts +17 -0
  104. package/modalState/EditableCollectionRegistry.ts +51 -0
  105. package/modalState/ModalOrchestrator.ts +201 -0
  106. package/modalState/RemoteEditableCollection.ts +227 -0
  107. package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
  108. package/modalState/__tests__/ContentViewModel.test.ts +165 -0
  109. package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
  110. package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +55 -0
  111. package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
  112. package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
  113. package/modalState/index.ts +30 -83
  114. package/modalState/store.ts +102 -0
  115. package/modalState/types.ts +137 -0
  116. package/modalState/useBottomSheetContent.ts +102 -0
  117. package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
  118. package/numberUtils/__tests__/isZero.test.ts +27 -0
  119. package/numberUtils/__tests__/requireNumber.test.ts +50 -0
  120. package/numberUtils/__tests__/toNumber.test.ts +27 -0
  121. package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
  122. package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
  123. package/numberUtils/index.ts +27 -8
  124. package/package.json +2 -2
  125. package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
  126. package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
  127. package/pipesUtils/index.ts +1 -0
  128. package/pipesUtils/withPipesEndpoint.tsx +54 -0
  129. package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
  130. package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
  131. package/playerUtils/contentDataKeys.ts +134 -0
  132. package/playerUtils/index.ts +41 -14
  133. package/playerUtils/isAudioItem.ts +26 -0
  134. package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
  135. package/reactHooks/actions/index.ts +51 -1
  136. package/reactHooks/cell-click/index.ts +18 -10
  137. package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
  138. package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
  139. package/reactHooks/feed/index.ts +5 -1
  140. package/reactHooks/feed/useBatchLoading.ts +9 -1
  141. package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
  142. package/reactHooks/index.ts +2 -0
  143. package/reactHooks/layout/index.ts +1 -1
  144. package/reactHooks/navigation/__mocks__/index.ts +4 -0
  145. package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
  146. package/reactHooks/navigation/index.ts +1 -1
  147. package/reactHooks/navigation/useIsScreenActive.ts +29 -8
  148. package/reactHooks/state/useComponentScreenState.ts +1 -1
  149. package/reactHooks/usePluginConfiguration.ts +4 -1
  150. package/reactHooks/utils/__tests__/index.test.js +22 -2
  151. package/reactHooks/utils/index.ts +13 -2
  152. package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
  153. package/riverComponetsMeasurementProvider/index.tsx +12 -8
  154. package/stringUtils/__tests__/stringUtils.test.js +42 -0
  155. package/stringUtils/index.ts +2 -2
  156. package/uiActionsRegistrator/index.ts +203 -0
  157. package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
  158. package/zappFrameworkUtils/localStorageHelper.ts +19 -15
  159. package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
  160. package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
  161. /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
@@ -3,17 +3,16 @@ import * as R from "ramda";
3
3
  import { invariant } from "@applicaster/zapp-react-native-utils/errorUtils";
4
4
 
5
5
  /**
6
- * shifts an array by the given offset. a negative offset will take items
7
- * from the end of the array and add them at the beginning, while a positive offset
8
- * will take an item at the beginning and shift it to the end
9
- * shiftArray(-1, [1,2,3,4]) => [4, 1, 2, 3]
10
- * shiftArray(1, [1,2,3,4]) => [2, 3, 4, 1]
11
- * an offset of 0 leaves the array unchanged
12
- * this function returns a new array and doesn't mutate the original one
13
- * curried function which can be invoked like offset => array => result
14
- * @param {Number} offset offset to shift the array
15
- * @param {Array<T>} array array to shift
16
- * @returns {Array<T>}
6
+ * Shifts an array by the given offset and returns a new array (does not mutate).
7
+ * A positive offset moves items from the head to the tail;
8
+ * a negative offset moves items from the tail to the head.
9
+ * An offset of `0` leaves the order unchanged.
10
+ *
11
+ * Curried (Ramda): `shiftArray(offset)(array)` or `shiftArray(offset, array)`.
12
+ *
13
+ * @example
14
+ * shiftArray(-1, [1, 2, 3, 4]) // => [4, 1, 2, 3]
15
+ * shiftArray(1, [1, 2, 3, 4]) // => [2, 3, 4, 1]
17
16
  */
18
17
  export const shiftArray = R.curry(
19
18
  <T extends unknown>(offset: number, array: T[]): T[] => {
@@ -25,10 +24,9 @@ export const shiftArray = R.curry(
25
24
  );
26
25
 
27
26
  /**
28
- * Tries to remove an item from an array, and returns the array if the item is not found
29
- * @param {any} item to remove
30
- * @param {Array<any>} list to remove the item from
31
- * @returns {Array<any>}
27
+ * Removes the first item equal to `item` from `list` (Ramda `equals` / deep equality).
28
+ * If the item is not found, returns the same list reference; otherwise returns a new
29
+ * array without that element.
32
30
  */
33
31
  export function removeItemFromList<T extends unknown>(item: T, list: T[]): T[] {
34
32
  return R.compose(
@@ -37,6 +35,12 @@ export function removeItemFromList<T extends unknown>(item: T, list: T[]): T[] {
37
35
  )(list);
38
36
  }
39
37
 
38
+ /**
39
+ * Maps each value to a promise and resolves them all in parallel via `Promise.all`.
40
+ * The mapper receives `(value, index)`.
41
+ *
42
+ * Curried (Ramda): `mapPromises(fn)(values)` or `mapPromises(fn, values)`.
43
+ */
40
44
  export const mapPromises = R.curry(
41
45
  <T extends unknown, S extends unknown>(
42
46
  fn: (value: T, index?: number) => Promise<S>,
@@ -44,6 +48,10 @@ export const mapPromises = R.curry(
44
48
  ): Promise<S[]> => Promise.all(R.addIndex(R.map)(R.nAry(2, fn), values))
45
49
  );
46
50
 
51
+ /**
52
+ * Awaits `previousPromise`, then runs `fn(currentValue, previousValue, index)`.
53
+ * Used internally by `reducePromises` as a Ramda-indexed reducer step.
54
+ */
47
55
  const waitForPromiseAndRun = R.curryN(
48
56
  3,
49
57
  async <T extends unknown, S extends unknown>(
@@ -58,6 +66,14 @@ const waitForPromiseAndRun = R.curryN(
58
66
  }
59
67
  );
60
68
 
69
+ /**
70
+ * Reduces a list by applying an async function sequentially.
71
+ * Each step awaits the previous result, then calls `fn(current, previous, index)`.
72
+ * An empty list resolves to `initialValue` without calling `fn`.
73
+ *
74
+ * Curried (Ramda): `reducePromises(fn)(initialValue)(values)` or
75
+ * `reducePromises(fn, initialValue, values)`.
76
+ */
61
77
  export const reducePromises = R.curry(
62
78
  <T extends unknown, S extends unknown>(
63
79
  fn: (current: T, previous: S, index?: number) => Promise<S>,
@@ -71,18 +87,32 @@ export const reducePromises = R.curry(
71
87
  )
72
88
  );
73
89
 
90
+ /**
91
+ * Returns a function that maps a list with `mapperFn`, then splits the result
92
+ * into chunks of size `chunks` (`R.splitEvery`).
93
+ *
94
+ * Curried (Ramda): `mapAndSplit(mapperFn, chunks)(values)`.
95
+ */
74
96
  export const mapAndSplit = R.curry(
75
97
  <T extends unknown, S extends unknown>(
76
- mapperFn: (T) => S,
98
+ mapperFn: (value: T) => S,
77
99
  chunks: number
78
- ): S[][] => R.compose(R.splitEvery(chunks), R.map(mapperFn))
100
+ ): ((values: T[]) => S[][]) =>
101
+ (values: T[]) =>
102
+ R.splitEvery(chunks, R.map(mapperFn, values))
79
103
  );
80
104
 
105
+ /** Returns `true` when `index` is at or past the last position (`length - 1`). */
81
106
  export const isLast = (index: number, length: number): boolean =>
82
107
  index >= length - 1;
83
108
 
109
+ /** Returns `true` when `index` is `0` or negative. */
84
110
  export const isFirst = (index: number): boolean => index <= 0;
85
111
 
112
+ /**
113
+ * Returns `true` when `index` is a valid zero-based index for a list of the
114
+ * given `length`. Returns `false` for empty/negative lengths or negative indexes.
115
+ */
86
116
  export const isIndexInRange = (index: number, length: number): boolean => {
87
117
  if (length <= 0) return false;
88
118
  if (index < 0) return false;
@@ -90,24 +120,29 @@ export const isIndexInRange = (index: number, length: number): boolean => {
90
120
  return index + 1 <= length;
91
121
  };
92
122
 
123
+ /** Builds `[0, 1, ..., size - 1]`. Negative or zero `size` yields `[]`. */
93
124
  export const makeListOfIndexes = (size: number): number[] =>
94
125
  Array.from({ length: size }, (_, index) => index);
95
126
 
127
+ /** Builds an array of the given `size` filled with `value`. */
96
128
  export const makeListOf = <T>(value: T, size: number): T[] => {
97
129
  return Array(size).fill(value);
98
130
  };
99
131
 
100
- /** Checks if a value is a non-empty array */
132
+ /** Checks if a value is a non-empty array. */
101
133
  export function isFilledArray(value: unknown): boolean {
102
134
  return Array.isArray(value) && value.length > 0;
103
135
  }
104
136
 
105
- /** Checks if a value is a empty array */
137
+ /** Checks if a value is an empty array. */
106
138
  export function isEmptyArray(value: unknown): boolean {
107
139
  return Array.isArray(value) && value.length === 0;
108
140
  }
109
141
 
110
- // get random item from the list
142
+ /**
143
+ * Returns a random item from a non-empty array.
144
+ * Throws (in development via `invariant`) if the input is not an array or is empty.
145
+ */
111
146
  export const sample = (xs: unknown[]): unknown => {
112
147
  invariant(Array.isArray(xs), `input value is not an array: ${xs}`);
113
148
  invariant(isFilledArray(xs), `input array is empty: ${xs}`);
@@ -117,7 +152,88 @@ export const sample = (xs: unknown[]): unknown => {
117
152
  return xs[index];
118
153
  };
119
154
 
155
+ /** Returns `true` when `xs` is non-empty and every value is truthy. */
120
156
  export const allTruthy = (xs: boolean[]) =>
121
157
  isFilledArray(xs) && xs.every(Boolean);
122
158
 
159
+ /** Returns `true` when at least one value in `xs` is truthy. */
123
160
  export const anyTruthy = (xs: boolean[]) => xs.some(Boolean);
161
+
162
+ /**
163
+ * Reorders `items` based on an ordered array of IDs (`orderedIds`).
164
+ * Items whose IDs are in `orderedIds` appear first in that exact sequence.
165
+ * Any remaining items not present in `orderedIds` are appended at the end preserving their relative order.
166
+ */
167
+ export function reorderByIds<T>(
168
+ items: T[],
169
+ orderedIds: string[],
170
+ getId: (item: T) => string | string[] = (item: any) => item?.id
171
+ ): T[] {
172
+ if (!items || items.length === 0) return [];
173
+ if (!orderedIds || orderedIds.length === 0) return [...items];
174
+
175
+ const itemMap = new Map<string, T>();
176
+
177
+ items.forEach((item) => {
178
+ const rawId = getId(item);
179
+ const keys = Array.isArray(rawId) ? rawId : [rawId];
180
+
181
+ keys.forEach((key) => {
182
+ if (key !== undefined && key !== null && key !== "") {
183
+ itemMap.set(String(key), item);
184
+ }
185
+ });
186
+ });
187
+
188
+ const reorderedSubset: T[] = [];
189
+ const orderedIdsSet = new Set<string>();
190
+
191
+ orderedIds.forEach((id) => {
192
+ const strId = String(id);
193
+ const item = itemMap.get(strId);
194
+
195
+ if (item && !reorderedSubset.includes(item)) {
196
+ reorderedSubset.push(item);
197
+ const rawId = getId(item);
198
+ const keys = Array.isArray(rawId) ? rawId : [rawId];
199
+
200
+ keys.forEach((k) => {
201
+ if (k !== undefined && k !== null && k !== "") {
202
+ orderedIdsSet.add(String(k));
203
+ }
204
+ });
205
+ }
206
+ });
207
+
208
+ if (reorderedSubset.length === 0) return [...items];
209
+
210
+ let subsetIdx = 0;
211
+ const result: T[] = [];
212
+
213
+ items.forEach((item) => {
214
+ const rawId = getId(item);
215
+ const keys = Array.isArray(rawId) ? rawId : [rawId];
216
+
217
+ const isMatched = keys.some(
218
+ (k) =>
219
+ k !== undefined &&
220
+ k !== null &&
221
+ k !== "" &&
222
+ orderedIdsSet.has(String(k))
223
+ );
224
+
225
+ if (isMatched) {
226
+ if (subsetIdx < reorderedSubset.length) {
227
+ result.push(reorderedSubset[subsetIdx++]);
228
+ }
229
+ } else {
230
+ result.push(item);
231
+ }
232
+ });
233
+
234
+ while (subsetIdx < reorderedSubset.length) {
235
+ result.push(reorderedSubset[subsetIdx++]);
236
+ }
237
+
238
+ return result;
239
+ }
@@ -0,0 +1,35 @@
1
+ import React from "react";
2
+ import { Text } from "react-native";
3
+ import { render, screen } from "@testing-library/react-native";
4
+ import { BottomSheetContext, useBottomSheet } from "../index";
5
+
6
+ const Probe = () => {
7
+ const ctx = useBottomSheet();
8
+
9
+ return <Text testID="probe">{ctx ? "has-context" : "no-context"}</Text>;
10
+ };
11
+
12
+ describe("useBottomSheet", () => {
13
+ it("returns null when no provider is present", () => {
14
+ render(<Probe />);
15
+ expect(screen.getByTestId("probe")).toHaveTextContent("no-context");
16
+ });
17
+
18
+ it("returns the provided value inside a provider", () => {
19
+ const value = {
20
+ scrollRef: React.createRef<any>(),
21
+ masterDrawerRef: React.createRef<any>(),
22
+ setBodyDragEnabled: jest.fn(),
23
+ onDragGestureEvent: jest.fn(),
24
+ onDragStateChange: jest.fn(),
25
+ };
26
+
27
+ render(
28
+ <BottomSheetContext.Provider value={value}>
29
+ <Probe />
30
+ </BottomSheetContext.Provider>
31
+ );
32
+
33
+ expect(screen.getByTestId("probe")).toHaveTextContent("has-context");
34
+ });
35
+ });
@@ -0,0 +1,17 @@
1
+ import { createContext, useContext, RefObject } from "react";
2
+
3
+ export type BottomSheetContextValue = {
4
+ /** The sheet's master TapGestureHandler ref — the scrollable waits for it. */
5
+ masterDrawerRef: RefObject<any>;
6
+ /** Header drag-zone wiring: the sheet's pan gesture event handler. */
7
+ onDragGestureEvent: (...args: any[]) => void;
8
+ /** Header drag-zone wiring: the sheet's pan state-change handler. */
9
+ onDragStateChange: (event: { nativeEvent: any }) => void;
10
+ };
11
+
12
+ export const BottomSheetContext = createContext<BottomSheetContextValue | null>(
13
+ null
14
+ );
15
+
16
+ export const useBottomSheet = (): BottomSheetContextValue | null =>
17
+ useContext(BottomSheetContext);
@@ -1,7 +1,7 @@
1
1
  import * as R from "ramda";
2
2
  import { dayjs } from "../dateUtils";
3
- import validateColor from "validate-color";
4
3
 
4
+ import { isValidColor } from "@applicaster/zapp-react-native-utils/colorUtils";
5
5
  import { transformColorCode as fixColorHexCode } from "@applicaster/zapp-react-native-utils/transform";
6
6
  import {
7
7
  capitalize,
@@ -468,15 +468,13 @@ export const getColorFromData = ({
468
468
  data,
469
469
  valueFromLayout,
470
470
  }: GetColorFromData): string => {
471
- // Temporary hack to fix color validation when alpha is floating point number
472
- // https://github.com/dreamyguy/validate-color/issues/44
473
- if (validateColor(valueFromLayout.replace(".00", ""))) {
471
+ if (isValidColor(valueFromLayout)) {
474
472
  return valueFromLayout;
475
473
  }
476
474
 
477
475
  const pathValue = R.path(valueFromLayout.split("."), data);
478
476
 
479
- if (pathValue && validateColor(pathValue)) {
477
+ if (pathValue && isValidColor(pathValue)) {
480
478
  return pathValue;
481
479
  }
482
480
 
@@ -0,0 +1,76 @@
1
+ import { isTransparentColor } from "..";
2
+
3
+ describe("isTransparentColor", () => {
4
+ it("returns true for transparent keyword and rgba colors with zero alpha", () => {
5
+ const transparentColors = [
6
+ "transparent",
7
+ "rgba(0,0,0,0)",
8
+ "rgba(255, 255, 255, 0)",
9
+ "rgba(0,0,0,0.0)",
10
+ "rgba(0,0,0,0.00)",
11
+ "rgba(0,0,0, 0)",
12
+ "hsla(0,0%,0%,0)",
13
+ ];
14
+
15
+ expect.assertions(transparentColors.length);
16
+
17
+ transparentColors.forEach((color) => {
18
+ expect(isTransparentColor(color)).toBe(true);
19
+ });
20
+ });
21
+
22
+ it("returns false for valid colors that are not fully transparent", () => {
23
+ const nonTransparentColors = [
24
+ "red",
25
+ "#fff",
26
+ "#ffffff",
27
+ "rgb(0,0,0)",
28
+ "rgba(0,0,0)",
29
+ "rgba(0,0,0,0.5)",
30
+ "rgba(255, 255, 255, 0.3)",
31
+ "rgba(255, 255, 255, 1.0)",
32
+ "rgba(239,239,239,1.0)",
33
+ "currentColor",
34
+ "inherit",
35
+ "#00000000",
36
+ "#fff0",
37
+ ];
38
+
39
+ expect.assertions(nonTransparentColors.length);
40
+
41
+ nonTransparentColors.forEach((color) => {
42
+ expect(isTransparentColor(color)).toBe(false);
43
+ });
44
+ });
45
+
46
+ it("returns false for case variants of the transparent keyword", () => {
47
+ expect(isTransparentColor("Transparent")).toBe(false);
48
+ expect(isTransparentColor("TRANSPARENT")).toBe(false);
49
+ });
50
+
51
+ it("returns false for invalid color strings", () => {
52
+ const invalidColors = [
53
+ "invalid",
54
+ "",
55
+ "#gggggg",
56
+ "#fff.00",
57
+ "unset",
58
+ " rgba(0,0,0,0) ",
59
+ "transparent ",
60
+ ];
61
+
62
+ expect.assertions(invalidColors.length);
63
+
64
+ invalidColors.forEach((color) => {
65
+ expect(isTransparentColor(color)).toBe(false);
66
+ });
67
+ });
68
+
69
+ it("returns false for nullish and non-string values", () => {
70
+ expect(isTransparentColor(undefined)).toBe(false);
71
+ expect(isTransparentColor(null)).toBe(false);
72
+ expect(isTransparentColor(123)).toBe(false);
73
+ expect(isTransparentColor({})).toBe(false);
74
+ expect(isTransparentColor([])).toBe(false);
75
+ });
76
+ });
@@ -0,0 +1,70 @@
1
+ import { isValidColor } from "..";
2
+
3
+ describe("isValidColor", () => {
4
+ it("returns true for valid hex colors", () => {
5
+ const validHexColors = ["#fff", "#ffffff", "#FF0000", "#000", "#abc123"];
6
+
7
+ expect.assertions(validHexColors.length);
8
+
9
+ validHexColors.forEach((color) => {
10
+ expect(isValidColor(color)).toBe(true);
11
+ });
12
+ });
13
+
14
+ it("returns true for valid rgb and rgba colors", () => {
15
+ const validRgbColors = [
16
+ "rgb(255,0,0)",
17
+ "rgb(255, 0, 0)",
18
+ "rgba(255,0,0,0.5)",
19
+ "rgba(255, 0, 0, 0.5)",
20
+ ];
21
+
22
+ expect.assertions(validRgbColors.length);
23
+
24
+ validRgbColors.forEach((color) => {
25
+ expect(isValidColor(color)).toBe(true);
26
+ });
27
+ });
28
+
29
+ it("returns true for valid named and special CSS colors", () => {
30
+ const validNamedColors = ["red", "transparent", "currentColor", "inherit"];
31
+
32
+ expect.assertions(validNamedColors.length);
33
+
34
+ validNamedColors.forEach((color) => {
35
+ expect(isValidColor(color)).toBe(true);
36
+ });
37
+ });
38
+
39
+ it("returns true for valid hsl colors", () => {
40
+ expect(isValidColor("hsl(0, 100%, 50%)")).toBe(true);
41
+ });
42
+
43
+ it("returns false for invalid color strings", () => {
44
+ const invalidColors = [
45
+ "invalid",
46
+ "",
47
+ "#gggggg",
48
+ "#fff.00",
49
+ "unset",
50
+ undefined,
51
+ null,
52
+ ];
53
+
54
+ expect.assertions(invalidColors.length);
55
+
56
+ invalidColors.forEach((color) => {
57
+ expect(isValidColor(color)).toBe(false);
58
+ });
59
+ });
60
+
61
+ it("returns true for valid rgb and rgba colors", () => {
62
+ const validRgbColors = ["rgba(239,239,239,1.0)"];
63
+
64
+ expect.assertions(validRgbColors.length);
65
+
66
+ validRgbColors.forEach((color) => {
67
+ expect(isValidColor(color)).toBe(true);
68
+ });
69
+ });
70
+ });
@@ -0,0 +1,50 @@
1
+ import validateColor from "validate-color";
2
+ import { isNil } from "@applicaster/zapp-react-native-utils/utils";
3
+ import { isString } from "@applicaster/zapp-react-native-utils/stringUtils";
4
+
5
+ const normalizeRgbaAlpha = (color: string): string => {
6
+ return color.replace(
7
+ /^rgba\(([^)]+),\s*(\d+(?:\.\d+)?)\s*\)$/i,
8
+ (_, rgb, alpha) => {
9
+ const alphaValue = parseFloat(alpha);
10
+
11
+ if (!Number.isFinite(alphaValue) || !Number.isInteger(alphaValue)) {
12
+ return color;
13
+ }
14
+
15
+ return `rgba(${rgb},${alphaValue})`;
16
+ }
17
+ );
18
+ };
19
+
20
+ export const isValidColor = (color: string): boolean => {
21
+ if (isNil(color) || !isString(color)) {
22
+ return false;
23
+ }
24
+
25
+ if (validateColor(color)) {
26
+ return true;
27
+ }
28
+
29
+ // validate-color rejects integer alpha values written as floats (e.g. 1.0)
30
+ // https://github.com/dreamyguy/validate-color/issues/44
31
+ const normalizedColor = normalizeRgbaAlpha(color);
32
+
33
+ return normalizedColor !== color && validateColor(normalizedColor);
34
+ };
35
+
36
+ function isRgbaAlphaZero(color: string): boolean {
37
+ const layers = color
38
+ .replace("rgba(", "")
39
+ .replace(")", "")
40
+ .split(",")
41
+ .map((layer) => layer.trim());
42
+
43
+ return Number(layers[3]) === 0;
44
+ }
45
+
46
+ export const isTransparentColor = (color: string): boolean => {
47
+ return (
48
+ isValidColor(color) && (color === "transparent" || isRgbaAlphaZero(color))
49
+ );
50
+ };
@@ -0,0 +1,107 @@
1
+ import { parseModalBlocksConfiguration } from "../modalBlocksParser";
2
+
3
+ // Mock the platform selection logic so it's consistent
4
+ jest.mock("../../reactUtils", () => ({
5
+ platformSelect: jest.fn().mockReturnValue("ios"),
6
+ }));
7
+
8
+ describe("parseModalBlocksConfiguration", () => {
9
+ beforeEach(() => {
10
+ jest.clearAllMocks();
11
+ });
12
+
13
+ it("should return empty structures for missing config or componentName", () => {
14
+ const result1 = parseModalBlocksConfiguration(
15
+ undefined as any,
16
+ "queue_action"
17
+ );
18
+
19
+ expect(result1.header.container).toEqual({});
20
+
21
+ const result2 = parseModalBlocksConfiguration({ foo: "bar" }, "");
22
+ expect(result2.item.background).toEqual({});
23
+ });
24
+
25
+ it("should correctly parse the specified flat keys into nested objects", () => {
26
+ // The keys follow: <component_name>_style_<blockName>_<subComponent>_[platform_][state_]<styleName>
27
+ const config = {
28
+ // Header container - default platform, default state
29
+ queue_action_style_header_container_backgroundColor: "#000000",
30
+
31
+ // Header title - default platform, pressed state
32
+ queue_action_style_header_title_pressed_fontColor: "#ffffff",
33
+
34
+ // Item background - ios platform, default state
35
+ queue_action_style_item_background_ios_backgroundColor: "blue",
36
+
37
+ // Item textLabel1 - default platform, focused state
38
+ queue_action_style_item_text_label_1_focused_fontSize: 16,
39
+
40
+ // Ignored key (unrelated to building blocks or queue_action)
41
+ other_action_style_header_title_fontColor: "red",
42
+ some_random_key: "value",
43
+
44
+ // Ignored non-style data keys (should NEVER be parsed as styles)
45
+ item_data_source: "http://pipes.example.com",
46
+ item_url: "http://example.com",
47
+
48
+ // New dot notation from manifest-generator (without plugin prefix)
49
+ "item.text_label_2.fontColor": "green",
50
+ "action.background.pressed_backgroundColor": "black",
51
+
52
+ // New now_playing_item block
53
+ "now_playing_item.text_label_1.fontColor": "yellow",
54
+ "now_playing_item.now_playing_asset.asset": "equalizer.png",
55
+ };
56
+
57
+ const componentName = "queue_action";
58
+
59
+ const result = parseModalBlocksConfiguration(config, componentName);
60
+
61
+ // Assert header container default state
62
+ expect(result.header.container.default).toEqual({
63
+ backgroundColor: "#000000",
64
+ });
65
+
66
+ // Assert header title pressed state
67
+ // (pressed state will inherit default styles in getAllSpecificStyles if any,
68
+ // but here we just have pressed, so it has default empty from the parser)
69
+ expect(result.header.title.pressed).toEqual({
70
+ fontColor: "#ffffff",
71
+ });
72
+
73
+ // Assert item background ios default state
74
+ // (mocked platform is ios, so it should be accepted and assigned to default)
75
+ expect(result.item.background.default).toEqual({
76
+ backgroundColor: "blue",
77
+ });
78
+
79
+ // Assert item textLabel1 focused state
80
+ expect(result.item.textLabel1.focused).toEqual({
81
+ fontSize: 16,
82
+ });
83
+
84
+ // Assert dot notation textLabel2 default state
85
+ expect(result.item.textLabel2.default).toEqual({
86
+ fontColor: "green",
87
+ });
88
+
89
+ // Assert dot notation action background pressed state
90
+ expect(result.action.background.pressed).toEqual({
91
+ backgroundColor: "black",
92
+ });
93
+
94
+ // Assert nowPlayingItem states
95
+ expect(result.nowPlayingItem?.textLabel1.default).toEqual({
96
+ fontColor: "yellow",
97
+ });
98
+
99
+ expect(result.nowPlayingItem?.nowPlayingAsset.default).toEqual({
100
+ asset: "equalizer.png",
101
+ });
102
+
103
+ // Assert untouched properties remain empty default style objects
104
+ expect(result.button.title).toEqual({ default: {} });
105
+ expect(result.action.leadingIcon).toEqual({ default: {} });
106
+ });
107
+ });