@applicaster/zapp-react-native-utils 16.0.0-rc.9 → 16.0.0-rc.91
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 +208 -0
- package/configurationUtils/manifestKeyParser.ts +50 -10
- package/configurationUtils/modalBlocksParser.ts +200 -0
- package/entryActions/__tests__/buildEntryActions.test.ts +235 -0
- package/entryActions/aliasPresentation.ts +108 -0
- package/entryActions/buildEntryActions.ts +167 -0
- package/entryActions/index.ts +15 -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,208 @@
|
|
|
1
|
+
import {
|
|
2
|
+
getEmptyModalBlocksStructure,
|
|
3
|
+
parseModalBlocksConfiguration,
|
|
4
|
+
} from "../modalBlocksParser";
|
|
5
|
+
|
|
6
|
+
// Mock the platform selection logic so it's consistent
|
|
7
|
+
jest.mock("../../reactUtils", () => ({
|
|
8
|
+
platformSelect: jest.fn().mockReturnValue("ios"),
|
|
9
|
+
}));
|
|
10
|
+
|
|
11
|
+
describe("parseModalBlocksConfiguration", () => {
|
|
12
|
+
beforeEach(() => {
|
|
13
|
+
jest.clearAllMocks();
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("should return empty structures for missing config or componentName", () => {
|
|
17
|
+
const result1 = parseModalBlocksConfiguration(
|
|
18
|
+
undefined as any,
|
|
19
|
+
"queue_action"
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
expect(result1.header.container).toEqual({});
|
|
23
|
+
|
|
24
|
+
const result2 = parseModalBlocksConfiguration({ foo: "bar" }, "");
|
|
25
|
+
expect(result2.item.background).toEqual({});
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
it("should correctly parse the specified flat keys into nested objects", () => {
|
|
29
|
+
// The keys follow: <component_name>_style_<blockName>_<subComponent>_[platform_][state_]<styleName>
|
|
30
|
+
const config = {
|
|
31
|
+
// Header container - default platform, default state
|
|
32
|
+
queue_action_style_header_container_backgroundColor: "#000000",
|
|
33
|
+
|
|
34
|
+
// Header title - default platform, pressed state
|
|
35
|
+
queue_action_style_header_title_pressed_fontColor: "#ffffff",
|
|
36
|
+
|
|
37
|
+
// Item background - ios platform, default state
|
|
38
|
+
queue_action_style_item_background_ios_backgroundColor: "blue",
|
|
39
|
+
|
|
40
|
+
// Item textLabel1 - default platform, focused state
|
|
41
|
+
queue_action_style_item_text_label_1_focused_fontSize: 16,
|
|
42
|
+
|
|
43
|
+
// Ignored key (unrelated to building blocks or queue_action)
|
|
44
|
+
other_action_style_header_title_fontColor: "red",
|
|
45
|
+
some_random_key: "value",
|
|
46
|
+
|
|
47
|
+
// Ignored non-style data keys (should NEVER be parsed as styles)
|
|
48
|
+
item_data_source: "http://pipes.example.com",
|
|
49
|
+
item_url: "http://example.com",
|
|
50
|
+
|
|
51
|
+
// New dot notation from manifest-generator (without plugin prefix)
|
|
52
|
+
"item.text_label_2.fontColor": "green",
|
|
53
|
+
"action.background.pressed_backgroundColor": "black",
|
|
54
|
+
|
|
55
|
+
// New now_playing_item block
|
|
56
|
+
"now_playing_item.text_label_1.fontColor": "yellow",
|
|
57
|
+
"now_playing_item.now_playing_asset.asset": "equalizer.png",
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
const componentName = "queue_action";
|
|
61
|
+
|
|
62
|
+
const result = parseModalBlocksConfiguration(config, componentName);
|
|
63
|
+
|
|
64
|
+
// Assert header container default state
|
|
65
|
+
expect(result.header.container.default).toEqual({
|
|
66
|
+
backgroundColor: "#000000",
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
// Assert header title pressed state
|
|
70
|
+
// (pressed state will inherit default styles in getAllSpecificStyles if any,
|
|
71
|
+
// but here we just have pressed, so it has default empty from the parser)
|
|
72
|
+
expect(result.header.title.pressed).toEqual({
|
|
73
|
+
fontColor: "#ffffff",
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
// Assert item background ios default state
|
|
77
|
+
// (mocked platform is ios, so it should be accepted and assigned to default)
|
|
78
|
+
expect(result.item.background.default).toEqual({
|
|
79
|
+
backgroundColor: "blue",
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
// Assert item textLabel1 focused state
|
|
83
|
+
expect(result.item.textLabel1.focused).toEqual({
|
|
84
|
+
fontSize: 16,
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
// Assert dot notation textLabel2 default state
|
|
88
|
+
expect(result.item.textLabel2.default).toEqual({
|
|
89
|
+
fontColor: "green",
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
// Assert dot notation action background pressed state
|
|
93
|
+
expect(result.action.background.pressed).toEqual({
|
|
94
|
+
backgroundColor: "black",
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
// Assert nowPlayingItem states
|
|
98
|
+
expect(result.nowPlayingItem?.textLabel1.default).toEqual({
|
|
99
|
+
fontColor: "yellow",
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
expect(result.nowPlayingItem?.nowPlayingAsset.default).toEqual({
|
|
103
|
+
asset: "equalizer.png",
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
// Assert untouched properties remain empty default style objects
|
|
107
|
+
expect(result.button.title).toEqual({ default: {} });
|
|
108
|
+
expect(result.action.leadingIcon).toEqual({ default: {} });
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
it("should map Studio item.background.focus.* onto focused state", () => {
|
|
112
|
+
const result = parseModalBlocksConfiguration(
|
|
113
|
+
{
|
|
114
|
+
"item.background.default.background_color": "transparent",
|
|
115
|
+
"item.background.focus.background_color": "#FF3B30",
|
|
116
|
+
},
|
|
117
|
+
"playlist-experience"
|
|
118
|
+
);
|
|
119
|
+
|
|
120
|
+
expect(result.item.background.default).toEqual(
|
|
121
|
+
expect.objectContaining({
|
|
122
|
+
backgroundColor: "transparent",
|
|
123
|
+
})
|
|
124
|
+
);
|
|
125
|
+
|
|
126
|
+
expect(result.item.background.focused).toEqual(
|
|
127
|
+
expect.objectContaining({
|
|
128
|
+
backgroundColor: "#FF3B30",
|
|
129
|
+
})
|
|
130
|
+
);
|
|
131
|
+
});
|
|
132
|
+
|
|
133
|
+
it("should accept Studio text_label1 keys without underscore before digit", () => {
|
|
134
|
+
const result = parseModalBlocksConfiguration(
|
|
135
|
+
{
|
|
136
|
+
"item.text_label1.font_color": "#00FF00",
|
|
137
|
+
"item.text_label1.font_size": 28,
|
|
138
|
+
"item.text_label2.font_color": "#00FFFF",
|
|
139
|
+
},
|
|
140
|
+
"playlist-experience"
|
|
141
|
+
);
|
|
142
|
+
|
|
143
|
+
expect(result.item.textLabel1.default).toEqual(
|
|
144
|
+
expect.objectContaining({
|
|
145
|
+
fontColor: "#00FF00",
|
|
146
|
+
fontSize: 28,
|
|
147
|
+
})
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
expect(result.item.textLabel2.default).toEqual(
|
|
151
|
+
expect.objectContaining({
|
|
152
|
+
fontColor: "#00FFFF",
|
|
153
|
+
})
|
|
154
|
+
);
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
it("should ignore keys that do not map to a known block sub-component", () => {
|
|
158
|
+
const result = parseModalBlocksConfiguration(
|
|
159
|
+
{
|
|
160
|
+
"button.create_new_playlist_asset":
|
|
161
|
+
"https://placehold.co/24x24/FF00FF/FFFFFF/png?text=CN",
|
|
162
|
+
"item.checkbox_asset":
|
|
163
|
+
"https://placehold.co/24x24/FF3B30/FFFFFF/png?text=CB",
|
|
164
|
+
"reorder_playlist_item.reorder_handle_asset":
|
|
165
|
+
"https://placehold.co/24x24/FF3B30/FFFFFF/png?text=RH",
|
|
166
|
+
},
|
|
167
|
+
"playlist-experience"
|
|
168
|
+
);
|
|
169
|
+
|
|
170
|
+
expect(result.button.leadingIcon.default?.asset).toBeUndefined();
|
|
171
|
+
expect(result.item.checkbox.default).toBeUndefined();
|
|
172
|
+
expect(result.item.actionButtons.default).toBeUndefined();
|
|
173
|
+
});
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
describe("getEmptyModalBlocksStructure", () => {
|
|
177
|
+
it("should return every block with empty containers and no state entries", () => {
|
|
178
|
+
const result = getEmptyModalBlocksStructure();
|
|
179
|
+
|
|
180
|
+
expect(result.header.container).toEqual({});
|
|
181
|
+
expect(result.item.background).toEqual({});
|
|
182
|
+
expect(result.button.background).toEqual({});
|
|
183
|
+
expect(result.action.background).toEqual({});
|
|
184
|
+
|
|
185
|
+
expect(result.button.leadingIcon.default).toBeUndefined();
|
|
186
|
+
expect(result.item.checkbox.default).toBeUndefined();
|
|
187
|
+
expect(result.item.actionButtons.default).toBeUndefined();
|
|
188
|
+
});
|
|
189
|
+
|
|
190
|
+
it("should return a fresh object on every call", () => {
|
|
191
|
+
const first = getEmptyModalBlocksStructure();
|
|
192
|
+
const second = getEmptyModalBlocksStructure();
|
|
193
|
+
|
|
194
|
+
expect(first).not.toBe(second);
|
|
195
|
+
expect(first.header).not.toBe(second.header);
|
|
196
|
+
expect(first).toEqual(second);
|
|
197
|
+
});
|
|
198
|
+
|
|
199
|
+
it("should be what the parser returns when config or componentName is missing", () => {
|
|
200
|
+
expect(
|
|
201
|
+
parseModalBlocksConfiguration(undefined as any, "queue_action")
|
|
202
|
+
).toEqual(getEmptyModalBlocksStructure());
|
|
203
|
+
|
|
204
|
+
expect(parseModalBlocksConfiguration({ foo: "bar" }, "")).toEqual(
|
|
205
|
+
getEmptyModalBlocksStructure()
|
|
206
|
+
);
|
|
207
|
+
});
|
|
208
|
+
});
|
|
@@ -11,17 +11,30 @@ const currentPlatform = platformSelect({
|
|
|
11
11
|
android_tv: "android",
|
|
12
12
|
});
|
|
13
13
|
|
|
14
|
-
// Do not change the order
|
|
15
|
-
|
|
14
|
+
// Do not change the order: focused_selected must be first, and "focus" must
|
|
15
|
+
// come *after* "focused". Matching uses startsWith(state + "_"), so putting
|
|
16
|
+
// "focus" first would steal focused_* / focused_selected_* keys. Adding
|
|
17
|
+
// "focus" here affects every getAllSpecificStyles consumer (not only modals);
|
|
18
|
+
// property names that themselves start with focus_ (e.g. focus_font_color as
|
|
19
|
+
// a non-state style) would also be classified as the focus state.
|
|
20
|
+
const states = [
|
|
21
|
+
"focused_selected",
|
|
22
|
+
"pressed",
|
|
23
|
+
"focused",
|
|
24
|
+
"focus",
|
|
25
|
+
"selected",
|
|
26
|
+
"default",
|
|
27
|
+
];
|
|
16
28
|
|
|
17
29
|
const platformSuffixes = ["ios", "tvos", "samsung", "lg", "android"];
|
|
18
|
-
type StateKey = (typeof states)[number]
|
|
30
|
+
type StateKey = (typeof states)[number];
|
|
19
31
|
|
|
20
32
|
export type GetAllSpecificStylesProps = {
|
|
21
33
|
componentName: string;
|
|
22
34
|
subComponentName: string;
|
|
23
35
|
configuration: Record<string, any>;
|
|
24
36
|
outStyles: Record<string, any>;
|
|
37
|
+
styleSeparator?: string;
|
|
25
38
|
};
|
|
26
39
|
|
|
27
40
|
/*
|
|
@@ -35,14 +48,23 @@ export const getAllSpecificStyles = ({
|
|
|
35
48
|
componentName,
|
|
36
49
|
subComponentName,
|
|
37
50
|
outStyles,
|
|
51
|
+
styleSeparator = "_style_",
|
|
38
52
|
}: GetAllSpecificStylesProps) => {
|
|
39
53
|
if (!outStyles) throw new Error("outStyles is required");
|
|
40
54
|
if (!componentName) throw new Error("componentName is required");
|
|
41
55
|
|
|
42
|
-
const
|
|
56
|
+
const prefixes =
|
|
43
57
|
subComponentName?.length > 0
|
|
44
|
-
?
|
|
45
|
-
|
|
58
|
+
? [
|
|
59
|
+
styleSeparator
|
|
60
|
+
? `${componentName}${styleSeparator}${subComponentName}_`
|
|
61
|
+
: `${subComponentName}_`,
|
|
62
|
+
`${componentName}_style_${subComponentName}_`,
|
|
63
|
+
]
|
|
64
|
+
: [
|
|
65
|
+
styleSeparator ? `${componentName}${styleSeparator}` : "",
|
|
66
|
+
`${componentName}_style_`,
|
|
67
|
+
];
|
|
46
68
|
|
|
47
69
|
const defaultKey = "default";
|
|
48
70
|
|
|
@@ -51,12 +73,24 @@ export const getAllSpecificStyles = ({
|
|
|
51
73
|
const tmpGenericDict: Record<StateKey, Record<string, any>> = {};
|
|
52
74
|
const tmpPlatformDict: Record<StateKey, Record<string, any>> = {};
|
|
53
75
|
|
|
54
|
-
const parseKey = (key: string, value: any) => {
|
|
55
|
-
|
|
76
|
+
const parseKey = (key: string, originalKey: string, value: any) => {
|
|
77
|
+
const matchedPrefix = prefixes.find((p) => p && key.startsWith(p));
|
|
78
|
+
|
|
79
|
+
if (!matchedPrefix) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Guard: for empty styleSeparator, if matching modern prefix, require dot in originalKey
|
|
84
|
+
if (
|
|
85
|
+
styleSeparator === "" &&
|
|
86
|
+
matchedPrefix === `${subComponentName}_` &&
|
|
87
|
+
!originalKey.includes(".")
|
|
88
|
+
) {
|
|
56
89
|
return;
|
|
57
90
|
}
|
|
58
91
|
|
|
59
|
-
let styleName = key.slice(
|
|
92
|
+
let styleName = key.slice(matchedPrefix.length);
|
|
93
|
+
|
|
60
94
|
if (!styleName || styleName.startsWith("_")) return;
|
|
61
95
|
|
|
62
96
|
const platform = platformSuffixes.find((prefix) =>
|
|
@@ -84,6 +118,11 @@ export const getAllSpecificStyles = ({
|
|
|
84
118
|
state = defaultKey;
|
|
85
119
|
}
|
|
86
120
|
|
|
121
|
+
// Normalize Studio "focus" keys onto the runtime "focused" state bucket.
|
|
122
|
+
if (state === "focus") {
|
|
123
|
+
state = "focused";
|
|
124
|
+
}
|
|
125
|
+
|
|
87
126
|
if (!styleName) return;
|
|
88
127
|
|
|
89
128
|
const camelCaseKey = toCamelCase(styleName);
|
|
@@ -93,7 +132,8 @@ export const getAllSpecificStyles = ({
|
|
|
93
132
|
};
|
|
94
133
|
|
|
95
134
|
for (const [key, value] of Object.entries(configuration)) {
|
|
96
|
-
|
|
135
|
+
const formattedKey = key.replace(/\./g, "_");
|
|
136
|
+
parseKey(formattedKey, key, value);
|
|
97
137
|
}
|
|
98
138
|
|
|
99
139
|
const allStates = Array.from(
|
|
@@ -0,0 +1,200 @@
|
|
|
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
|
+
/** Studio item.checkbox_asset / item.checked_checkbox_asset */
|
|
29
|
+
checkbox?: Record<string, any>;
|
|
30
|
+
/** Studio reorder/remove icons for Edit Order rows */
|
|
31
|
+
actionButtons?: Record<string, any>;
|
|
32
|
+
};
|
|
33
|
+
nowPlayingItem?: {
|
|
34
|
+
background: Record<string, any>;
|
|
35
|
+
image: Record<string, any>;
|
|
36
|
+
nowPlayingContainer: Record<string, any>;
|
|
37
|
+
nowPlayingAsset: Record<string, any>;
|
|
38
|
+
nowPlayingLabel: Record<string, any>;
|
|
39
|
+
textLabel1: Record<string, any>;
|
|
40
|
+
textLabel2: Record<string, any>;
|
|
41
|
+
buttonsContainer: Record<string, any>;
|
|
42
|
+
button1: Record<string, any>;
|
|
43
|
+
button2: Record<string, any>;
|
|
44
|
+
checkbox?: Record<string, any>;
|
|
45
|
+
actionButtons?: Record<string, any>;
|
|
46
|
+
};
|
|
47
|
+
button: {
|
|
48
|
+
background: Record<string, any>;
|
|
49
|
+
title: Record<string, any>;
|
|
50
|
+
icons: Record<string, any>;
|
|
51
|
+
leadingIcon: Record<string, any>;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export const getEmptyModalBlocksStructure = (): ModalBlocksConfig => {
|
|
56
|
+
const result: ModalBlocksConfig = {
|
|
57
|
+
header: {
|
|
58
|
+
container: {},
|
|
59
|
+
title: {},
|
|
60
|
+
closeButton: {},
|
|
61
|
+
actionButtons: {},
|
|
62
|
+
},
|
|
63
|
+
action: {
|
|
64
|
+
background: {},
|
|
65
|
+
title: {},
|
|
66
|
+
icons: {},
|
|
67
|
+
leadingIcon: {},
|
|
68
|
+
trailingIcon: {},
|
|
69
|
+
},
|
|
70
|
+
item: {
|
|
71
|
+
background: {},
|
|
72
|
+
image: {},
|
|
73
|
+
nowPlayingContainer: {},
|
|
74
|
+
nowPlayingAsset: {},
|
|
75
|
+
nowPlayingLabel: {},
|
|
76
|
+
textLabel1: {},
|
|
77
|
+
textLabel2: {},
|
|
78
|
+
buttonsContainer: {},
|
|
79
|
+
button1: {},
|
|
80
|
+
button2: {},
|
|
81
|
+
checkbox: {},
|
|
82
|
+
actionButtons: {},
|
|
83
|
+
},
|
|
84
|
+
nowPlayingItem: {
|
|
85
|
+
background: {},
|
|
86
|
+
image: {},
|
|
87
|
+
nowPlayingContainer: {},
|
|
88
|
+
nowPlayingAsset: {},
|
|
89
|
+
nowPlayingLabel: {},
|
|
90
|
+
textLabel1: {},
|
|
91
|
+
textLabel2: {},
|
|
92
|
+
buttonsContainer: {},
|
|
93
|
+
button1: {},
|
|
94
|
+
button2: {},
|
|
95
|
+
checkbox: {},
|
|
96
|
+
actionButtons: {},
|
|
97
|
+
},
|
|
98
|
+
button: {
|
|
99
|
+
background: {},
|
|
100
|
+
title: {},
|
|
101
|
+
icons: {},
|
|
102
|
+
leadingIcon: {},
|
|
103
|
+
},
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
return result;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export const parseModalBlocksConfiguration = (
|
|
110
|
+
configuration: Record<string, any>,
|
|
111
|
+
componentName: string
|
|
112
|
+
): ModalBlocksConfig => {
|
|
113
|
+
const result = getEmptyModalBlocksStructure();
|
|
114
|
+
|
|
115
|
+
if (!configuration || !componentName) {
|
|
116
|
+
return result;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const normalizedComponentName = componentName.replace(/-/g, "_");
|
|
120
|
+
|
|
121
|
+
// Helper to parse sub-components for a block
|
|
122
|
+
const parseBlock = (blockName: string, subComponents: string[]) => {
|
|
123
|
+
subComponents.forEach((subComponent) => {
|
|
124
|
+
// e.g. header_container
|
|
125
|
+
const fullSubComponentName = `${blockName}_${subComponent}`;
|
|
126
|
+
|
|
127
|
+
// e.g. result.header.container
|
|
128
|
+
const camelSubComponent = subComponent.replace(/_([a-z0-9])/g, (g) =>
|
|
129
|
+
g[1].toUpperCase()
|
|
130
|
+
);
|
|
131
|
+
|
|
132
|
+
const camelBlockName = (blockName as string).replace(
|
|
133
|
+
/_([a-z0-9])/g,
|
|
134
|
+
(g) => g[1].toUpperCase()
|
|
135
|
+
) as keyof ModalBlocksConfig;
|
|
136
|
+
|
|
137
|
+
getAllSpecificStyles({
|
|
138
|
+
configuration,
|
|
139
|
+
componentName: normalizedComponentName,
|
|
140
|
+
subComponentName: fullSubComponentName,
|
|
141
|
+
styleSeparator: "",
|
|
142
|
+
outStyles:
|
|
143
|
+
result[camelBlockName]![
|
|
144
|
+
camelSubComponent as keyof (typeof result)[typeof camelBlockName]
|
|
145
|
+
],
|
|
146
|
+
});
|
|
147
|
+
});
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
parseBlock("header", [
|
|
151
|
+
"container",
|
|
152
|
+
"title",
|
|
153
|
+
"close_button",
|
|
154
|
+
"action_buttons",
|
|
155
|
+
]);
|
|
156
|
+
|
|
157
|
+
parseBlock("action", [
|
|
158
|
+
"background",
|
|
159
|
+
"title",
|
|
160
|
+
"icons",
|
|
161
|
+
"leading_icon",
|
|
162
|
+
"trailing_icon",
|
|
163
|
+
]);
|
|
164
|
+
|
|
165
|
+
parseBlock("item", [
|
|
166
|
+
"background",
|
|
167
|
+
"image",
|
|
168
|
+
"now_playing_container",
|
|
169
|
+
"now_playing_asset",
|
|
170
|
+
"now_playing_label",
|
|
171
|
+
// Underscored form (QB convention) and Studio/manifest-generator form
|
|
172
|
+
// without the underscore before the digit (text_label1).
|
|
173
|
+
"text_label_1",
|
|
174
|
+
"text_label_2",
|
|
175
|
+
"text_label1",
|
|
176
|
+
"text_label2",
|
|
177
|
+
"buttons_container",
|
|
178
|
+
"button_1",
|
|
179
|
+
"button_2",
|
|
180
|
+
]);
|
|
181
|
+
|
|
182
|
+
parseBlock("now_playing_item", [
|
|
183
|
+
"background",
|
|
184
|
+
"image",
|
|
185
|
+
"now_playing_container",
|
|
186
|
+
"now_playing_asset",
|
|
187
|
+
"now_playing_label",
|
|
188
|
+
"text_label_1",
|
|
189
|
+
"text_label_2",
|
|
190
|
+
"text_label1",
|
|
191
|
+
"text_label2",
|
|
192
|
+
"buttons_container",
|
|
193
|
+
"button_1",
|
|
194
|
+
"button_2",
|
|
195
|
+
]);
|
|
196
|
+
|
|
197
|
+
parseBlock("button", ["background", "title", "icons", "leading_icon"]);
|
|
198
|
+
|
|
199
|
+
return result;
|
|
200
|
+
};
|