@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
|
@@ -12,16 +12,23 @@ const currentPlatform = platformSelect({
|
|
|
12
12
|
});
|
|
13
13
|
|
|
14
14
|
// Do not change the order, focused_selected should be first
|
|
15
|
-
const states = [
|
|
15
|
+
const states = [
|
|
16
|
+
"focused_selected",
|
|
17
|
+
"pressed",
|
|
18
|
+
"focused",
|
|
19
|
+
"selected",
|
|
20
|
+
"default",
|
|
21
|
+
];
|
|
16
22
|
|
|
17
23
|
const platformSuffixes = ["ios", "tvos", "samsung", "lg", "android"];
|
|
18
|
-
type StateKey = (typeof states)[number]
|
|
24
|
+
type StateKey = (typeof states)[number];
|
|
19
25
|
|
|
20
26
|
export type GetAllSpecificStylesProps = {
|
|
21
27
|
componentName: string;
|
|
22
28
|
subComponentName: string;
|
|
23
29
|
configuration: Record<string, any>;
|
|
24
30
|
outStyles: Record<string, any>;
|
|
31
|
+
styleSeparator?: string;
|
|
25
32
|
};
|
|
26
33
|
|
|
27
34
|
/*
|
|
@@ -35,14 +42,23 @@ export const getAllSpecificStyles = ({
|
|
|
35
42
|
componentName,
|
|
36
43
|
subComponentName,
|
|
37
44
|
outStyles,
|
|
45
|
+
styleSeparator = "_style_",
|
|
38
46
|
}: GetAllSpecificStylesProps) => {
|
|
39
47
|
if (!outStyles) throw new Error("outStyles is required");
|
|
40
48
|
if (!componentName) throw new Error("componentName is required");
|
|
41
49
|
|
|
42
|
-
const
|
|
50
|
+
const prefixes =
|
|
43
51
|
subComponentName?.length > 0
|
|
44
|
-
?
|
|
45
|
-
|
|
52
|
+
? [
|
|
53
|
+
styleSeparator
|
|
54
|
+
? `${componentName}${styleSeparator}${subComponentName}_`
|
|
55
|
+
: `${subComponentName}_`,
|
|
56
|
+
`${componentName}_style_${subComponentName}_`,
|
|
57
|
+
]
|
|
58
|
+
: [
|
|
59
|
+
styleSeparator ? `${componentName}${styleSeparator}` : "",
|
|
60
|
+
`${componentName}_style_`,
|
|
61
|
+
];
|
|
46
62
|
|
|
47
63
|
const defaultKey = "default";
|
|
48
64
|
|
|
@@ -51,12 +67,24 @@ export const getAllSpecificStyles = ({
|
|
|
51
67
|
const tmpGenericDict: Record<StateKey, Record<string, any>> = {};
|
|
52
68
|
const tmpPlatformDict: Record<StateKey, Record<string, any>> = {};
|
|
53
69
|
|
|
54
|
-
const parseKey = (key: string, value: any) => {
|
|
55
|
-
|
|
70
|
+
const parseKey = (key: string, originalKey: string, value: any) => {
|
|
71
|
+
const matchedPrefix = prefixes.find((p) => p && key.startsWith(p));
|
|
72
|
+
|
|
73
|
+
if (!matchedPrefix) {
|
|
56
74
|
return;
|
|
57
75
|
}
|
|
58
76
|
|
|
59
|
-
|
|
77
|
+
// Guard: for empty styleSeparator, if matching modern prefix, require dot in originalKey
|
|
78
|
+
if (
|
|
79
|
+
styleSeparator === "" &&
|
|
80
|
+
matchedPrefix === `${subComponentName}_` &&
|
|
81
|
+
!originalKey.includes(".")
|
|
82
|
+
) {
|
|
83
|
+
return;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
let styleName = key.slice(matchedPrefix.length);
|
|
87
|
+
|
|
60
88
|
if (!styleName || styleName.startsWith("_")) return;
|
|
61
89
|
|
|
62
90
|
const platform = platformSuffixes.find((prefix) =>
|
|
@@ -93,7 +121,8 @@ export const getAllSpecificStyles = ({
|
|
|
93
121
|
};
|
|
94
122
|
|
|
95
123
|
for (const [key, value] of Object.entries(configuration)) {
|
|
96
|
-
|
|
124
|
+
const formattedKey = key.replace(/\./g, "_");
|
|
125
|
+
parseKey(formattedKey, key, value);
|
|
97
126
|
}
|
|
98
127
|
|
|
99
128
|
const allStates = Array.from(
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import { getAllSpecificStyles } from "./manifestKeyParser";
|
|
2
|
+
|
|
3
|
+
export type ModalBlocksConfig = {
|
|
4
|
+
header: {
|
|
5
|
+
container: Record<string, any>;
|
|
6
|
+
title: Record<string, any>;
|
|
7
|
+
closeButton: Record<string, any>;
|
|
8
|
+
actionButtons: Record<string, any>;
|
|
9
|
+
};
|
|
10
|
+
action: {
|
|
11
|
+
background: Record<string, any>;
|
|
12
|
+
title: Record<string, any>;
|
|
13
|
+
icons: Record<string, any>;
|
|
14
|
+
leadingIcon: Record<string, any>;
|
|
15
|
+
trailingIcon: Record<string, any>;
|
|
16
|
+
};
|
|
17
|
+
item: {
|
|
18
|
+
background: Record<string, any>;
|
|
19
|
+
image: Record<string, any>;
|
|
20
|
+
nowPlayingContainer: Record<string, any>;
|
|
21
|
+
nowPlayingAsset: Record<string, any>;
|
|
22
|
+
nowPlayingLabel: Record<string, any>;
|
|
23
|
+
textLabel1: Record<string, any>;
|
|
24
|
+
textLabel2: Record<string, any>;
|
|
25
|
+
buttonsContainer: Record<string, any>;
|
|
26
|
+
button1: Record<string, any>;
|
|
27
|
+
button2: Record<string, any>;
|
|
28
|
+
};
|
|
29
|
+
nowPlayingItem?: {
|
|
30
|
+
background: Record<string, any>;
|
|
31
|
+
image: Record<string, any>;
|
|
32
|
+
nowPlayingContainer: Record<string, any>;
|
|
33
|
+
nowPlayingAsset: Record<string, any>;
|
|
34
|
+
nowPlayingLabel: Record<string, any>;
|
|
35
|
+
textLabel1: Record<string, any>;
|
|
36
|
+
textLabel2: Record<string, any>;
|
|
37
|
+
buttonsContainer: Record<string, any>;
|
|
38
|
+
button1: Record<string, any>;
|
|
39
|
+
button2: Record<string, any>;
|
|
40
|
+
};
|
|
41
|
+
button: {
|
|
42
|
+
background: Record<string, any>;
|
|
43
|
+
title: Record<string, any>;
|
|
44
|
+
icons: Record<string, any>;
|
|
45
|
+
leadingIcon: Record<string, any>;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
export const parseModalBlocksConfiguration = (
|
|
50
|
+
configuration: Record<string, any>,
|
|
51
|
+
componentName: string
|
|
52
|
+
): ModalBlocksConfig => {
|
|
53
|
+
const result: ModalBlocksConfig = {
|
|
54
|
+
header: {
|
|
55
|
+
container: {},
|
|
56
|
+
title: {},
|
|
57
|
+
closeButton: {},
|
|
58
|
+
actionButtons: {},
|
|
59
|
+
},
|
|
60
|
+
action: {
|
|
61
|
+
background: {},
|
|
62
|
+
title: {},
|
|
63
|
+
icons: {},
|
|
64
|
+
leadingIcon: {},
|
|
65
|
+
trailingIcon: {},
|
|
66
|
+
},
|
|
67
|
+
item: {
|
|
68
|
+
background: {},
|
|
69
|
+
image: {},
|
|
70
|
+
nowPlayingContainer: {},
|
|
71
|
+
nowPlayingAsset: {},
|
|
72
|
+
nowPlayingLabel: {},
|
|
73
|
+
textLabel1: {},
|
|
74
|
+
textLabel2: {},
|
|
75
|
+
buttonsContainer: {},
|
|
76
|
+
button1: {},
|
|
77
|
+
button2: {},
|
|
78
|
+
},
|
|
79
|
+
nowPlayingItem: {
|
|
80
|
+
background: {},
|
|
81
|
+
image: {},
|
|
82
|
+
nowPlayingContainer: {},
|
|
83
|
+
nowPlayingAsset: {},
|
|
84
|
+
nowPlayingLabel: {},
|
|
85
|
+
textLabel1: {},
|
|
86
|
+
textLabel2: {},
|
|
87
|
+
buttonsContainer: {},
|
|
88
|
+
button1: {},
|
|
89
|
+
button2: {},
|
|
90
|
+
},
|
|
91
|
+
button: {
|
|
92
|
+
background: {},
|
|
93
|
+
title: {},
|
|
94
|
+
icons: {},
|
|
95
|
+
leadingIcon: {},
|
|
96
|
+
},
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
if (!configuration || !componentName) {
|
|
100
|
+
return result;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
const normalizedComponentName = componentName.replace(/-/g, "_");
|
|
104
|
+
|
|
105
|
+
// Helper to parse sub-components for a block
|
|
106
|
+
const parseBlock = (blockName: string, subComponents: string[]) => {
|
|
107
|
+
subComponents.forEach((subComponent) => {
|
|
108
|
+
// e.g. header_container
|
|
109
|
+
const fullSubComponentName = `${blockName}_${subComponent}`;
|
|
110
|
+
|
|
111
|
+
// e.g. result.header.container
|
|
112
|
+
const camelSubComponent = subComponent.replace(/_([a-z0-9])/g, (g) =>
|
|
113
|
+
g[1].toUpperCase()
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
const camelBlockName = (blockName as string).replace(
|
|
117
|
+
/_([a-z0-9])/g,
|
|
118
|
+
(g) => g[1].toUpperCase()
|
|
119
|
+
) as keyof ModalBlocksConfig;
|
|
120
|
+
|
|
121
|
+
getAllSpecificStyles({
|
|
122
|
+
configuration,
|
|
123
|
+
componentName: normalizedComponentName,
|
|
124
|
+
subComponentName: fullSubComponentName,
|
|
125
|
+
styleSeparator: "",
|
|
126
|
+
outStyles:
|
|
127
|
+
result[camelBlockName]![
|
|
128
|
+
camelSubComponent as keyof (typeof result)[typeof camelBlockName]
|
|
129
|
+
],
|
|
130
|
+
});
|
|
131
|
+
});
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
parseBlock("header", [
|
|
135
|
+
"container",
|
|
136
|
+
"title",
|
|
137
|
+
"close_button",
|
|
138
|
+
"action_buttons",
|
|
139
|
+
]);
|
|
140
|
+
|
|
141
|
+
parseBlock("action", [
|
|
142
|
+
"background",
|
|
143
|
+
"title",
|
|
144
|
+
"icons",
|
|
145
|
+
"leading_icon",
|
|
146
|
+
"trailing_icon",
|
|
147
|
+
]);
|
|
148
|
+
|
|
149
|
+
parseBlock("item", [
|
|
150
|
+
"background",
|
|
151
|
+
"image",
|
|
152
|
+
"now_playing_container",
|
|
153
|
+
"now_playing_asset",
|
|
154
|
+
"now_playing_label",
|
|
155
|
+
"text_label_1",
|
|
156
|
+
"text_label_2",
|
|
157
|
+
"buttons_container",
|
|
158
|
+
"button_1",
|
|
159
|
+
"button_2",
|
|
160
|
+
]);
|
|
161
|
+
|
|
162
|
+
parseBlock("now_playing_item", [
|
|
163
|
+
"background",
|
|
164
|
+
"image",
|
|
165
|
+
"now_playing_container",
|
|
166
|
+
"now_playing_asset",
|
|
167
|
+
"now_playing_label",
|
|
168
|
+
"text_label_1",
|
|
169
|
+
"text_label_2",
|
|
170
|
+
"buttons_container",
|
|
171
|
+
"button_1",
|
|
172
|
+
"button_2",
|
|
173
|
+
]);
|
|
174
|
+
|
|
175
|
+
parseBlock("button", ["background", "title", "icons", "leading_icon"]);
|
|
176
|
+
|
|
177
|
+
return result;
|
|
178
|
+
};
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
const { player } = require("../defaultManifestConfigurations/player");
|
|
2
|
+
|
|
3
|
+
const manifestFor = (platform) => player({ platform, version: "0.0.0" });
|
|
4
|
+
|
|
5
|
+
const findGroup = (manifest, label) =>
|
|
6
|
+
manifest.styles.fields.find((group) => group.group && group.label === label);
|
|
7
|
+
|
|
8
|
+
const findFieldInGroup = (manifest, label, key) =>
|
|
9
|
+
findGroup(manifest, label)?.fields?.find((field) => field.key === key);
|
|
10
|
+
|
|
11
|
+
const findLocalization = (manifest, key) =>
|
|
12
|
+
manifest.localizations.fields.find((field) => field.key === key);
|
|
13
|
+
|
|
14
|
+
describe("player manifest — audio playlist controls", () => {
|
|
15
|
+
const manifest = manifestFor("ios_for_quickbrick");
|
|
16
|
+
|
|
17
|
+
describe("Player Controls Layout", () => {
|
|
18
|
+
const field = () =>
|
|
19
|
+
findFieldInGroup(manifest, "Audio Player", "player_controls_layout");
|
|
20
|
+
|
|
21
|
+
it("is declared in the Audio Player group", () => {
|
|
22
|
+
expect(field()).toBeDefined();
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
it("is a select defaulting to the existing controls", () => {
|
|
26
|
+
expect(field().type).toBe("select");
|
|
27
|
+
expect(field().initial_value).toBe("playback_speed_and_sleep_timer");
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
it("only shows when the audio player layout is in use", () => {
|
|
31
|
+
expect(field()).toMatchObject({
|
|
32
|
+
rules: "conditional",
|
|
33
|
+
conditional_fields: [
|
|
34
|
+
{ key: "styles/full_screen_audio_player", condition_value: true },
|
|
35
|
+
],
|
|
36
|
+
});
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
it("offers exactly the two documented options", () => {
|
|
40
|
+
expect(field().options).toEqual([
|
|
41
|
+
{
|
|
42
|
+
text: "Playback Speed & Sleep Timer (Default)",
|
|
43
|
+
value: "playback_speed_and_sleep_timer",
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
text: "Playlist Controls (Previous & Next)",
|
|
47
|
+
value: "playlist_controls",
|
|
48
|
+
},
|
|
49
|
+
]);
|
|
50
|
+
});
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
describe("control icons", () => {
|
|
54
|
+
it.each(["previous_track", "next_track"])(
|
|
55
|
+
"declares %s as an uploader",
|
|
56
|
+
(key) => {
|
|
57
|
+
expect(findFieldInGroup(manifest, "Assets", key)).toMatchObject({
|
|
58
|
+
key,
|
|
59
|
+
type: "uploader",
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
it.each(["previous_track", "next_track"])(
|
|
65
|
+
"only shows %s when the playlist controls layout is selected",
|
|
66
|
+
(key) => {
|
|
67
|
+
expect(findFieldInGroup(manifest, "Assets", key)).toMatchObject({
|
|
68
|
+
rules: "conditional",
|
|
69
|
+
conditional_fields: [
|
|
70
|
+
{
|
|
71
|
+
key: "styles/player_controls_layout",
|
|
72
|
+
condition_value: "playlist_controls",
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
it.each([
|
|
80
|
+
"speed_0_8",
|
|
81
|
+
"speed_1",
|
|
82
|
+
"speed_1_2",
|
|
83
|
+
"speed_1_5",
|
|
84
|
+
"speed_2",
|
|
85
|
+
"sleep_timer",
|
|
86
|
+
"sleep_timer_active",
|
|
87
|
+
])(
|
|
88
|
+
"only shows %s when the playback speed and sleep timer layout is selected",
|
|
89
|
+
(key) => {
|
|
90
|
+
expect(findFieldInGroup(manifest, "Assets", key)).toMatchObject({
|
|
91
|
+
rules: "conditional",
|
|
92
|
+
conditional_fields: [
|
|
93
|
+
{
|
|
94
|
+
key: "styles/player_controls_layout",
|
|
95
|
+
condition_value: "playback_speed_and_sleep_timer",
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
);
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
describe("accessibility strings", () => {
|
|
104
|
+
it.each([
|
|
105
|
+
"accessibility_previous_track_label",
|
|
106
|
+
"accessibility_previous_track_hint",
|
|
107
|
+
"accessibility_next_track_label",
|
|
108
|
+
"accessibility_next_track_hint",
|
|
109
|
+
])("declares %s with a default", (key) => {
|
|
110
|
+
expect(findLocalization(manifest, key)).toMatchObject({
|
|
111
|
+
type: "text_input",
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
expect(findLocalization(manifest, key).initial_value).toBeTruthy();
|
|
115
|
+
});
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
describe("tv platforms", () => {
|
|
119
|
+
// The audio player layout is mobile only, so nothing this feature adds —
|
|
120
|
+
// including its screen reader strings — belongs in a tv manifest.
|
|
121
|
+
it.each(["tvos_for_quickbrick", "android_tv_for_quickbrick", "lg_tv"])(
|
|
122
|
+
"adds no audio controls layout field on %s",
|
|
123
|
+
(platform) => {
|
|
124
|
+
expect(
|
|
125
|
+
findFieldInGroup(
|
|
126
|
+
manifestFor(platform),
|
|
127
|
+
"Audio Player",
|
|
128
|
+
"player_controls_layout"
|
|
129
|
+
)
|
|
130
|
+
).toBeUndefined();
|
|
131
|
+
}
|
|
132
|
+
);
|
|
133
|
+
|
|
134
|
+
it.each([
|
|
135
|
+
"accessibility_previous_track_label",
|
|
136
|
+
"accessibility_previous_track_hint",
|
|
137
|
+
"accessibility_next_track_label",
|
|
138
|
+
"accessibility_next_track_hint",
|
|
139
|
+
])("does not declare %s on tv", (key) => {
|
|
140
|
+
expect(
|
|
141
|
+
findLocalization(manifestFor("tvos_for_quickbrick"), key)
|
|
142
|
+
).toBeUndefined();
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
it("still declares the tv-only localizations", () => {
|
|
146
|
+
expect(
|
|
147
|
+
findLocalization(
|
|
148
|
+
manifestFor("tvos_for_quickbrick"),
|
|
149
|
+
"back_to_live_label"
|
|
150
|
+
)
|
|
151
|
+
).toBeDefined();
|
|
152
|
+
|
|
153
|
+
expect(
|
|
154
|
+
findLocalization(manifestFor("tvos_for_quickbrick"), "start_over_label")
|
|
155
|
+
).toBeDefined();
|
|
156
|
+
});
|
|
157
|
+
});
|
|
158
|
+
});
|
|
@@ -157,6 +157,10 @@ function generateFieldsFromDefaultsWithoutPrefixedLabel(
|
|
|
157
157
|
|
|
158
158
|
if (conditions) {
|
|
159
159
|
generatedField.conditional_fields = conditions.map((condition) => {
|
|
160
|
+
if (condition.section === null) {
|
|
161
|
+
return { key: condition.key, condition_value: condition.value };
|
|
162
|
+
}
|
|
163
|
+
|
|
160
164
|
const section = condition.section ? `${condition.section}/` : "";
|
|
161
165
|
|
|
162
166
|
return {
|
|
@@ -164,6 +168,8 @@ function generateFieldsFromDefaultsWithoutPrefixedLabel(
|
|
|
164
168
|
condition_value: condition.value,
|
|
165
169
|
};
|
|
166
170
|
});
|
|
171
|
+
|
|
172
|
+
generatedField.rules = "all_conditions";
|
|
167
173
|
}
|
|
168
174
|
|
|
169
175
|
return generatedField;
|
|
@@ -308,6 +308,41 @@ const generalContent = () => ({
|
|
|
308
308
|
key: "pull_to_refresh_enabled",
|
|
309
309
|
initial_value: false,
|
|
310
310
|
},
|
|
311
|
+
{
|
|
312
|
+
type: "switch",
|
|
313
|
+
label: "Allow using this screen as a hook",
|
|
314
|
+
label_tooltip:
|
|
315
|
+
"Make sure that screen uses 'finishHook' action or performs navigation action to exit the screen after performing the hook action, or user will be stuck on the screen", // eslint-disable-line max-len
|
|
316
|
+
key: "available_as_hook",
|
|
317
|
+
initial_value: false,
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
type: "data_source_selector",
|
|
321
|
+
label: "Skip hook endpoint",
|
|
322
|
+
key: "skip_hook_endpoint",
|
|
323
|
+
label_tooltip:
|
|
324
|
+
"If set, this endpoint will check with the server whether the hook should be skipped",
|
|
325
|
+
conditional_fields: [
|
|
326
|
+
{
|
|
327
|
+
key: "rules/available_as_hook",
|
|
328
|
+
condition_value: true,
|
|
329
|
+
},
|
|
330
|
+
],
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
key: "skip_hook_storage_key",
|
|
334
|
+
type: "text_input",
|
|
335
|
+
label: "Hook will be skipped if storage key is set",
|
|
336
|
+
initial_value: "",
|
|
337
|
+
label_tooltip:
|
|
338
|
+
"Comma-separated keys in namespace.key format (key without a dot uses the default namespace)", // eslint-disable-line max-len
|
|
339
|
+
conditional_fields: [
|
|
340
|
+
{
|
|
341
|
+
key: "rules/available_as_hook",
|
|
342
|
+
condition_value: true,
|
|
343
|
+
},
|
|
344
|
+
],
|
|
345
|
+
},
|
|
311
346
|
],
|
|
312
347
|
},
|
|
313
348
|
});
|