@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.
- package/actionsExecutor/ActionExecutor.ts +47 -11
- package/actionsExecutor/ActionExecutorContext.tsx +87 -316
- package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +22 -0
- package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
- package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
- package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +130 -0
- package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
- package/actionsExecutor/actions/appRestart.ts +24 -0
- package/actionsExecutor/actions/confirmDialog.ts +53 -0
- package/actionsExecutor/actions/dismissBottomSheet.ts +22 -0
- package/actionsExecutor/actions/index.ts +34 -0
- package/actionsExecutor/actions/localStorageRemove.ts +27 -0
- package/actionsExecutor/actions/localStorageSet.ts +28 -0
- package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
- package/actionsExecutor/actions/navigateToScreen.ts +123 -0
- package/actionsExecutor/actions/openBottomSheet.ts +322 -0
- package/actionsExecutor/actions/refreshComponent.ts +85 -0
- package/actionsExecutor/actions/screenSetVariable.ts +35 -0
- package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
- package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
- package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
- package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
- package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
- package/actionsExecutor/actions/showToast.ts +87 -0
- package/actionsExecutor/actions/switchLayout.ts +40 -0
- package/actionsExecutor/consts.ts +23 -0
- package/actionsExecutor/types.ts +59 -0
- package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
- package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
- package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/index.js +20 -0
- package/analyticsUtils/analyticsMapper.ts +4 -1
- package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
- package/appUtils/HooksManager/index.ts +12 -8
- package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
- package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
- package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
- package/appUtils/contextKeysManager/index.ts +1 -1
- package/appUtils/contextKeysManager/utils/index.ts +38 -25
- package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
- package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
- package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
- package/appUtils/playerManager/OverlayObserver/utils.ts +49 -20
- package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
- package/appUtils/playerManager/__tests__/playerFactory.test.ts +150 -0
- package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
- package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
- package/appUtils/playerManager/index.ts +1 -1
- package/appUtils/playerManager/player.ts +115 -3
- package/appUtils/playerManager/playerFactory.ts +18 -35
- package/appUtils/playerManager/playerNative.ts +1 -1
- package/appUtils/playerManager/usePlayerContent.tsx +43 -0
- package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
- package/appUtils/playerManager/userLanguagePreference.ts +1 -1
- package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
- package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
- package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
- package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
- package/arrayUtils/__tests__/isFirst.test.ts +17 -0
- package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
- package/arrayUtils/__tests__/isLast.test.ts +31 -0
- package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
- package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
- package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
- package/arrayUtils/__tests__/sample.test.ts +61 -0
- package/arrayUtils/index.ts +136 -20
- package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
- package/bottomSheet/index.ts +17 -0
- package/cellUtils/index.ts +3 -5
- package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
- package/colorUtils/__tests__/isValidColor.test.ts +70 -0
- package/colorUtils/index.ts +50 -0
- package/configurationUtils/__tests__/modalBlocksParser.test.ts +107 -0
- package/configurationUtils/manifestKeyParser.ts +38 -9
- package/configurationUtils/modalBlocksParser.ts +178 -0
- package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
- package/manifestUtils/_internals/index.js +6 -0
- package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -0
- package/manifestUtils/defaultManifestConfigurations/player.js +327 -19
- package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
- package/manifestUtils/fieldUtils/index.js +125 -0
- package/manifestUtils/index.js +3 -0
- package/manifestUtils/keys.js +9 -0
- package/manifestUtils/mobileAction/button/index.js +16 -0
- package/manifestUtils/mobileAction/container/index.js +3 -1
- package/manifestUtils/mobileAction/groups/defaults.js +3 -1
- package/manifestUtils/modalBlocks.js +304 -0
- package/manifestUtils/platformIsTV.js +1 -0
- package/modalState/ContentViewModel.ts +113 -0
- package/modalState/EditableCollection.ts +17 -0
- package/modalState/EditableCollectionRegistry.ts +51 -0
- package/modalState/ModalOrchestrator.ts +201 -0
- package/modalState/RemoteEditableCollection.ts +227 -0
- package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
- package/modalState/__tests__/ContentViewModel.test.ts +165 -0
- package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
- package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +55 -0
- package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
- package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
- package/modalState/index.ts +30 -83
- package/modalState/store.ts +102 -0
- package/modalState/types.ts +137 -0
- package/modalState/useBottomSheetContent.ts +102 -0
- package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
- package/numberUtils/__tests__/isZero.test.ts +27 -0
- package/numberUtils/__tests__/requireNumber.test.ts +50 -0
- package/numberUtils/__tests__/toNumber.test.ts +27 -0
- package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
- package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
- package/numberUtils/index.ts +27 -8
- package/package.json +2 -2
- package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
- package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
- package/pipesUtils/index.ts +1 -0
- package/pipesUtils/withPipesEndpoint.tsx +54 -0
- package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
- package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
- package/playerUtils/contentDataKeys.ts +134 -0
- package/playerUtils/index.ts +41 -14
- package/playerUtils/isAudioItem.ts +26 -0
- package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
- package/reactHooks/actions/index.ts +51 -1
- package/reactHooks/cell-click/index.ts +18 -10
- package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
- package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
- package/reactHooks/feed/index.ts +5 -1
- package/reactHooks/feed/useBatchLoading.ts +9 -1
- package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
- package/reactHooks/index.ts +2 -0
- package/reactHooks/layout/index.ts +1 -1
- package/reactHooks/navigation/__mocks__/index.ts +4 -0
- package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
- package/reactHooks/navigation/index.ts +1 -1
- package/reactHooks/navigation/useIsScreenActive.ts +29 -8
- package/reactHooks/state/useComponentScreenState.ts +1 -1
- package/reactHooks/usePluginConfiguration.ts +4 -1
- package/reactHooks/utils/__tests__/index.test.js +22 -2
- package/reactHooks/utils/index.ts +13 -2
- package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
- package/riverComponetsMeasurementProvider/index.tsx +12 -8
- package/stringUtils/__tests__/stringUtils.test.js +42 -0
- package/stringUtils/index.ts +2 -2
- package/uiActionsRegistrator/index.ts +203 -0
- package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
- package/zappFrameworkUtils/localStorageHelper.ts +19 -15
- package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
- package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
- /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
package/arrayUtils/index.ts
CHANGED
|
@@ -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
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
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
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
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[][] =>
|
|
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
|
|
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
|
-
|
|
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);
|
package/cellUtils/index.ts
CHANGED
|
@@ -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
|
-
|
|
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 &&
|
|
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
|
+
});
|