@applicaster/zapp-react-native-utils 16.0.0-rc.80 → 16.0.0-rc.81
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.
|
@@ -176,6 +176,27 @@ describe("getAllSpecificStyles", () => {
|
|
|
176
176
|
});
|
|
177
177
|
});
|
|
178
178
|
|
|
179
|
+
it("should normalize Studio focus alias onto focused state", () => {
|
|
180
|
+
const outStyles = {};
|
|
181
|
+
|
|
182
|
+
const configuration = {
|
|
183
|
+
button_style_focus_background_color: "#FF3B30",
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
getAllSpecificStyles({
|
|
187
|
+
componentName: "button",
|
|
188
|
+
subComponentName: "",
|
|
189
|
+
configuration,
|
|
190
|
+
outStyles,
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
expect(outStyles.focused).toEqual({
|
|
194
|
+
backgroundColor: "#FF3B30",
|
|
195
|
+
});
|
|
196
|
+
|
|
197
|
+
expect(outStyles.focus).toBeUndefined();
|
|
198
|
+
});
|
|
199
|
+
|
|
179
200
|
it("should handle selected state", () => {
|
|
180
201
|
const outStyles = {};
|
|
181
202
|
|
|
@@ -104,4 +104,157 @@ describe("parseModalBlocksConfiguration", () => {
|
|
|
104
104
|
expect(result.button.title).toEqual({ default: {} });
|
|
105
105
|
expect(result.action.leadingIcon).toEqual({ default: {} });
|
|
106
106
|
});
|
|
107
|
+
|
|
108
|
+
it("should map Studio item.background.focus.* onto focused state", () => {
|
|
109
|
+
const result = parseModalBlocksConfiguration(
|
|
110
|
+
{
|
|
111
|
+
"item.background.default.background_color": "transparent",
|
|
112
|
+
"item.background.focus.background_color": "#FF3B30",
|
|
113
|
+
},
|
|
114
|
+
"playlist-experience"
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
expect(result.item.background.default).toEqual(
|
|
118
|
+
expect.objectContaining({
|
|
119
|
+
backgroundColor: "transparent",
|
|
120
|
+
})
|
|
121
|
+
);
|
|
122
|
+
|
|
123
|
+
expect(result.item.background.focused).toEqual(
|
|
124
|
+
expect.objectContaining({
|
|
125
|
+
backgroundColor: "#FF3B30",
|
|
126
|
+
})
|
|
127
|
+
);
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
it("should accept Studio text_label1 keys without underscore before digit", () => {
|
|
131
|
+
const result = parseModalBlocksConfiguration(
|
|
132
|
+
{
|
|
133
|
+
"item.text_label1.font_color": "#00FF00",
|
|
134
|
+
"item.text_label1.font_size": 28,
|
|
135
|
+
"item.text_label2.font_color": "#00FFFF",
|
|
136
|
+
},
|
|
137
|
+
"playlist-experience"
|
|
138
|
+
);
|
|
139
|
+
|
|
140
|
+
expect(result.item.textLabel1.default).toEqual(
|
|
141
|
+
expect.objectContaining({
|
|
142
|
+
fontColor: "#00FF00",
|
|
143
|
+
fontSize: 28,
|
|
144
|
+
})
|
|
145
|
+
);
|
|
146
|
+
|
|
147
|
+
expect(result.item.textLabel2.default).toEqual(
|
|
148
|
+
expect.objectContaining({
|
|
149
|
+
fontColor: "#00FFFF",
|
|
150
|
+
})
|
|
151
|
+
);
|
|
152
|
+
});
|
|
153
|
+
|
|
154
|
+
it("should map button.create_new_playlist_asset onto leadingIcon.asset", () => {
|
|
155
|
+
const result = parseModalBlocksConfiguration(
|
|
156
|
+
{
|
|
157
|
+
"button.create_new_playlist_asset":
|
|
158
|
+
"https://placehold.co/24x24/FF00FF/FFFFFF/png?text=CN",
|
|
159
|
+
},
|
|
160
|
+
"playlist-experience"
|
|
161
|
+
);
|
|
162
|
+
|
|
163
|
+
expect(result.button.leadingIcon.default).toEqual(
|
|
164
|
+
expect.objectContaining({
|
|
165
|
+
asset: "https://placehold.co/24x24/FF00FF/FFFFFF/png?text=CN",
|
|
166
|
+
})
|
|
167
|
+
);
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
it("should map item.checkbox_asset and checked_checkbox_asset onto item.checkbox", () => {
|
|
171
|
+
const result = parseModalBlocksConfiguration(
|
|
172
|
+
{
|
|
173
|
+
"item.checkbox_asset":
|
|
174
|
+
"https://placehold.co/24x24/FF3B30/FFFFFF/png?text=CB",
|
|
175
|
+
"item.checked_checkbox_asset":
|
|
176
|
+
"https://placehold.co/24x24/FFD60A/000000/png?text=CK",
|
|
177
|
+
},
|
|
178
|
+
"playlist-experience"
|
|
179
|
+
);
|
|
180
|
+
|
|
181
|
+
expect(result.item.checkbox.default).toEqual(
|
|
182
|
+
expect.objectContaining({
|
|
183
|
+
asset: "https://placehold.co/24x24/FF3B30/FFFFFF/png?text=CB",
|
|
184
|
+
checkedAsset: "https://placehold.co/24x24/FFD60A/000000/png?text=CK",
|
|
185
|
+
})
|
|
186
|
+
);
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
it("should map reorder/remove Studio assets onto item.actionButtons", () => {
|
|
190
|
+
const result = parseModalBlocksConfiguration(
|
|
191
|
+
{
|
|
192
|
+
"reorder_playlist_item.remove_from_playlist_asset":
|
|
193
|
+
"https://placehold.co/24x24/00FF00/000000/png?text=RM",
|
|
194
|
+
"reorder_playlist_item.reorder_handle_asset":
|
|
195
|
+
"https://placehold.co/24x24/FF3B30/FFFFFF/png?text=RH",
|
|
196
|
+
},
|
|
197
|
+
"playlist-experience"
|
|
198
|
+
);
|
|
199
|
+
|
|
200
|
+
expect(result.item.actionButtons.default).toEqual(
|
|
201
|
+
expect.objectContaining({
|
|
202
|
+
removeAsset: "https://placehold.co/24x24/00FF00/000000/png?text=RM",
|
|
203
|
+
dragAsset: "https://placehold.co/24x24/FF3B30/FFFFFF/png?text=RH",
|
|
204
|
+
})
|
|
205
|
+
);
|
|
206
|
+
});
|
|
207
|
+
|
|
208
|
+
it("should fall back to flavor1 reorder/remove assets", () => {
|
|
209
|
+
const result = parseModalBlocksConfiguration(
|
|
210
|
+
{
|
|
211
|
+
"playlist_experience_assets_flavor1.remove_from_playlist_asset":
|
|
212
|
+
"https://placehold.co/24x24/00FF00/000000/png?text=RM",
|
|
213
|
+
"playlist_experience_assets_flavor1.reorder_handle_asset":
|
|
214
|
+
"https://placehold.co/24x24/FF3B30/FFFFFF/png?text=RH",
|
|
215
|
+
},
|
|
216
|
+
"playlist-experience"
|
|
217
|
+
);
|
|
218
|
+
|
|
219
|
+
expect(result.item.actionButtons.default).toEqual(
|
|
220
|
+
expect.objectContaining({
|
|
221
|
+
removeAsset: "https://placehold.co/24x24/00FF00/000000/png?text=RM",
|
|
222
|
+
dragAsset: "https://placehold.co/24x24/FF3B30/FFFFFF/png?text=RH",
|
|
223
|
+
})
|
|
224
|
+
);
|
|
225
|
+
});
|
|
226
|
+
|
|
227
|
+
it("should fall back to flavor2 reorder/remove assets", () => {
|
|
228
|
+
const result = parseModalBlocksConfiguration(
|
|
229
|
+
{
|
|
230
|
+
"playlist_experience_assets_flavor2.remove_from_playlist_asset":
|
|
231
|
+
"https://placehold.co/24x24/00FF00/000000/png?text=RM",
|
|
232
|
+
"playlist_experience_assets_flavor2.reorder_handle_asset":
|
|
233
|
+
"https://placehold.co/24x24/FF3B30/FFFFFF/png?text=RH",
|
|
234
|
+
},
|
|
235
|
+
"playlist-experience"
|
|
236
|
+
);
|
|
237
|
+
|
|
238
|
+
expect(result.item.actionButtons.default).toEqual(
|
|
239
|
+
expect.objectContaining({
|
|
240
|
+
removeAsset: "https://placehold.co/24x24/00FF00/000000/png?text=RM",
|
|
241
|
+
dragAsset: "https://placehold.co/24x24/FF3B30/FFFFFF/png?text=RH",
|
|
242
|
+
})
|
|
243
|
+
);
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
it("should ignore playlist-only asset keys for other theme plugins", () => {
|
|
247
|
+
const result = parseModalBlocksConfiguration(
|
|
248
|
+
{
|
|
249
|
+
"button.create_new_playlist_asset":
|
|
250
|
+
"https://placehold.co/24x24/FF00FF/FFFFFF/png?text=CN",
|
|
251
|
+
"playlist_experience_assets_flavor1.reorder_handle_asset":
|
|
252
|
+
"https://placehold.co/24x24/FF3B30/FFFFFF/png?text=RH",
|
|
253
|
+
},
|
|
254
|
+
"queue-action"
|
|
255
|
+
);
|
|
256
|
+
|
|
257
|
+
expect(result.button.leadingIcon.default?.asset).toBeUndefined();
|
|
258
|
+
expect(result.item.actionButtons.default?.dragAsset).toBeUndefined();
|
|
259
|
+
});
|
|
107
260
|
});
|
|
@@ -11,11 +11,17 @@ const currentPlatform = platformSelect({
|
|
|
11
11
|
android_tv: "android",
|
|
12
12
|
});
|
|
13
13
|
|
|
14
|
-
// Do not change the order
|
|
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.
|
|
15
20
|
const states = [
|
|
16
21
|
"focused_selected",
|
|
17
22
|
"pressed",
|
|
18
23
|
"focused",
|
|
24
|
+
"focus",
|
|
19
25
|
"selected",
|
|
20
26
|
"default",
|
|
21
27
|
];
|
|
@@ -112,6 +118,11 @@ export const getAllSpecificStyles = ({
|
|
|
112
118
|
state = defaultKey;
|
|
113
119
|
}
|
|
114
120
|
|
|
121
|
+
// Normalize Studio "focus" keys onto the runtime "focused" state bucket.
|
|
122
|
+
if (state === "focus") {
|
|
123
|
+
state = "focused";
|
|
124
|
+
}
|
|
125
|
+
|
|
115
126
|
if (!styleName) return;
|
|
116
127
|
|
|
117
128
|
const camelCaseKey = toCamelCase(styleName);
|
|
@@ -25,6 +25,10 @@ export type ModalBlocksConfig = {
|
|
|
25
25
|
buttonsContainer: Record<string, any>;
|
|
26
26
|
button1: Record<string, any>;
|
|
27
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>;
|
|
28
32
|
};
|
|
29
33
|
nowPlayingItem?: {
|
|
30
34
|
background: Record<string, any>;
|
|
@@ -37,6 +41,8 @@ export type ModalBlocksConfig = {
|
|
|
37
41
|
buttonsContainer: Record<string, any>;
|
|
38
42
|
button1: Record<string, any>;
|
|
39
43
|
button2: Record<string, any>;
|
|
44
|
+
checkbox?: Record<string, any>;
|
|
45
|
+
actionButtons?: Record<string, any>;
|
|
40
46
|
};
|
|
41
47
|
button: {
|
|
42
48
|
background: Record<string, any>;
|
|
@@ -75,6 +81,8 @@ export const parseModalBlocksConfiguration = (
|
|
|
75
81
|
buttonsContainer: {},
|
|
76
82
|
button1: {},
|
|
77
83
|
button2: {},
|
|
84
|
+
checkbox: {},
|
|
85
|
+
actionButtons: {},
|
|
78
86
|
},
|
|
79
87
|
nowPlayingItem: {
|
|
80
88
|
background: {},
|
|
@@ -87,6 +95,8 @@ export const parseModalBlocksConfiguration = (
|
|
|
87
95
|
buttonsContainer: {},
|
|
88
96
|
button1: {},
|
|
89
97
|
button2: {},
|
|
98
|
+
checkbox: {},
|
|
99
|
+
actionButtons: {},
|
|
90
100
|
},
|
|
91
101
|
button: {
|
|
92
102
|
background: {},
|
|
@@ -152,8 +162,12 @@ export const parseModalBlocksConfiguration = (
|
|
|
152
162
|
"now_playing_container",
|
|
153
163
|
"now_playing_asset",
|
|
154
164
|
"now_playing_label",
|
|
165
|
+
// Underscored form (QB convention) and Studio/manifest-generator form
|
|
166
|
+
// without the underscore before the digit (text_label1).
|
|
155
167
|
"text_label_1",
|
|
156
168
|
"text_label_2",
|
|
169
|
+
"text_label1",
|
|
170
|
+
"text_label2",
|
|
157
171
|
"buttons_container",
|
|
158
172
|
"button_1",
|
|
159
173
|
"button_2",
|
|
@@ -167,6 +181,8 @@ export const parseModalBlocksConfiguration = (
|
|
|
167
181
|
"now_playing_label",
|
|
168
182
|
"text_label_1",
|
|
169
183
|
"text_label_2",
|
|
184
|
+
"text_label1",
|
|
185
|
+
"text_label2",
|
|
170
186
|
"buttons_container",
|
|
171
187
|
"button_1",
|
|
172
188
|
"button_2",
|
|
@@ -174,5 +190,107 @@ export const parseModalBlocksConfiguration = (
|
|
|
174
190
|
|
|
175
191
|
parseBlock("button", ["background", "title", "icons", "leading_icon"]);
|
|
176
192
|
|
|
193
|
+
// Playlist-experience Studio keys live in this shared parser because modal
|
|
194
|
+
// blocks are themed by themePluginId. Gate them so other plugins are not
|
|
195
|
+
// affected by playlist-only asset names.
|
|
196
|
+
const isPlaylistExperience =
|
|
197
|
+
normalizedComponentName === "playlist_experience";
|
|
198
|
+
|
|
199
|
+
// Studio uploads Create New icon as button.create_new_playlist_asset (not
|
|
200
|
+
// button.leading_icon.asset). Map it onto leadingIcon so AudioPlayerButton
|
|
201
|
+
// can override the hardcoded action-type asset.
|
|
202
|
+
const createNewPlaylistAsset = isPlaylistExperience
|
|
203
|
+
? configuration["button.create_new_playlist_asset"] ||
|
|
204
|
+
configuration[
|
|
205
|
+
`${normalizedComponentName}_button_create_new_playlist_asset`
|
|
206
|
+
]
|
|
207
|
+
: undefined;
|
|
208
|
+
|
|
209
|
+
if (createNewPlaylistAsset) {
|
|
210
|
+
if (!result.button.leadingIcon.default) {
|
|
211
|
+
result.button.leadingIcon.default = {};
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
result.button.leadingIcon.default.asset = createNewPlaylistAsset;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
// Studio checkbox assets are top-level item.* keys (not a parseBlock
|
|
218
|
+
// sub-component). Map onto item.checkbox so multiSelect can render them.
|
|
219
|
+
const checkboxAsset =
|
|
220
|
+
configuration["item.checkbox_asset"] ||
|
|
221
|
+
configuration[`${normalizedComponentName}_item_checkbox_asset`];
|
|
222
|
+
|
|
223
|
+
const checkedCheckboxAsset =
|
|
224
|
+
configuration["item.checked_checkbox_asset"] ||
|
|
225
|
+
configuration[`${normalizedComponentName}_item_checked_checkbox_asset`];
|
|
226
|
+
|
|
227
|
+
if (checkboxAsset || checkedCheckboxAsset) {
|
|
228
|
+
if (!result.item.checkbox.default) {
|
|
229
|
+
result.item.checkbox.default = {};
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
if (checkboxAsset) {
|
|
233
|
+
result.item.checkbox.default.asset = checkboxAsset;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
if (checkedCheckboxAsset) {
|
|
237
|
+
result.item.checkbox.default.checkedAsset = checkedCheckboxAsset;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// Edit Order row icons: prefer reorder_playlist_item.*, then flavor1, then
|
|
242
|
+
// flavor2 playlist_experience_assets_* (playlist-experience theme only).
|
|
243
|
+
const removeAsset = isPlaylistExperience
|
|
244
|
+
? configuration["reorder_playlist_item.remove_from_playlist_asset"] ||
|
|
245
|
+
configuration[
|
|
246
|
+
`${normalizedComponentName}_reorder_playlist_item_remove_from_playlist_asset`
|
|
247
|
+
] ||
|
|
248
|
+
configuration[
|
|
249
|
+
"playlist_experience_assets_flavor1.remove_from_playlist_asset"
|
|
250
|
+
] ||
|
|
251
|
+
configuration[
|
|
252
|
+
`${normalizedComponentName}_assets_flavor1_remove_from_playlist_asset`
|
|
253
|
+
] ||
|
|
254
|
+
configuration[
|
|
255
|
+
"playlist_experience_assets_flavor2.remove_from_playlist_asset"
|
|
256
|
+
] ||
|
|
257
|
+
configuration[
|
|
258
|
+
`${normalizedComponentName}_assets_flavor2_remove_from_playlist_asset`
|
|
259
|
+
]
|
|
260
|
+
: undefined;
|
|
261
|
+
|
|
262
|
+
const dragAsset = isPlaylistExperience
|
|
263
|
+
? configuration["reorder_playlist_item.reorder_handle_asset"] ||
|
|
264
|
+
configuration[
|
|
265
|
+
`${normalizedComponentName}_reorder_playlist_item_reorder_handle_asset`
|
|
266
|
+
] ||
|
|
267
|
+
configuration[
|
|
268
|
+
"playlist_experience_assets_flavor1.reorder_handle_asset"
|
|
269
|
+
] ||
|
|
270
|
+
configuration[
|
|
271
|
+
`${normalizedComponentName}_assets_flavor1_reorder_handle_asset`
|
|
272
|
+
] ||
|
|
273
|
+
configuration[
|
|
274
|
+
"playlist_experience_assets_flavor2.reorder_handle_asset"
|
|
275
|
+
] ||
|
|
276
|
+
configuration[
|
|
277
|
+
`${normalizedComponentName}_assets_flavor2_reorder_handle_asset`
|
|
278
|
+
]
|
|
279
|
+
: undefined;
|
|
280
|
+
|
|
281
|
+
if (removeAsset || dragAsset) {
|
|
282
|
+
if (!result.item.actionButtons.default) {
|
|
283
|
+
result.item.actionButtons.default = {};
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
if (removeAsset) {
|
|
287
|
+
result.item.actionButtons.default.removeAsset = removeAsset;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
if (dragAsset) {
|
|
291
|
+
result.item.actionButtons.default.dragAsset = dragAsset;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
177
295
|
return result;
|
|
178
296
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/zapp-react-native-utils",
|
|
3
|
-
"version": "16.0.0-rc.
|
|
3
|
+
"version": "16.0.0-rc.81",
|
|
4
4
|
"description": "Applicaster Zapp React Native utilities package",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/applicaster/quickbrick#readme",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@applicaster/applicaster-types": "16.0.0-rc.
|
|
30
|
+
"@applicaster/applicaster-types": "16.0.0-rc.81",
|
|
31
31
|
"buffer": "^5.2.1",
|
|
32
32
|
"camelize": "^1.0.0",
|
|
33
33
|
"dayjs": "^1.11.10",
|