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

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 +260 -0
  105. package/configurationUtils/manifestKeyParser.ts +50 -10
  106. package/configurationUtils/modalBlocksParser.ts +296 -0
  107. package/entryActions/__tests__/buildEntryActions.test.ts +195 -0
  108. package/entryActions/aliasPresentation.ts +124 -0
  109. package/entryActions/buildEntryActions.ts +167 -0
  110. package/entryActions/index.ts +17 -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
@@ -0,0 +1,61 @@
1
+ import { sample } from "..";
2
+
3
+ declare global {
4
+ var __DEV__: boolean;
5
+ }
6
+
7
+ describe("sample", () => {
8
+ const originalDev = global.__DEV__;
9
+ const originalRandom = Math.random;
10
+
11
+ beforeEach(() => {
12
+ global.__DEV__ = true;
13
+ });
14
+
15
+ afterEach(() => {
16
+ global.__DEV__ = originalDev;
17
+ Math.random = originalRandom;
18
+ });
19
+
20
+ it("returns an item from the list", () => {
21
+ Math.random = () => 0.5;
22
+
23
+ expect(sample(["a", "b", "c"])).toBe("b");
24
+ });
25
+
26
+ it("returns the first item when random is near 0", () => {
27
+ Math.random = () => 0;
28
+
29
+ expect(sample(["a", "b", "c"])).toBe("a");
30
+ });
31
+
32
+ it("returns the last item when random is near 1", () => {
33
+ Math.random = () => 0.999;
34
+
35
+ expect(sample(["a", "b", "c"])).toBe("c");
36
+ });
37
+
38
+ it("returns the only item for a single-element list", () => {
39
+ Math.random = () => 0.42;
40
+
41
+ expect(sample([42])).toBe(42);
42
+ });
43
+
44
+ it("throws when the input is not an array", () => {
45
+ expect(() => sample("not-an-array" as unknown as unknown[])).toThrow(
46
+ /input value is not an array/
47
+ );
48
+
49
+ expect(() => sample(null as unknown as unknown[])).toThrow(
50
+ /input value is not an array/
51
+ );
52
+
53
+ expect(() => sample(undefined as unknown as unknown[])).toThrow(
54
+ /input value is not an array/
55
+ );
56
+ });
57
+
58
+ it("throws when the array is empty", () => {
59
+ expect(() => sample([])).toThrow(/input array is empty/);
60
+ });
61
+ });
@@ -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,
@@ -65,11 +65,38 @@ export const isEmptyOrNil = (value: any): boolean =>
65
65
  */
66
66
  export const getLabel = (dataKeyValue, customDataKeyValue) => (entry) => {
67
67
  const label = getKeyForLabel(dataKeyValue, customDataKeyValue);
68
- const isPath = label && R.length(label) > 0;
69
- const fallback = isEmptyOrNil(label) ? "" : R.head(label);
68
+ const isPath = label && label.length > 0;
69
+
70
+ // An unresolved key is rendered as-is, because a data key is allowed to be a
71
+ // literal label ("More") rather than a path. Fall back to the whole key
72
+ // instead of its first segment: "extensions.section" reads as an unresolved
73
+ // path, while "extensions" reads as a legitimate label and hides the problem.
74
+ const fallback = isEmptyOrNil(label) ? "" : label.join(".");
70
75
 
71
76
  try {
72
- return isPath ? R.pathOr(fallback, label, entry) : fallback;
77
+ if (!isPath) {
78
+ return fallback;
79
+ }
80
+
81
+ const resolved = label.reduce(
82
+ (value, key) => (value == null ? undefined : value[key]),
83
+ entry
84
+ );
85
+
86
+ if (isNotNil(resolved)) {
87
+ return resolved;
88
+ }
89
+
90
+ // A multi-segment key is unambiguously a path, so failing to resolve it is
91
+ // a misconfiguration rather than someone typing a literal label.
92
+ if (label.length > 1) {
93
+ cellUtilsLogger.warning({
94
+ message: `getLabel: data key "${fallback}" was not found on the entry, rendering the key itself`,
95
+ data: { dataKeyValue, customDataKeyValue, entryId: entry?.id },
96
+ });
97
+ }
98
+
99
+ return fallback;
73
100
  } catch (error) {
74
101
  cellUtilsLogger.warning({
75
102
  data: { error, dataKeyValue, customDataKeyValue },
@@ -468,15 +495,13 @@ export const getColorFromData = ({
468
495
  data,
469
496
  valueFromLayout,
470
497
  }: 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", ""))) {
498
+ if (isValidColor(valueFromLayout)) {
474
499
  return valueFromLayout;
475
500
  }
476
501
 
477
502
  const pathValue = R.path(valueFromLayout.split("."), data);
478
503
 
479
- if (pathValue && validateColor(pathValue)) {
504
+ if (pathValue && isValidColor(pathValue)) {
480
505
  return pathValue;
481
506
  }
482
507
 
@@ -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
+ };
@@ -176,6 +176,27 @@ describe("getAllSpecificStyles", () => {
176
176
  });
177
177
  });
178
178
 
179
+ it("should normalize Studio focus alias onto focused state", () => {
180
+ const outStyles = {};
181
+
182
+ const configuration = {
183
+ button_style_focus_background_color: "#FF3B30",
184
+ };
185
+
186
+ getAllSpecificStyles({
187
+ componentName: "button",
188
+ subComponentName: "",
189
+ configuration,
190
+ outStyles,
191
+ });
192
+
193
+ expect(outStyles.focused).toEqual({
194
+ backgroundColor: "#FF3B30",
195
+ });
196
+
197
+ expect(outStyles.focus).toBeUndefined();
198
+ });
199
+
179
200
  it("should handle selected state", () => {
180
201
  const outStyles = {};
181
202