@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.
- package/actionsExecutor/ActionExecutor.ts +57 -12
- package/actionsExecutor/ActionExecutorContext.tsx +113 -314
- package/actionsExecutor/__tests__/ActionExecutor.test.ts +71 -0
- package/actionsExecutor/__tests__/feedDecorator.test.ts +61 -0
- package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +25 -0
- package/actionsExecutor/actions/__tests__/goBack.test.ts +62 -0
- package/actionsExecutor/actions/__tests__/goHome.test.ts +19 -0
- package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
- package/actionsExecutor/actions/__tests__/navigateToScreen.test.ts +133 -0
- package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
- package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +212 -0
- package/actionsExecutor/actions/__tests__/presentScreen.test.ts +127 -0
- package/actionsExecutor/actions/__tests__/showAlert.test.ts +49 -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 +23 -0
- package/actionsExecutor/actions/goBack.ts +60 -0
- package/actionsExecutor/actions/goHome.ts +31 -0
- package/actionsExecutor/actions/index.ts +42 -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 +137 -0
- package/actionsExecutor/actions/openBottomSheet.ts +329 -0
- package/actionsExecutor/actions/presentScreen.ts +78 -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/showAlert.ts +51 -0
- package/actionsExecutor/actions/showToast.ts +87 -0
- package/actionsExecutor/actions/switchLayout.ts +40 -0
- package/actionsExecutor/consts.ts +27 -0
- package/actionsExecutor/feedDecorator.ts +6 -6
- 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/getUpcomingQueue.android.tv.ts +4 -0
- package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ios.tv.ts +4 -0
- package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ts +11 -0
- package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.web.ts +4 -0
- package/appUtils/playerManager/OverlayObserver/utils.ts +54 -20
- package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
- package/appUtils/playerManager/__tests__/playerFactory.test.ts +1 -1
- package/appUtils/playerManager/__tests__/playerNative.test.ts +38 -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 +1 -1
- package/appUtils/playerManager/playerNative.ts +6 -4
- 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 +33 -8
- 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__/manifestKeyParser.test.ts +21 -0
- package/configurationUtils/__tests__/modalBlocksParser.test.ts +260 -0
- package/configurationUtils/manifestKeyParser.ts +50 -10
- package/configurationUtils/modalBlocksParser.ts +296 -0
- package/entryActions/__tests__/buildEntryActions.test.ts +195 -0
- package/entryActions/aliasPresentation.ts +124 -0
- package/entryActions/buildEntryActions.ts +167 -0
- package/entryActions/index.ts +17 -0
- package/entryActions/types.ts +39 -0
- package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
- package/manifestUtils/_internals/index.js +14 -3
- package/manifestUtils/defaultManifestConfigurations/generalContent.js +41 -0
- package/manifestUtils/defaultManifestConfigurations/player.js +349 -20
- 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 +211 -0
- package/modalState/RemoteEditableCollection.ts +235 -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 +47 -0
- package/modalState/__tests__/RemoteEditableCollection.test.ts +415 -0
- package/modalState/__tests__/index.test.ts +30 -1
- package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
- package/modalState/__tests__/useModalStoreState.test.ts +142 -0
- package/modalState/index.ts +35 -83
- package/modalState/store.ts +109 -0
- package/modalState/types.ts +160 -0
- package/modalState/useBottomSheetContent.ts +109 -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__/resolvePlayerActions.test.ts +138 -0
- package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
- package/playerUtils/contentDataKeys.ts +134 -0
- package/playerUtils/index.ts +41 -18
- package/playerUtils/isAudioItem.ts +26 -0
- package/playerUtils/resolvePlayerActions.ts +71 -0
- package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
- package/reactHooks/actions/index.ts +117 -2
- package/reactHooks/cell-click/__tests__/index.test.js +64 -0
- package/reactHooks/cell-click/index.ts +39 -24
- 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__/index.test.tsx +176 -1
- package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
- package/reactHooks/navigation/__tests__/usePresentScreen.test.ts +154 -0
- package/reactHooks/navigation/index.ts +3 -1
- package/reactHooks/navigation/useIsScreenActive.ts +29 -8
- package/reactHooks/navigation/usePresentScreen.ts +157 -0
- package/reactHooks/navigation/useRoute.ts +22 -5
- 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/__tests__/resolveActionIdentifiers.test.ts +93 -0
- package/uiActionsRegistrator/__tests__/subscribe.test.ts +107 -0
- package/uiActionsRegistrator/__tests__/usableActionItems.test.ts +52 -0
- package/uiActionsRegistrator/index.ts +25 -0
- package/uiActionsRegistrator/registry.ts +335 -0
- package/uiActionsRegistrator/resolveActionIdentifiers.ts +100 -0
- package/uiActionsRegistrator/usableActionItems.ts +66 -0
- package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
- package/zappFrameworkUtils/localStorageHelper.ts +19 -15
- package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
- package/playerUtils/__tests__/getPlayerActionButtons.test.ts +0 -54
- package/playerUtils/getPlayerActionButtons.ts +0 -17
- package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
- /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import { buildEntryActions } from "../buildEntryActions";
|
|
2
|
+
|
|
3
|
+
describe("buildEntryActions - alias & label resolution", () => {
|
|
4
|
+
const mockDeps = {
|
|
5
|
+
actionExecutor: { handleActions: jest.fn() } as any,
|
|
6
|
+
actionContext: {},
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const resolveEntryActions = (entry: ZappEntry) =>
|
|
10
|
+
buildEntryActions(entry, mockDeps);
|
|
11
|
+
|
|
12
|
+
it("resolves entry action with explicit button title", () => {
|
|
13
|
+
const entry = {
|
|
14
|
+
id: "entry-1",
|
|
15
|
+
extensions: {
|
|
16
|
+
entry_action: [
|
|
17
|
+
{
|
|
18
|
+
button: {
|
|
19
|
+
title: "Custom Action Title",
|
|
20
|
+
iconURL: "http://example.com/icon.png",
|
|
21
|
+
},
|
|
22
|
+
actions: [{ type: "test" }],
|
|
23
|
+
dismiss_on_action: true,
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const actions = resolveEntryActions(entry as any);
|
|
30
|
+
|
|
31
|
+
expect(actions).toHaveLength(1);
|
|
32
|
+
expect(actions[0].identifier).toBe("entry_action_0");
|
|
33
|
+
|
|
34
|
+
const state = actions[0].action.initialEntryState(entry as any);
|
|
35
|
+
|
|
36
|
+
expect(state).toEqual({
|
|
37
|
+
state: 0,
|
|
38
|
+
label: "Custom Action Title",
|
|
39
|
+
asset: "http://example.com/icon.png",
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it("resolves entry action with button label property", () => {
|
|
44
|
+
const entry = {
|
|
45
|
+
id: "entry-2",
|
|
46
|
+
extensions: {
|
|
47
|
+
entry_action: [
|
|
48
|
+
{
|
|
49
|
+
button: { label: "Label Property Action" },
|
|
50
|
+
actions: [{ type: "test" }],
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
},
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const actions = resolveEntryActions(entry as any);
|
|
57
|
+
|
|
58
|
+
expect(actions).toHaveLength(1);
|
|
59
|
+
const state = actions[0].action.initialEntryState(entry as any);
|
|
60
|
+
expect(state.label).toBe("Label Property Action");
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
it("resolves entry action with known backend button alias (e.g. add_all_to_queue)", () => {
|
|
64
|
+
const entry = {
|
|
65
|
+
id: "entry-3",
|
|
66
|
+
extensions: {
|
|
67
|
+
entry_action: [
|
|
68
|
+
{
|
|
69
|
+
button: { alias: "add_all_to_queue" },
|
|
70
|
+
actions: [{ type: "test" }],
|
|
71
|
+
dismiss_on_action: true,
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
button: { alias: "add_to_playlist" },
|
|
75
|
+
actions: [{ type: "test" }],
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
button: { alias: "delete_collection" },
|
|
79
|
+
actions: [{ type: "test" }],
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
},
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const actions = resolveEntryActions(entry as any);
|
|
86
|
+
|
|
87
|
+
expect(actions).toHaveLength(3);
|
|
88
|
+
|
|
89
|
+
expect(actions[0].action.initialEntryState(entry as any)).toMatchObject({
|
|
90
|
+
state: 0,
|
|
91
|
+
label: "Add all to Queue",
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
expect(actions[1].action.initialEntryState(entry as any)).toMatchObject({
|
|
95
|
+
state: 0,
|
|
96
|
+
label: "Add to Playlist",
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
expect(actions[2].action.initialEntryState(entry as any)).toMatchObject({
|
|
100
|
+
state: 0,
|
|
101
|
+
label: "Delete collection",
|
|
102
|
+
});
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
it("formats unknown alias nicely as fallback", () => {
|
|
106
|
+
const entry = {
|
|
107
|
+
id: "entry-4",
|
|
108
|
+
extensions: {
|
|
109
|
+
entry_action: [
|
|
110
|
+
{
|
|
111
|
+
button: { alias: "custom_unknown_action" },
|
|
112
|
+
actions: [{ type: "test" }],
|
|
113
|
+
},
|
|
114
|
+
],
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
const actions = resolveEntryActions(entry as any);
|
|
119
|
+
|
|
120
|
+
expect(actions).toHaveLength(1);
|
|
121
|
+
const state = actions[0].action.initialEntryState(entry as any);
|
|
122
|
+
expect(state.label).toBe("Custom unknown action");
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
it("uses actionExecutor.getActionState for plugin-provided label and asset", () => {
|
|
126
|
+
mockDeps.actionExecutor.getActionState = jest.fn(() => ({
|
|
127
|
+
label: "From Plugin",
|
|
128
|
+
asset: "plugin_asset",
|
|
129
|
+
}));
|
|
130
|
+
|
|
131
|
+
const entry = {
|
|
132
|
+
id: "entry-plugin-state",
|
|
133
|
+
extensions: {
|
|
134
|
+
entry_action: [
|
|
135
|
+
{
|
|
136
|
+
button: { alias: "custom_plugin_action" },
|
|
137
|
+
actions: [{ type: "plugin-action" }],
|
|
138
|
+
},
|
|
139
|
+
],
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
const actions = resolveEntryActions(entry as any);
|
|
144
|
+
const state = actions[0].action.initialEntryState(entry as any);
|
|
145
|
+
|
|
146
|
+
expect(mockDeps.actionExecutor.getActionState).toHaveBeenCalledWith(
|
|
147
|
+
"plugin-action",
|
|
148
|
+
entry
|
|
149
|
+
);
|
|
150
|
+
|
|
151
|
+
expect(state).toMatchObject({
|
|
152
|
+
label: "From Plugin",
|
|
153
|
+
asset: "plugin_asset",
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
describe("buildEntryActions - invokeAction execution context", () => {
|
|
159
|
+
it("forwards the List component from invoke options into handleActions", async () => {
|
|
160
|
+
const handleActions = jest.fn();
|
|
161
|
+
|
|
162
|
+
const component = {
|
|
163
|
+
id: "list-1",
|
|
164
|
+
data: { source: "https://example.com/user/collections/abc" },
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
const deps = {
|
|
168
|
+
actionExecutor: { handleActions } as any,
|
|
169
|
+
actionContext: { screenData: { id: "playlist-screen" } },
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
const entry = {
|
|
173
|
+
id: "entry-1",
|
|
174
|
+
extensions: {
|
|
175
|
+
entry_action: [
|
|
176
|
+
{
|
|
177
|
+
button: { title: "Edit Name" },
|
|
178
|
+
actions: [{ type: "refreshComponent" }],
|
|
179
|
+
},
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
const [action] = buildEntryActions(entry as any, deps);
|
|
185
|
+
|
|
186
|
+
await action.action.invokeAction(entry as any, { component });
|
|
187
|
+
|
|
188
|
+
expect(handleActions).toHaveBeenCalledWith([{ type: "refreshComponent" }], {
|
|
189
|
+
entry,
|
|
190
|
+
entryContext: entry,
|
|
191
|
+
screenData: { id: "playlist-screen" },
|
|
192
|
+
component,
|
|
193
|
+
});
|
|
194
|
+
});
|
|
195
|
+
});
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Presentation defaults for backend action aliases.
|
|
3
|
+
*
|
|
4
|
+
* Entries may declare an action by `alias` alone, without a label or an icon.
|
|
5
|
+
* These maps are the last-resort labels/icons for the aliases we know about; an
|
|
6
|
+
* unknown alias falls back to a humanized version of the alias itself.
|
|
7
|
+
*
|
|
8
|
+
* They are defaults, not a framework guarantee: an app that speaks a different
|
|
9
|
+
* alias vocabulary, needs other languages, or does not want to depend on these
|
|
10
|
+
* icon hosts passes its own through `EntryActionDeps.aliasPresentation`.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import { EntryAction } from "./types";
|
|
14
|
+
|
|
15
|
+
const ADD_TO_PLAYLIST_ICON =
|
|
16
|
+
"https://assets-secure.applicaster.com/zapp/assets/app_family/1710/906728572617/playlist_add_24dp_FFFFFF_FILL0_wght400_GRAD0_opsz24.png";
|
|
17
|
+
|
|
18
|
+
const REMOVE_ICON =
|
|
19
|
+
"https://assets-secure.applicaster.com/zapp/assets/app_family/1710/372097240191/remove_24dp_EA3323_FILL0_wght400_GRAD0_opsz24.png";
|
|
20
|
+
|
|
21
|
+
const EDIT_ICON =
|
|
22
|
+
"https://upload.wikimedia.org/wikipedia/commons/b/b6/Edit-icon.png";
|
|
23
|
+
|
|
24
|
+
/** Known backend action alias labels. */
|
|
25
|
+
export const ALIAS_LABELS: Record<string, string> = {
|
|
26
|
+
add_to_playlist: "Add to Playlist",
|
|
27
|
+
add_to_queue: "Add to Queue",
|
|
28
|
+
add_all_to_queue: "Add all to Queue",
|
|
29
|
+
play_all: "Play All",
|
|
30
|
+
remove_item: "Remove item",
|
|
31
|
+
delete_collection: "Delete collection",
|
|
32
|
+
create_collection: "Create collection",
|
|
33
|
+
edit: "Edit",
|
|
34
|
+
edit_name: "Edit Name & Details",
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
/** Known backend action alias image assets. */
|
|
38
|
+
export const ALIAS_ASSETS: Record<string, string> = {
|
|
39
|
+
add_to_playlist: ADD_TO_PLAYLIST_ICON,
|
|
40
|
+
add_to_queue: ADD_TO_PLAYLIST_ICON,
|
|
41
|
+
add_all_to_queue: ADD_TO_PLAYLIST_ICON,
|
|
42
|
+
play_all: ADD_TO_PLAYLIST_ICON,
|
|
43
|
+
remove_item: REMOVE_ICON,
|
|
44
|
+
delete_collection: REMOVE_ICON,
|
|
45
|
+
edit: EDIT_ICON,
|
|
46
|
+
edit_name: EDIT_ICON,
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
/** Per-app overrides for the maps above. */
|
|
50
|
+
export type AliasPresentation = {
|
|
51
|
+
labels?: Record<string, string>;
|
|
52
|
+
assets?: Record<string, string>;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
function formatAliasLabel(
|
|
56
|
+
alias: string,
|
|
57
|
+
overrides?: AliasPresentation
|
|
58
|
+
): string {
|
|
59
|
+
const label = overrides?.labels?.[alias] ?? ALIAS_LABELS[alias];
|
|
60
|
+
|
|
61
|
+
if (label) {
|
|
62
|
+
return label;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const formatted = alias.replace(/_/g, " ");
|
|
66
|
+
|
|
67
|
+
return formatted.charAt(0).toUpperCase() + formatted.slice(1);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const nonEmptyString = (value: unknown): value is string =>
|
|
71
|
+
typeof value === "string" && value.length > 0;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Label the backend stated outright, if any. Distinct from
|
|
75
|
+
* {@link resolveButtonLabel} because an explicit label outranks the executor's
|
|
76
|
+
* action state, while the alias fallback does not.
|
|
77
|
+
*/
|
|
78
|
+
export function resolveExplicitLabel(
|
|
79
|
+
button: EntryAction["button"]
|
|
80
|
+
): string | undefined {
|
|
81
|
+
if (nonEmptyString(button?.title)) {
|
|
82
|
+
return button.title;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
if (nonEmptyString(button?.label)) {
|
|
86
|
+
return button.label;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return undefined;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/** Label to show for an entry action: explicit title/label, else the alias. */
|
|
93
|
+
export function resolveButtonLabel(
|
|
94
|
+
button: EntryAction["button"],
|
|
95
|
+
overrides?: AliasPresentation
|
|
96
|
+
): string {
|
|
97
|
+
const explicit = resolveExplicitLabel(button);
|
|
98
|
+
|
|
99
|
+
if (explicit) {
|
|
100
|
+
return explicit;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (nonEmptyString(button?.alias)) {
|
|
104
|
+
return formatAliasLabel(button.alias, overrides);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
return "";
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/** Icon to show for an entry action: explicit iconURL, else the alias default. */
|
|
111
|
+
export function resolveButtonAsset(
|
|
112
|
+
button: EntryAction["button"],
|
|
113
|
+
overrides?: AliasPresentation
|
|
114
|
+
): string | undefined {
|
|
115
|
+
if (button?.iconURL) {
|
|
116
|
+
return button.iconURL;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
if (!button?.alias) {
|
|
120
|
+
return undefined;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
return overrides?.assets?.[button.alias] ?? ALIAS_ASSETS[button.alias];
|
|
124
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
/// <reference types="@applicaster/applicaster-types" />
|
|
2
|
+
import { createLogger } from "../logger";
|
|
3
|
+
import { ActionExecutionContext } from "../actionsExecutor/types";
|
|
4
|
+
import { RegisteredAction } from "../uiActionsRegistrator";
|
|
5
|
+
|
|
6
|
+
import {
|
|
7
|
+
resolveButtonAsset,
|
|
8
|
+
resolveButtonLabel,
|
|
9
|
+
resolveExplicitLabel,
|
|
10
|
+
} from "./aliasPresentation";
|
|
11
|
+
import { EntryAction, EntryActionDeps } from "./types";
|
|
12
|
+
|
|
13
|
+
const { log_info, log_warning, log_error } = createLogger({
|
|
14
|
+
subsystem: "EntryActions",
|
|
15
|
+
category: "EntryAction",
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
const ENTRY_ACTION_IDENTIFIER_PREFIX = "entry_action";
|
|
19
|
+
|
|
20
|
+
/** True for actions inflated from `entry.extensions.entry_action`. */
|
|
21
|
+
export function isEntryAction(item: RegisteredAction): boolean {
|
|
22
|
+
return item?.source === "entry";
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function isValidEntryAction(value: unknown): value is EntryAction {
|
|
26
|
+
if (typeof value !== "object" || value === null) {
|
|
27
|
+
return false;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const { button, actions } = value as EntryAction;
|
|
31
|
+
|
|
32
|
+
return (
|
|
33
|
+
(typeof button?.title === "string" ||
|
|
34
|
+
typeof button?.label === "string" ||
|
|
35
|
+
typeof button?.alias === "string") &&
|
|
36
|
+
Array.isArray(actions)
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function createEntryAction(
|
|
41
|
+
entryAction: EntryAction,
|
|
42
|
+
index: number,
|
|
43
|
+
entry: ZappEntry | ZappFeed,
|
|
44
|
+
deps: EntryActionDeps
|
|
45
|
+
): RegisteredAction {
|
|
46
|
+
const { button, actions, dismiss_on_action } = entryAction;
|
|
47
|
+
|
|
48
|
+
const identifier = `${ENTRY_ACTION_IDENTIFIER_PREFIX}_${index}`;
|
|
49
|
+
const primaryAction = actions.length > 0 ? actions[0] : null;
|
|
50
|
+
|
|
51
|
+
const actionState = primaryAction
|
|
52
|
+
? deps.actionExecutor?.getActionState?.(primaryAction.type, entry)
|
|
53
|
+
: null;
|
|
54
|
+
|
|
55
|
+
// An explicit title/label outranks the executor's action state; the
|
|
56
|
+
// alias-derived defaults only fill in when neither produced anything.
|
|
57
|
+
const label: CellActionEntryState["label"] =
|
|
58
|
+
resolveExplicitLabel(button) ||
|
|
59
|
+
actionState?.label ||
|
|
60
|
+
resolveButtonLabel(button, deps.aliasPresentation);
|
|
61
|
+
|
|
62
|
+
const asset: CellActionEntryState["asset"] =
|
|
63
|
+
button?.iconURL ||
|
|
64
|
+
actionState?.asset ||
|
|
65
|
+
resolveButtonAsset(button, deps.aliasPresentation);
|
|
66
|
+
|
|
67
|
+
const initialState = { state: 0, label, asset };
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
identifier,
|
|
71
|
+
source: "entry",
|
|
72
|
+
action: {
|
|
73
|
+
initialEntryState: () => initialState,
|
|
74
|
+
invokeAction: async (
|
|
75
|
+
invokedEntry: ZappEntry,
|
|
76
|
+
options: InvokeArgsOptions = {}
|
|
77
|
+
) => {
|
|
78
|
+
if (dismiss_on_action === true) {
|
|
79
|
+
options.dismiss?.();
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
log_info(
|
|
83
|
+
`invokeAction: entry action "${identifier}" triggered for entry "${invokedEntry?.id}"`,
|
|
84
|
+
{ identifier, entryId: invokedEntry?.id, actionCount: actions.length }
|
|
85
|
+
);
|
|
86
|
+
|
|
87
|
+
// Both of these leave the user with a button that does nothing when
|
|
88
|
+
// tapped, and neither throws, so they would otherwise be invisible.
|
|
89
|
+
if (actions.length === 0) {
|
|
90
|
+
log_warning(
|
|
91
|
+
`invokeAction: entry action "${identifier}" on entry "${invokedEntry?.id}" declares no actions - the tap does nothing`,
|
|
92
|
+
{ identifier, entryId: invokedEntry?.id }
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
if (typeof deps.actionExecutor?.handleActions !== "function") {
|
|
97
|
+
log_warning(
|
|
98
|
+
`invokeAction: no action executor available for entry action "${identifier}" - the tap does nothing`,
|
|
99
|
+
{ identifier, entryId: invokedEntry?.id }
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
try {
|
|
104
|
+
await deps.actionExecutor?.handleActions(actions, {
|
|
105
|
+
entry: invokedEntry,
|
|
106
|
+
entryContext: invokedEntry,
|
|
107
|
+
...deps.actionContext,
|
|
108
|
+
...(options.component ? { component: options.component } : {}),
|
|
109
|
+
} as ActionExecutionContext);
|
|
110
|
+
} catch (error) {
|
|
111
|
+
log_error(
|
|
112
|
+
`invokeAction: entry action "${identifier}" failed for entry "${invokedEntry?.id}"`,
|
|
113
|
+
{
|
|
114
|
+
identifier,
|
|
115
|
+
entryId: invokedEntry?.id,
|
|
116
|
+
// Types only - the action payloads are backend supplied and may
|
|
117
|
+
// carry user data.
|
|
118
|
+
actionTypes: actions.map((action) => action?.type),
|
|
119
|
+
error,
|
|
120
|
+
}
|
|
121
|
+
);
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Builds the list of actions declared on an entry via
|
|
130
|
+
* `entry.extensions.entry_action`.
|
|
131
|
+
*/
|
|
132
|
+
export function buildEntryActions(
|
|
133
|
+
entry: ZappEntry | ZappFeed,
|
|
134
|
+
deps: EntryActionDeps
|
|
135
|
+
): RegisteredAction[] {
|
|
136
|
+
const entryId = (entry as ZappEntry)?.id;
|
|
137
|
+
const raw = (entry as any)?.extensions?.entry_action;
|
|
138
|
+
|
|
139
|
+
// Most entries simply declare no actions. This provider is resolved for
|
|
140
|
+
// every entry on every render, so saying so would drown everything else.
|
|
141
|
+
if (raw === undefined || raw === null) {
|
|
142
|
+
return [];
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
if (!Array.isArray(raw)) {
|
|
146
|
+
log_warning(
|
|
147
|
+
`buildEntryActions: entry "${entryId}" has extensions.entry_action of type ${typeof raw} instead of an array - no entry actions will be shown`,
|
|
148
|
+
{ entryId, receivedType: typeof raw }
|
|
149
|
+
);
|
|
150
|
+
|
|
151
|
+
return [];
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
const valid = raw.filter(isValidEntryAction);
|
|
155
|
+
const invalid = raw.length - valid.length;
|
|
156
|
+
|
|
157
|
+
if (invalid > 0) {
|
|
158
|
+
log_warning(
|
|
159
|
+
`buildEntryActions: ${invalid} invalid entry action(s) skipped for entry "${entryId}"`,
|
|
160
|
+
{ entryId, total: raw.length, invalid }
|
|
161
|
+
);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
return valid.map((entryAction, index) =>
|
|
165
|
+
createEntryAction(entryAction, index, entry, deps)
|
|
166
|
+
);
|
|
167
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export { buildEntryActions, isEntryAction } from "./buildEntryActions";
|
|
2
|
+
|
|
3
|
+
export {
|
|
4
|
+
ALIAS_ASSETS,
|
|
5
|
+
ALIAS_LABELS,
|
|
6
|
+
resolveButtonAsset,
|
|
7
|
+
resolveButtonLabel,
|
|
8
|
+
resolveExplicitLabel,
|
|
9
|
+
} from "./aliasPresentation";
|
|
10
|
+
|
|
11
|
+
export type {
|
|
12
|
+
EntryAction,
|
|
13
|
+
EntryActionDeps,
|
|
14
|
+
EntryActionExecutionContext,
|
|
15
|
+
} from "./types";
|
|
16
|
+
|
|
17
|
+
export type { AliasPresentation } from "./aliasPresentation";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/// <reference types="@applicaster/applicaster-types" />
|
|
2
|
+
import type { ActionExecutorContextType } from "../actionsExecutor/ActionExecutorContext";
|
|
3
|
+
import type { AliasPresentation } from "./aliasPresentation";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* A single action declared by the backend on an entry, under
|
|
7
|
+
* `entry.extensions.entry_action`.
|
|
8
|
+
*/
|
|
9
|
+
export type EntryAction = {
|
|
10
|
+
button: {
|
|
11
|
+
title?: string;
|
|
12
|
+
label?: string;
|
|
13
|
+
alias?: string;
|
|
14
|
+
iconURL?: string;
|
|
15
|
+
};
|
|
16
|
+
actions: ZappActionType[];
|
|
17
|
+
dismiss_on_action?: boolean;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Everything `buildEntryActions` needs from the surrounding React tree in order
|
|
22
|
+
* to execute an entry action. Supplied lazily so the registered provider always
|
|
23
|
+
* reads the freshest screen context.
|
|
24
|
+
*/
|
|
25
|
+
export type EntryActionDeps = {
|
|
26
|
+
actionExecutor: ActionExecutorContextType;
|
|
27
|
+
actionContext: EntryActionExecutionContext;
|
|
28
|
+
/** App-supplied labels/icons for backend aliases; defaults are used without it. */
|
|
29
|
+
aliasPresentation?: AliasPresentation;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/** The screen the action is executed against, spread into the execution context. */
|
|
33
|
+
export type EntryActionExecutionContext = {
|
|
34
|
+
screenData?: unknown;
|
|
35
|
+
screenState?: unknown;
|
|
36
|
+
screenRoute?: string;
|
|
37
|
+
screenStateStore?: unknown;
|
|
38
|
+
screenEntry?: unknown;
|
|
39
|
+
};
|
|
@@ -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
|
+
});
|