@applicaster/zapp-react-native-utils 16.0.0-rc.57 → 16.0.0-rc.59
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 +40 -2
- package/actionsExecutor/ActionExecutorContext.tsx +70 -16
- 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/dismissBottomSheet.ts +22 -0
- package/actionsExecutor/actions/index.ts +4 -0
- package/actionsExecutor/actions/openBottomSheet.ts +322 -0
- package/actionsExecutor/actions/refreshComponent.ts +6 -0
- package/actionsExecutor/actions/sendCloudEvent.ts +6 -1
- package/actionsExecutor/consts.ts +23 -0
- package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +5 -2
- package/appUtils/playerManager/OverlayObserver/utils.ts +46 -20
- package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
- package/arrayUtils/index.ts +79 -0
- package/configurationUtils/__tests__/modalBlocksParser.test.ts +107 -0
- package/configurationUtils/manifestKeyParser.ts +38 -9
- package/configurationUtils/modalBlocksParser.ts +178 -0
- package/manifestUtils/index.js +3 -0
- package/manifestUtils/modalBlocks.js +304 -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/package.json +2 -2
- package/reactHooks/index.ts +2 -0
- package/reactHooks/usePluginConfiguration.ts +4 -1
- package/reactHooks/utils/__tests__/index.test.js +22 -2
- package/reactHooks/utils/index.ts +11 -1
- /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
/// <reference types="@applicaster/applicaster-types" />
|
|
2
|
+
import {
|
|
3
|
+
PipesClientResponseHelper,
|
|
4
|
+
RequestBuilder,
|
|
5
|
+
} from "@applicaster/zapp-pipes-v2-client";
|
|
6
|
+
import uuidv4 from "uuid/v4";
|
|
7
|
+
import { modalOrchestrator } from "../../modalState/ModalOrchestrator";
|
|
8
|
+
import { openBottomSheetModal } from "../../modalState/store";
|
|
9
|
+
import {
|
|
10
|
+
DynamicCollectionOptions,
|
|
11
|
+
isPresentSubMenuAction,
|
|
12
|
+
Menu,
|
|
13
|
+
MenuItem,
|
|
14
|
+
Operation,
|
|
15
|
+
SelectionBehavior,
|
|
16
|
+
} from "../../modalState/types";
|
|
17
|
+
import { actionExecutor, ActionResult } from "../ActionExecutor";
|
|
18
|
+
import { createLogger } from "../../logger";
|
|
19
|
+
|
|
20
|
+
const { log_info, log_error } = createLogger({
|
|
21
|
+
subsystem: "ActionExecutorContext",
|
|
22
|
+
category: "General",
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
export type LoadedSheetContent = {
|
|
26
|
+
items: MenuItem[];
|
|
27
|
+
role?: string;
|
|
28
|
+
behavior?: SelectionBehavior;
|
|
29
|
+
dynamicCollection?: DynamicCollectionOptions;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Parse a raw `dynamic_collection_options` block (feed or inline content) into
|
|
34
|
+
* the typed `DynamicCollectionOptions`. `operations` accepts either a CSV
|
|
35
|
+
* string (feed) or an array (already parsed).
|
|
36
|
+
*/
|
|
37
|
+
export function parseDynamicCollectionOptions(
|
|
38
|
+
raw:
|
|
39
|
+
| {
|
|
40
|
+
operations?: string | string[];
|
|
41
|
+
postUrl?: string;
|
|
42
|
+
provider?: string;
|
|
43
|
+
events?: Record<string, any[]>;
|
|
44
|
+
}
|
|
45
|
+
| undefined
|
|
46
|
+
): DynamicCollectionOptions | undefined {
|
|
47
|
+
if (!raw) {
|
|
48
|
+
return undefined;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
const operations = Array.isArray(raw.operations)
|
|
52
|
+
? (raw.operations as Operation[])
|
|
53
|
+
: ((raw.operations || "").split(",").filter(Boolean) as Operation[]);
|
|
54
|
+
|
|
55
|
+
return {
|
|
56
|
+
operations,
|
|
57
|
+
postUrl: raw.postUrl,
|
|
58
|
+
provider: raw.provider,
|
|
59
|
+
events: raw.events,
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Converts a ZappEntry from a pipes feed into a MenuItem.
|
|
65
|
+
* - Icon: first src found in the image media_group.
|
|
66
|
+
* - Primary action: taken from tap_actions.actions[0].
|
|
67
|
+
* - isSelected: true when entry.id is in currentSelection.
|
|
68
|
+
*/
|
|
69
|
+
export function entryToMenuItem(
|
|
70
|
+
entry: ZappEntry,
|
|
71
|
+
currentSelection: string[] = []
|
|
72
|
+
): MenuItem {
|
|
73
|
+
const imageGroup = entry.media_group?.find((g) => g.type === "image");
|
|
74
|
+
|
|
75
|
+
const firstImage = Array.isArray(imageGroup?.media_item)
|
|
76
|
+
? imageGroup.media_item[0]
|
|
77
|
+
: imageGroup?.media_item;
|
|
78
|
+
|
|
79
|
+
// Primary action — first tap_action on the entry
|
|
80
|
+
const tapActions = entry.extensions?.tap_actions?.actions || [];
|
|
81
|
+
const primaryAction = tapActions.length > 0 ? tapActions[0] : undefined;
|
|
82
|
+
|
|
83
|
+
const summary = entry.summary as string;
|
|
84
|
+
|
|
85
|
+
const itemId = String(entry.id ?? entry.title ?? uuidv4());
|
|
86
|
+
|
|
87
|
+
return {
|
|
88
|
+
id: itemId,
|
|
89
|
+
title: entry.title as string,
|
|
90
|
+
summary,
|
|
91
|
+
icon: firstImage?.src,
|
|
92
|
+
isSelected: currentSelection.includes(itemId),
|
|
93
|
+
action: primaryAction,
|
|
94
|
+
entryActions: entry.extensions?.entry_action || [],
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
function parseCurrentSelection(rawSelection: unknown): string[] {
|
|
99
|
+
if (Array.isArray(rawSelection)) {
|
|
100
|
+
return (rawSelection as any[]).map(String);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (rawSelection !== undefined && rawSelection !== null) {
|
|
104
|
+
return [String(rawSelection)];
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
return [];
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function parseBehaviorFromFeed(
|
|
111
|
+
feed: ZappFeed | undefined,
|
|
112
|
+
currentSelection: string[]
|
|
113
|
+
): SelectionBehavior | undefined {
|
|
114
|
+
const raw = feed?.extensions?.behavior;
|
|
115
|
+
|
|
116
|
+
if (!raw && currentSelection.length === 0) {
|
|
117
|
+
return undefined;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
return {
|
|
121
|
+
selectMode: raw?.select_mode,
|
|
122
|
+
currentSelection,
|
|
123
|
+
selector: raw?.selector,
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
function parseBehaviorFromContentOptions(
|
|
128
|
+
content: Record<string, any> | undefined
|
|
129
|
+
): SelectionBehavior | undefined {
|
|
130
|
+
const raw = content?.behavior ?? content?.extensions?.behavior;
|
|
131
|
+
|
|
132
|
+
if (!raw) {
|
|
133
|
+
return undefined;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
return {
|
|
137
|
+
selectMode: raw.selectMode ?? raw.select_mode,
|
|
138
|
+
currentSelection: parseCurrentSelection(
|
|
139
|
+
raw.currentSelection ?? raw.current_selection
|
|
140
|
+
),
|
|
141
|
+
selector: raw.selector,
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// Exported so MultiLevelBottomSheetContent can lazy-load sub-levels
|
|
146
|
+
export async function loadItemsFromSource(
|
|
147
|
+
source: string,
|
|
148
|
+
context?: Record<string, any>
|
|
149
|
+
): Promise<LoadedSheetContent> {
|
|
150
|
+
const requestBuilder = new RequestBuilder()
|
|
151
|
+
.setEntryContext(context?.entry || {})
|
|
152
|
+
.setScreenContext(context?.screenData || {})
|
|
153
|
+
.setUrl(source);
|
|
154
|
+
|
|
155
|
+
await requestBuilder.buildAxiosRequest();
|
|
156
|
+
|
|
157
|
+
const responseData = await requestBuilder.call<ZappFeed>();
|
|
158
|
+
|
|
159
|
+
const responseHelper = new PipesClientResponseHelper(responseData);
|
|
160
|
+
|
|
161
|
+
if (responseHelper.error) {
|
|
162
|
+
throw responseHelper.error;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
const feed = responseData?.response as ZappFeed;
|
|
166
|
+
|
|
167
|
+
const currentSelection = parseCurrentSelection(
|
|
168
|
+
feed?.extensions?.behavior?.current_selection
|
|
169
|
+
);
|
|
170
|
+
|
|
171
|
+
const items = (feed?.entry || []).map((entry) =>
|
|
172
|
+
entryToMenuItem(entry, currentSelection)
|
|
173
|
+
);
|
|
174
|
+
|
|
175
|
+
const dynamicCollectionOptions = feed?.extensions?.dynamic_collection_options;
|
|
176
|
+
|
|
177
|
+
const dynamicCollection = parseDynamicCollectionOptions(
|
|
178
|
+
dynamicCollectionOptions
|
|
179
|
+
);
|
|
180
|
+
|
|
181
|
+
return {
|
|
182
|
+
items,
|
|
183
|
+
role: feed?.extensions?.role,
|
|
184
|
+
behavior: parseBehaviorFromFeed(feed, currentSelection),
|
|
185
|
+
dynamicCollection,
|
|
186
|
+
};
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export async function openBottomSheetAction(
|
|
190
|
+
action: ActionType,
|
|
191
|
+
context?: Record<string, any>
|
|
192
|
+
): Promise<ActionResult> {
|
|
193
|
+
try {
|
|
194
|
+
const { content, header, themePluginId, styleOverrides } =
|
|
195
|
+
action.options || {};
|
|
196
|
+
|
|
197
|
+
// Custom body component — keep default ModalComponent so standard header
|
|
198
|
+
// (dismiss x) is used; content.component is body-only (e.g. TextInputContent).
|
|
199
|
+
if (content?.component) {
|
|
200
|
+
log_info("openBottomSheet: using custom content component");
|
|
201
|
+
|
|
202
|
+
openBottomSheetModal({
|
|
203
|
+
modalBottomSheetContentProps: {
|
|
204
|
+
title: header?.title,
|
|
205
|
+
summary: header?.subtitle,
|
|
206
|
+
items: [],
|
|
207
|
+
onPress: () => {},
|
|
208
|
+
contentComponent: content.component,
|
|
209
|
+
contentComponentProps: content.props || {},
|
|
210
|
+
},
|
|
211
|
+
});
|
|
212
|
+
|
|
213
|
+
return ActionResult.Success;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
const inlineItems: ZappEntry[] = content?.items;
|
|
217
|
+
const itemsUrl: string = content?.itemsUrl;
|
|
218
|
+
|
|
219
|
+
let items: MenuItem[];
|
|
220
|
+
let role: string | undefined;
|
|
221
|
+
let behavior: SelectionBehavior | undefined;
|
|
222
|
+
|
|
223
|
+
let dynamicCollection: DynamicCollectionOptions | undefined;
|
|
224
|
+
|
|
225
|
+
if (Array.isArray(inlineItems) && inlineItems.length > 0) {
|
|
226
|
+
log_info("openBottomSheet: using inline items from action options", {
|
|
227
|
+
count: inlineItems.length,
|
|
228
|
+
});
|
|
229
|
+
|
|
230
|
+
role = content?.role ?? content?.extensions?.role;
|
|
231
|
+
behavior = parseBehaviorFromContentOptions(content);
|
|
232
|
+
|
|
233
|
+
items = inlineItems.map((entry) =>
|
|
234
|
+
entryToMenuItem(entry, behavior?.currentSelection ?? [])
|
|
235
|
+
);
|
|
236
|
+
|
|
237
|
+
dynamicCollection = parseDynamicCollectionOptions(
|
|
238
|
+
content?.dynamicCollection ??
|
|
239
|
+
content?.extensions?.dynamic_collection_options
|
|
240
|
+
);
|
|
241
|
+
} else if (itemsUrl) {
|
|
242
|
+
log_info(`openBottomSheet: loading items from source: ${itemsUrl}`);
|
|
243
|
+
|
|
244
|
+
const loaded = await loadItemsFromSource(itemsUrl, context);
|
|
245
|
+
items = loaded.items;
|
|
246
|
+
role = loaded.role ?? content?.role ?? content?.extensions?.role;
|
|
247
|
+
behavior = loaded.behavior ?? parseBehaviorFromContentOptions(content);
|
|
248
|
+
dynamicCollection = loaded.dynamicCollection;
|
|
249
|
+
|
|
250
|
+
log_info(
|
|
251
|
+
`openBottomSheet: loaded ${items.length} items from source: ${itemsUrl}`
|
|
252
|
+
);
|
|
253
|
+
} else {
|
|
254
|
+
log_error(
|
|
255
|
+
"openBottomSheet: no itemsUrl, items, or content.component provided in action options"
|
|
256
|
+
);
|
|
257
|
+
|
|
258
|
+
return ActionResult.Error;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
const menu: Menu = {
|
|
262
|
+
header: header
|
|
263
|
+
? {
|
|
264
|
+
title: header.title,
|
|
265
|
+
subtitle: header.subtitle,
|
|
266
|
+
icon: header.icon,
|
|
267
|
+
component: header.component,
|
|
268
|
+
componentProps: header.componentProps,
|
|
269
|
+
}
|
|
270
|
+
: undefined,
|
|
271
|
+
content: {
|
|
272
|
+
title: content?.title ?? "",
|
|
273
|
+
items,
|
|
274
|
+
itemsUrl, // stored so the component can reload after an action
|
|
275
|
+
role,
|
|
276
|
+
behavior,
|
|
277
|
+
dynamicCollection,
|
|
278
|
+
themePluginId,
|
|
279
|
+
styleOverrides: styleOverrides ?? content?.styleOverrides,
|
|
280
|
+
},
|
|
281
|
+
};
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* Called when the user taps a menu item.
|
|
285
|
+
*
|
|
286
|
+
* - PresentSubMenuAction → handled by the orchestrator (pushes sub-menu)
|
|
287
|
+
* - Any other Action type → forwarded to the action executor, keeping the
|
|
288
|
+
* original execution context so screen/entry data is available to handlers.
|
|
289
|
+
* The pressed item is also added as `entry` so downstream actions can
|
|
290
|
+
* reference it.
|
|
291
|
+
*/
|
|
292
|
+
const onItemPress = async (item: MenuItem): Promise<void> => {
|
|
293
|
+
if (!item.action || isPresentSubMenuAction(item.action)) {
|
|
294
|
+
// Submenu navigation is handled internally by the orchestrator
|
|
295
|
+
return;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
await actionExecutor.handleAction(
|
|
299
|
+
item.action as ActionType,
|
|
300
|
+
{
|
|
301
|
+
...context,
|
|
302
|
+
entry: item as any,
|
|
303
|
+
} as any
|
|
304
|
+
);
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
if (action.options?.replace) {
|
|
308
|
+
modalOrchestrator.replace(menu, onItemPress);
|
|
309
|
+
} else {
|
|
310
|
+
modalOrchestrator.open(menu, onItemPress);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
return ActionResult.Success;
|
|
314
|
+
} catch (error) {
|
|
315
|
+
log_error("openBottomSheet: failed to open bottom sheet", {
|
|
316
|
+
error,
|
|
317
|
+
action,
|
|
318
|
+
});
|
|
319
|
+
|
|
320
|
+
return ActionResult.Error;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
@@ -57,6 +57,12 @@ export const refreshComponentAction: ActionHandler = async (
|
|
|
57
57
|
}) || source;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
if (!dataSource) {
|
|
61
|
+
log_info("handleAction: refreshComponent skipped: no dataSource found");
|
|
62
|
+
|
|
63
|
+
return ActionResult.Success;
|
|
64
|
+
}
|
|
65
|
+
|
|
60
66
|
log_info(`handleAction: refreshComponent for dataSource:${dataSource}`, {
|
|
61
67
|
source,
|
|
62
68
|
inflatedUrl: dataSource,
|
|
@@ -62,10 +62,15 @@ export const sendCloudEventAction: ActionHandler<
|
|
|
62
62
|
subject: options.subject || String((entry as ZappEntry)?.id || ""),
|
|
63
63
|
});
|
|
64
64
|
|
|
65
|
-
log_info("handleAction: sendCloudEvent
|
|
65
|
+
log_info("handleAction: sending sendCloudEvent to URL", {
|
|
66
|
+
url: options.url,
|
|
67
|
+
cloudEvent,
|
|
68
|
+
});
|
|
66
69
|
|
|
67
70
|
const { error, code } = await sendCloudEvent(cloudEvent, options.url);
|
|
68
71
|
|
|
72
|
+
log_info("handleAction: sendCloudEvent result", { code, error });
|
|
73
|
+
|
|
69
74
|
if (error) {
|
|
70
75
|
log_error("sendCloudEvent: error sending cloud event", { error });
|
|
71
76
|
|
|
@@ -2,3 +2,26 @@ export const TOGGLE_FLAG_MAX_ITEMS_REACHED_EVENT =
|
|
|
2
2
|
"action.localStorageToggleFlag.maxItemsReached";
|
|
3
3
|
|
|
4
4
|
export const ACTION_EXECUTOR_EVENT_SOURCE = "ActionExecutor";
|
|
5
|
+
|
|
6
|
+
export const ACTION_TYPES = {
|
|
7
|
+
OPEN_BOTTOM_SHEET: "openBottomSheet",
|
|
8
|
+
DISMISS_BOTTOM_SHEET: "dismissBottomSheet",
|
|
9
|
+
PRESENT_SUB_MENU: "presentSubMenu",
|
|
10
|
+
SEND_CLOUD_EVENT: "sendCloudEvent",
|
|
11
|
+
NAVIGATE_TO_SCREEN: "navigateToScreen",
|
|
12
|
+
SHOW_TOAST: "showToast",
|
|
13
|
+
LOCAL_STORAGE_SET: "localStorageSet",
|
|
14
|
+
LOCAL_STORAGE_REMOVE: "localStorageRemove",
|
|
15
|
+
LOCAL_STORAGE_TOGGLE_FLAG: "localStorageToggleFlag",
|
|
16
|
+
SESSION_STORAGE_SET: "sessionStorageSet",
|
|
17
|
+
SESSION_STORAGE_REMOVE: "sessionStorageRemove",
|
|
18
|
+
SESSION_STORAGE_TOGGLE_FLAG: "sessionStorageToggleFlag",
|
|
19
|
+
REFRESH_COMPONENT: "refreshComponent",
|
|
20
|
+
SWITCH_LAYOUT: "switchLayout",
|
|
21
|
+
APP_RESTART: "appRestart",
|
|
22
|
+
CONFIRM_DIALOG: "confirmDialog",
|
|
23
|
+
SCREEN_SET_VARIABLE: "screenSetVariable",
|
|
24
|
+
SCREEN_TOGGLE_FLAG: "screenToggleFlag",
|
|
25
|
+
} as const;
|
|
26
|
+
|
|
27
|
+
export type KnownActionType = (typeof ACTION_TYPES)[keyof typeof ACTION_TYPES];
|
|
@@ -3,8 +3,8 @@ import { distinctUntilChanged } from "rxjs/operators";
|
|
|
3
3
|
import { Player } from "../player";
|
|
4
4
|
import { createLogger, utilsLogger } from "../../../logger";
|
|
5
5
|
import { appStore } from "@applicaster/zapp-react-native-redux/AppStore";
|
|
6
|
+
import { findPluginByIdentifier } from "../../../pluginUtils";
|
|
6
7
|
import {
|
|
7
|
-
findPluginByIdentifier,
|
|
8
8
|
loadFeedEntry,
|
|
9
9
|
loadFeedAndPrefetchThumbnailImage,
|
|
10
10
|
parseTimeToSeconds,
|
|
@@ -170,7 +170,10 @@ export class OverlaysObserver {
|
|
|
170
170
|
return;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
const playNextFeedUrl: string = retrieveFeedUrl(
|
|
173
|
+
const playNextFeedUrl: string = await retrieveFeedUrl(
|
|
174
|
+
this.entry,
|
|
175
|
+
plugins
|
|
176
|
+
);
|
|
174
177
|
|
|
175
178
|
if (!playNextFeedUrl || typeof playNextFeedUrl !== "string") {
|
|
176
179
|
log_debug(
|
|
@@ -3,10 +3,12 @@ import {
|
|
|
3
3
|
PipesClientResponseHelper,
|
|
4
4
|
RequestBuilder,
|
|
5
5
|
} from "@applicaster/zapp-pipes-v2-client";
|
|
6
|
+
import { appStore } from "@applicaster/zapp-react-native-redux/AppStore";
|
|
6
7
|
import { log_error, log_info } from "./OverlaysObserver";
|
|
7
|
-
import * as R from "ramda";
|
|
8
8
|
import { toNumber, toNumberWithDefault } from "../../../numberUtils";
|
|
9
9
|
|
|
10
|
+
import { findPluginByIdentifier } from "../../../pluginUtils";
|
|
11
|
+
|
|
10
12
|
export const parseTimeToSeconds = (timeStr: string): number => {
|
|
11
13
|
const validationError = new Error("Invalid time format");
|
|
12
14
|
|
|
@@ -40,11 +42,51 @@ export const parseTimeToSeconds = (timeStr: string): number => {
|
|
|
40
42
|
}
|
|
41
43
|
};
|
|
42
44
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
+
/**
|
|
46
|
+
* HACK / TEMPORARY WORKAROUND:
|
|
47
|
+
* Resolves the play_next_feed_url dynamically for OverlaysObserver.
|
|
48
|
+
*
|
|
49
|
+
* WHY THIS IS HACKED HERE:
|
|
50
|
+
* OverlaysObserver was originally designed as a Recommendation Overlay engine (fetching static
|
|
51
|
+
* play_next_feed_url for overlay UI visuals). However, for dynamic queue & continuous audio playback,
|
|
52
|
+
* modifying feeds via `decorateFeed` at load time doesn't work (due to feed caching and mid-playback queue mutations).
|
|
53
|
+
* To avoid mutating feed payloads across the app, we temporarily intercept play_next_feed_url here
|
|
54
|
+
* at runtime to check if QueueManager has active/upcoming queue items.
|
|
55
|
+
*
|
|
56
|
+
* FUTURE ARCHITECTURE / TODO:
|
|
57
|
+
* Move queue/playlist resolution into a dedicated Player/Queue Provider module (or Handler Chain)
|
|
58
|
+
* on playerManager, decoupling Queue playback logic entirely from OverlaysObserver (which should
|
|
59
|
+
* strictly focus on recommendation visuals and chapter markers).
|
|
60
|
+
*/
|
|
61
|
+
export const retrieveFeedUrl = async (
|
|
62
|
+
entry: ZappEntry,
|
|
63
|
+
plugins?: ZappPlugin[]
|
|
64
|
+
): Promise<string> => {
|
|
65
|
+
if (!entry) return null;
|
|
66
|
+
|
|
67
|
+
const availablePlugins = plugins || appStore.get("plugins");
|
|
68
|
+
const queuePlugin = findPluginByIdentifier("queue-action", availablePlugins);
|
|
69
|
+
|
|
70
|
+
if (queuePlugin) {
|
|
71
|
+
try {
|
|
72
|
+
const { QueueManager } = require("@applicaster/queue-action/src/Manager");
|
|
73
|
+
const upcomingQueue = await QueueManager.instance.getUpcomingQueue();
|
|
74
|
+
|
|
75
|
+
if (upcomingQueue && upcomingQueue.length > 0) {
|
|
76
|
+
const queueItemId = entry?.extensions?.queueItemId || entry?.id;
|
|
77
|
+
|
|
78
|
+
return `pipesv2://queue-action/play-next?queueItemId=${queueItemId}`;
|
|
79
|
+
}
|
|
80
|
+
} catch (e) {
|
|
81
|
+
log_error("retrieveFeedUrl: Failed to resolve QueueManager", e);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return entry?.extensions?.play_next_feed_url;
|
|
86
|
+
};
|
|
45
87
|
|
|
46
88
|
export const retrieveOverlayDuration = (plugin) =>
|
|
47
|
-
toNumberWithDefault(plugin?.configuration?.overlay_duration
|
|
89
|
+
toNumberWithDefault(15, plugin?.configuration?.overlay_duration);
|
|
48
90
|
|
|
49
91
|
export const retrieveOverlayTriggerOffset = (item: ZappEntry) => {
|
|
50
92
|
return item && item.extensions && item.extensions.overlay_timestamp
|
|
@@ -150,19 +192,3 @@ export const loadFeedAndPrefetchThumbnailImage = async (
|
|
|
150
192
|
|
|
151
193
|
return playNextEntry;
|
|
152
194
|
};
|
|
153
|
-
|
|
154
|
-
export const findPluginByIdentifier = (
|
|
155
|
-
identifier: string,
|
|
156
|
-
plugins: ZappPlugin[]
|
|
157
|
-
): ZappPlugin => {
|
|
158
|
-
if (!identifier) {
|
|
159
|
-
return undefined;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
const plugin = R.compose(
|
|
163
|
-
R.find(R.propEq("identifier", identifier)),
|
|
164
|
-
R.values
|
|
165
|
-
)(plugins);
|
|
166
|
-
|
|
167
|
-
return plugin;
|
|
168
|
-
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { reorderByIds } from "../index";
|
|
2
|
+
|
|
3
|
+
describe("reorderByIds", () => {
|
|
4
|
+
const items = [
|
|
5
|
+
{ id: "1", title: "Track 1" },
|
|
6
|
+
{ id: "2", title: "Track 2" },
|
|
7
|
+
{ id: "3", title: "Track 3" },
|
|
8
|
+
{ id: "4", title: "Track 4" },
|
|
9
|
+
];
|
|
10
|
+
|
|
11
|
+
it("returns an empty array if items is empty or nullish", () => {
|
|
12
|
+
expect(reorderByIds([], ["1"])).toEqual([]);
|
|
13
|
+
expect(reorderByIds(null as any, ["1"])).toEqual([]);
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("returns a copy of items if orderedIds is empty or nullish", () => {
|
|
17
|
+
expect(reorderByIds(items, [])).toEqual(items);
|
|
18
|
+
expect(reorderByIds(items, null as any)).toEqual(items);
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
it("reorders items based on the provided orderedIds sequence", () => {
|
|
22
|
+
const result = reorderByIds(items, ["3", "1", "4", "2"]);
|
|
23
|
+
|
|
24
|
+
expect(result.map((i) => i.id)).toEqual(["3", "1", "4", "2"]);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it("replaces items in their original slots when reordering a subset", () => {
|
|
28
|
+
const result = reorderByIds(items, ["4", "2"]);
|
|
29
|
+
|
|
30
|
+
expect(result.map((i) => i.id)).toEqual(["1", "4", "3", "2"]);
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
it("ignores IDs in orderedIds that do not exist in items", () => {
|
|
34
|
+
const result = reorderByIds(items, ["unknown", "3", "99", "1"]);
|
|
35
|
+
|
|
36
|
+
expect(result.map((i) => i.id)).toEqual(["3", "2", "1", "4"]);
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
it("supports custom getId selector function", () => {
|
|
40
|
+
const customItems = [
|
|
41
|
+
{ key: "a", name: "Alpha" },
|
|
42
|
+
{ key: "b", name: "Beta" },
|
|
43
|
+
{ key: "c", name: "Gamma" },
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
const result = reorderByIds(customItems, ["c", "a"], (item) => item.key);
|
|
47
|
+
|
|
48
|
+
expect(result.map((i) => i.key)).toEqual(["c", "b", "a"]);
|
|
49
|
+
});
|
|
50
|
+
});
|
package/arrayUtils/index.ts
CHANGED
|
@@ -158,3 +158,82 @@ export const allTruthy = (xs: boolean[]) =>
|
|
|
158
158
|
|
|
159
159
|
/** Returns `true` when at least one value in `xs` is truthy. */
|
|
160
160
|
export const anyTruthy = (xs: boolean[]) => xs.some(Boolean);
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Reorders `items` based on an ordered array of IDs (`orderedIds`).
|
|
164
|
+
* Items whose IDs are in `orderedIds` appear first in that exact sequence.
|
|
165
|
+
* Any remaining items not present in `orderedIds` are appended at the end preserving their relative order.
|
|
166
|
+
*/
|
|
167
|
+
export function reorderByIds<T>(
|
|
168
|
+
items: T[],
|
|
169
|
+
orderedIds: string[],
|
|
170
|
+
getId: (item: T) => string | string[] = (item: any) => item?.id
|
|
171
|
+
): T[] {
|
|
172
|
+
if (!items || items.length === 0) return [];
|
|
173
|
+
if (!orderedIds || orderedIds.length === 0) return [...items];
|
|
174
|
+
|
|
175
|
+
const itemMap = new Map<string, T>();
|
|
176
|
+
|
|
177
|
+
items.forEach((item) => {
|
|
178
|
+
const rawId = getId(item);
|
|
179
|
+
const keys = Array.isArray(rawId) ? rawId : [rawId];
|
|
180
|
+
|
|
181
|
+
keys.forEach((key) => {
|
|
182
|
+
if (key !== undefined && key !== null && key !== "") {
|
|
183
|
+
itemMap.set(String(key), item);
|
|
184
|
+
}
|
|
185
|
+
});
|
|
186
|
+
});
|
|
187
|
+
|
|
188
|
+
const reorderedSubset: T[] = [];
|
|
189
|
+
const orderedIdsSet = new Set<string>();
|
|
190
|
+
|
|
191
|
+
orderedIds.forEach((id) => {
|
|
192
|
+
const strId = String(id);
|
|
193
|
+
const item = itemMap.get(strId);
|
|
194
|
+
|
|
195
|
+
if (item && !reorderedSubset.includes(item)) {
|
|
196
|
+
reorderedSubset.push(item);
|
|
197
|
+
const rawId = getId(item);
|
|
198
|
+
const keys = Array.isArray(rawId) ? rawId : [rawId];
|
|
199
|
+
|
|
200
|
+
keys.forEach((k) => {
|
|
201
|
+
if (k !== undefined && k !== null && k !== "") {
|
|
202
|
+
orderedIdsSet.add(String(k));
|
|
203
|
+
}
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
});
|
|
207
|
+
|
|
208
|
+
if (reorderedSubset.length === 0) return [...items];
|
|
209
|
+
|
|
210
|
+
let subsetIdx = 0;
|
|
211
|
+
const result: T[] = [];
|
|
212
|
+
|
|
213
|
+
items.forEach((item) => {
|
|
214
|
+
const rawId = getId(item);
|
|
215
|
+
const keys = Array.isArray(rawId) ? rawId : [rawId];
|
|
216
|
+
|
|
217
|
+
const isMatched = keys.some(
|
|
218
|
+
(k) =>
|
|
219
|
+
k !== undefined &&
|
|
220
|
+
k !== null &&
|
|
221
|
+
k !== "" &&
|
|
222
|
+
orderedIdsSet.has(String(k))
|
|
223
|
+
);
|
|
224
|
+
|
|
225
|
+
if (isMatched) {
|
|
226
|
+
if (subsetIdx < reorderedSubset.length) {
|
|
227
|
+
result.push(reorderedSubset[subsetIdx++]);
|
|
228
|
+
}
|
|
229
|
+
} else {
|
|
230
|
+
result.push(item);
|
|
231
|
+
}
|
|
232
|
+
});
|
|
233
|
+
|
|
234
|
+
while (subsetIdx < reorderedSubset.length) {
|
|
235
|
+
result.push(reorderedSubset[subsetIdx++]);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
return result;
|
|
239
|
+
}
|