@applicaster/zapp-react-native-utils 16.0.0-rc.6 → 16.0.0-rc.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actionsExecutor/ActionExecutor.ts +47 -11
- package/actionsExecutor/ActionExecutorContext.tsx +87 -316
- package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +22 -0
- package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
- package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
- package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +130 -0
- package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
- package/actionsExecutor/actions/appRestart.ts +24 -0
- package/actionsExecutor/actions/confirmDialog.ts +53 -0
- package/actionsExecutor/actions/dismissBottomSheet.ts +22 -0
- package/actionsExecutor/actions/index.ts +34 -0
- package/actionsExecutor/actions/localStorageRemove.ts +27 -0
- package/actionsExecutor/actions/localStorageSet.ts +28 -0
- package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
- package/actionsExecutor/actions/navigateToScreen.ts +123 -0
- package/actionsExecutor/actions/openBottomSheet.ts +322 -0
- package/actionsExecutor/actions/refreshComponent.ts +85 -0
- package/actionsExecutor/actions/screenSetVariable.ts +35 -0
- package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
- package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
- package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
- package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
- package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
- package/actionsExecutor/actions/showToast.ts +87 -0
- package/actionsExecutor/actions/switchLayout.ts +40 -0
- package/actionsExecutor/consts.ts +23 -0
- package/actionsExecutor/types.ts +59 -0
- package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
- package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
- package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/index.js +20 -0
- package/analyticsUtils/analyticsMapper.ts +4 -1
- package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
- package/appUtils/HooksManager/index.ts +12 -8
- package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
- package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
- package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
- package/appUtils/contextKeysManager/index.ts +1 -1
- package/appUtils/contextKeysManager/utils/index.ts +38 -25
- package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
- package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
- package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
- package/appUtils/playerManager/OverlayObserver/utils.ts +49 -20
- package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
- package/appUtils/playerManager/__tests__/playerFactory.test.ts +150 -0
- package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
- package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
- package/appUtils/playerManager/index.ts +1 -1
- package/appUtils/playerManager/player.ts +115 -3
- package/appUtils/playerManager/playerFactory.ts +18 -35
- package/appUtils/playerManager/playerNative.ts +1 -1
- package/appUtils/playerManager/usePlayerContent.tsx +43 -0
- package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
- package/appUtils/playerManager/userLanguagePreference.ts +1 -1
- package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
- package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
- package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
- package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
- package/arrayUtils/__tests__/isFirst.test.ts +17 -0
- package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
- package/arrayUtils/__tests__/isLast.test.ts +31 -0
- package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
- package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
- package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
- package/arrayUtils/__tests__/sample.test.ts +61 -0
- package/arrayUtils/index.ts +136 -20
- package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
- package/bottomSheet/index.ts +17 -0
- package/cellUtils/index.ts +3 -5
- package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
- package/colorUtils/__tests__/isValidColor.test.ts +70 -0
- package/colorUtils/index.ts +50 -0
- package/configurationUtils/__tests__/modalBlocksParser.test.ts +107 -0
- package/configurationUtils/manifestKeyParser.ts +38 -9
- package/configurationUtils/modalBlocksParser.ts +178 -0
- package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
- package/manifestUtils/_internals/index.js +6 -0
- package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -0
- package/manifestUtils/defaultManifestConfigurations/player.js +327 -19
- package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
- package/manifestUtils/fieldUtils/index.js +125 -0
- package/manifestUtils/index.js +3 -0
- package/manifestUtils/keys.js +9 -0
- package/manifestUtils/mobileAction/button/index.js +16 -0
- package/manifestUtils/mobileAction/container/index.js +3 -1
- package/manifestUtils/mobileAction/groups/defaults.js +3 -1
- package/manifestUtils/modalBlocks.js +304 -0
- package/manifestUtils/platformIsTV.js +1 -0
- package/modalState/ContentViewModel.ts +113 -0
- package/modalState/EditableCollection.ts +17 -0
- package/modalState/EditableCollectionRegistry.ts +51 -0
- package/modalState/ModalOrchestrator.ts +201 -0
- package/modalState/RemoteEditableCollection.ts +227 -0
- package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
- package/modalState/__tests__/ContentViewModel.test.ts +165 -0
- package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
- package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +55 -0
- package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
- package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
- package/modalState/index.ts +30 -83
- package/modalState/store.ts +102 -0
- package/modalState/types.ts +137 -0
- package/modalState/useBottomSheetContent.ts +102 -0
- package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
- package/numberUtils/__tests__/isZero.test.ts +27 -0
- package/numberUtils/__tests__/requireNumber.test.ts +50 -0
- package/numberUtils/__tests__/toNumber.test.ts +27 -0
- package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
- package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
- package/numberUtils/index.ts +27 -8
- package/package.json +2 -2
- package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
- package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
- package/pipesUtils/index.ts +1 -0
- package/pipesUtils/withPipesEndpoint.tsx +54 -0
- package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
- package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
- package/playerUtils/contentDataKeys.ts +134 -0
- package/playerUtils/index.ts +41 -14
- package/playerUtils/isAudioItem.ts +26 -0
- package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
- package/reactHooks/actions/index.ts +51 -1
- package/reactHooks/cell-click/index.ts +18 -10
- package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
- package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
- package/reactHooks/feed/index.ts +5 -1
- package/reactHooks/feed/useBatchLoading.ts +9 -1
- package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
- package/reactHooks/index.ts +2 -0
- package/reactHooks/layout/index.ts +1 -1
- package/reactHooks/navigation/__mocks__/index.ts +4 -0
- package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
- package/reactHooks/navigation/index.ts +1 -1
- package/reactHooks/navigation/useIsScreenActive.ts +29 -8
- package/reactHooks/state/useComponentScreenState.ts +1 -1
- package/reactHooks/usePluginConfiguration.ts +4 -1
- package/reactHooks/utils/__tests__/index.test.js +22 -2
- package/reactHooks/utils/index.ts +13 -2
- package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
- package/riverComponetsMeasurementProvider/index.tsx +12 -8
- package/stringUtils/__tests__/stringUtils.test.js +42 -0
- package/stringUtils/index.ts +2 -2
- package/uiActionsRegistrator/index.ts +203 -0
- package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
- package/zappFrameworkUtils/localStorageHelper.ts +19 -15
- package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
- package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
- /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { dismissModal, modalStore, openBottomSheetModal } from "./store";
|
|
2
|
+
import { isPresentSubMenuAction, Menu, MenuItem } from "./types";
|
|
3
|
+
import { ContentViewModel } from "./ContentViewModel";
|
|
4
|
+
|
|
5
|
+
export type { Menu, MenuItem };
|
|
6
|
+
|
|
7
|
+
export { isPresentSubMenuAction };
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Converts a Menu model into the props expected by BottomSheetModalContent.
|
|
11
|
+
* - Maps MenuItem.title → label (required by BottomSheetModalContent)
|
|
12
|
+
* - Maps MenuItem.icon → image src
|
|
13
|
+
* - Flattens header.title / header.subtitle into top-level title / summary
|
|
14
|
+
*/
|
|
15
|
+
interface StackEntry {
|
|
16
|
+
menu: Menu;
|
|
17
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>;
|
|
18
|
+
viewModel: ContentViewModel;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function menuToModalArgs(
|
|
22
|
+
menu: Menu,
|
|
23
|
+
viewModel: ContentViewModel,
|
|
24
|
+
onItemPress: (item: MenuItem) => void | Promise<void>,
|
|
25
|
+
key: string
|
|
26
|
+
): OpenModalBottomSheetArgs {
|
|
27
|
+
const items = menu.content.items.map((item) => ({
|
|
28
|
+
...item,
|
|
29
|
+
// BottomSheetModalContent renders `theme[item.label] ?? item.label`
|
|
30
|
+
label: item.title,
|
|
31
|
+
}));
|
|
32
|
+
|
|
33
|
+
return {
|
|
34
|
+
modalBottomSheetContentProps: {
|
|
35
|
+
key,
|
|
36
|
+
items,
|
|
37
|
+
itemsUrl: menu.content.itemsUrl,
|
|
38
|
+
title: menu.header?.title ?? menu.content.title,
|
|
39
|
+
summary: menu.header?.subtitle,
|
|
40
|
+
headerComponent: menu.header?.component,
|
|
41
|
+
headerComponentProps: menu.header?.componentProps,
|
|
42
|
+
styleOverrides: menu.content.styleOverrides,
|
|
43
|
+
onPress: onItemPress,
|
|
44
|
+
viewModel,
|
|
45
|
+
},
|
|
46
|
+
options: {},
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* ModalOrchestrator manages a stack of Menu modals, enabling push/pop
|
|
52
|
+
* navigation between bottom sheet screens.
|
|
53
|
+
*
|
|
54
|
+
* Usage:
|
|
55
|
+
* modalOrchestrator.open(menu);
|
|
56
|
+
* modalOrchestrator.back(); // go to previous modal in the stack
|
|
57
|
+
* modalOrchestrator.close(); // dismiss all and clear the stack
|
|
58
|
+
*/
|
|
59
|
+
class ModalOrchestrator {
|
|
60
|
+
private _stack: StackEntry[] = [];
|
|
61
|
+
|
|
62
|
+
/** Number of entries currently in the stack. */
|
|
63
|
+
get stackSize(): number {
|
|
64
|
+
return this._stack.length;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/** Whether there is a previous modal to go back to. */
|
|
68
|
+
get canGoBack(): boolean {
|
|
69
|
+
return this._stack.length > 1;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/** The Menu currently shown, or null if the stack is empty. */
|
|
73
|
+
get current(): Menu | null {
|
|
74
|
+
return this._stack[this._stack.length - 1]?.menu ?? null;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Push a new Menu onto the stack and display it.
|
|
79
|
+
* If a menu item carries a PresentSubMenuAction it will automatically
|
|
80
|
+
* push the sub-menu when pressed; all other items delegate to
|
|
81
|
+
* the optional `onItemPress` callback.
|
|
82
|
+
*/
|
|
83
|
+
open(
|
|
84
|
+
menu: Menu,
|
|
85
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>
|
|
86
|
+
): void {
|
|
87
|
+
const viewModel = new ContentViewModel(menu.content);
|
|
88
|
+
this._stack.push({ menu, onItemPress, viewModel });
|
|
89
|
+
this._present(menu, viewModel, onItemPress);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Pop the current modal and return to the previous one.
|
|
94
|
+
* If the stack has only one entry, closes entirely.
|
|
95
|
+
*/
|
|
96
|
+
back(): void {
|
|
97
|
+
if (this._stack.length === 0) {
|
|
98
|
+
return;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
this._stack.pop();
|
|
102
|
+
|
|
103
|
+
const previous = this._stack[this._stack.length - 1];
|
|
104
|
+
|
|
105
|
+
if (previous) {
|
|
106
|
+
this._present(previous.menu, previous.viewModel, previous.onItemPress);
|
|
107
|
+
} else {
|
|
108
|
+
dismissModal();
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Close all modals and clear the entire stack.
|
|
114
|
+
*/
|
|
115
|
+
close(): void {
|
|
116
|
+
this._stack = [];
|
|
117
|
+
dismissModal();
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Replace the current top of the stack without adding a new history entry.
|
|
122
|
+
*/
|
|
123
|
+
replace(
|
|
124
|
+
menu: Menu,
|
|
125
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>
|
|
126
|
+
): void {
|
|
127
|
+
if (this._stack.length === 0) {
|
|
128
|
+
this.open(menu, onItemPress);
|
|
129
|
+
|
|
130
|
+
return;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
const viewModel = new ContentViewModel(menu.content);
|
|
134
|
+
this._stack[this._stack.length - 1] = { menu, onItemPress, viewModel };
|
|
135
|
+
this._present(menu, viewModel, onItemPress);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
private _buildOnPress(
|
|
139
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>
|
|
140
|
+
): (item: MenuItem) => void | Promise<void> {
|
|
141
|
+
return (item: MenuItem) => {
|
|
142
|
+
if (isPresentSubMenuAction(item.action)) {
|
|
143
|
+
// Navigate deeper into the sub-menu
|
|
144
|
+
this.open(item.action.menu, onItemPress);
|
|
145
|
+
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
return onItemPress?.(item);
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Called when the UI dismisses the modal (swipe / overlay tap).
|
|
155
|
+
* Clears the stack without calling dismissModal() again to avoid
|
|
156
|
+
* a feedback loop with the store reset.
|
|
157
|
+
*/
|
|
158
|
+
private _onUIDismiss(): void {
|
|
159
|
+
this._stack = [];
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* True when the Zustand modal store already has a visible bottom sheet.
|
|
164
|
+
* Used to skip the slide-in animation when navigating to a deeper level.
|
|
165
|
+
*/
|
|
166
|
+
private get _isOpen(): boolean {
|
|
167
|
+
return modalStore.getState().modalState.visible;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
private _present(
|
|
171
|
+
menu: Menu,
|
|
172
|
+
viewModel: ContentViewModel,
|
|
173
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>
|
|
174
|
+
): void {
|
|
175
|
+
const key = `menu-level-${this._stack.length}`;
|
|
176
|
+
|
|
177
|
+
const args = menuToModalArgs(
|
|
178
|
+
menu,
|
|
179
|
+
viewModel,
|
|
180
|
+
this._buildOnPress(onItemPress),
|
|
181
|
+
key
|
|
182
|
+
);
|
|
183
|
+
|
|
184
|
+
const alreadyOpen = this._isOpen;
|
|
185
|
+
|
|
186
|
+
openBottomSheetModal({
|
|
187
|
+
...args,
|
|
188
|
+
options: {
|
|
189
|
+
...args.options,
|
|
190
|
+
// Skip the slide-in when updating an already-visible sheet (sub-level nav)
|
|
191
|
+
animated: !alreadyOpen,
|
|
192
|
+
animationType: alreadyOpen ? "none" : "slide",
|
|
193
|
+
// Keep the stack in sync when the user dismisses via swipe or overlay
|
|
194
|
+
onDismiss: () => this._onUIDismiss(),
|
|
195
|
+
onRequestClose: () => this._onUIDismiss(),
|
|
196
|
+
},
|
|
197
|
+
});
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export const modalOrchestrator = new ModalOrchestrator();
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
import { BehaviorSubject, Observable } from "rxjs";
|
|
2
|
+
import { Content, MenuItem, Operation } from "./types";
|
|
3
|
+
import { EditableCollection } from "./EditableCollection";
|
|
4
|
+
import { reorderByIds } from "../arrayUtils";
|
|
5
|
+
import { actionExecutor } from "../actionsExecutor/ActionExecutor";
|
|
6
|
+
import { createLogger } from "../logger";
|
|
7
|
+
|
|
8
|
+
const { log_debug, log_warning, log_error } = createLogger({
|
|
9
|
+
subsystem: "modalState",
|
|
10
|
+
category: "RemoteEditableCollection",
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
export class RemoteEditableCollection implements EditableCollection {
|
|
14
|
+
public items$: Observable<MenuItem[]>;
|
|
15
|
+
public operations: Operation[];
|
|
16
|
+
private itemsSubject: BehaviorSubject<MenuItem[]>;
|
|
17
|
+
private refetch: () => Promise<void>;
|
|
18
|
+
private content: Content;
|
|
19
|
+
private pendingMutationsCount = 0;
|
|
20
|
+
|
|
21
|
+
constructor(content: Content, refetch: () => Promise<void>) {
|
|
22
|
+
this.content = content;
|
|
23
|
+
this.refetch = refetch;
|
|
24
|
+
this.operations = content.dynamicCollection?.operations || [];
|
|
25
|
+
this.itemsSubject = new BehaviorSubject<MenuItem[]>(content.items || []);
|
|
26
|
+
this.items$ = this.itemsSubject.asObservable();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Replace the current items with an authoritative server list (called after
|
|
31
|
+
* a successful mutation reloads the feed). Overrides optimistic state.
|
|
32
|
+
*/
|
|
33
|
+
sync(items: MenuItem[]): void {
|
|
34
|
+
if (this.pendingMutationsCount > 0) {
|
|
35
|
+
log_debug(
|
|
36
|
+
`sync: Suppressing server sync because ${this.pendingMutationsCount} local mutation(s) are in-flight`
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
this.itemsSubject.next(items);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
async remove(index: number): Promise<void> {
|
|
46
|
+
const items = this.itemsSubject.value;
|
|
47
|
+
const snapshot = [...items];
|
|
48
|
+
const item = items[index];
|
|
49
|
+
|
|
50
|
+
if (!item) return;
|
|
51
|
+
|
|
52
|
+
this.pendingMutationsCount++;
|
|
53
|
+
|
|
54
|
+
// Optimistic update
|
|
55
|
+
const newItems = items.filter((_, i) => i !== index);
|
|
56
|
+
this.itemsSubject.next(newItems);
|
|
57
|
+
|
|
58
|
+
let actionFailed = false;
|
|
59
|
+
|
|
60
|
+
try {
|
|
61
|
+
await this.executeActionAlias(item, "remove_item");
|
|
62
|
+
} catch (e) {
|
|
63
|
+
actionFailed = true;
|
|
64
|
+
log_error("Remove failed, rolling back", { error: e });
|
|
65
|
+
this.itemsSubject.next(snapshot);
|
|
66
|
+
} finally {
|
|
67
|
+
this.pendingMutationsCount = Math.max(0, this.pendingMutationsCount - 1);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
if (!actionFailed) {
|
|
71
|
+
await this.refetch();
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
async move(itemIds: string[]): Promise<void> {
|
|
76
|
+
const items = this.itemsSubject.value;
|
|
77
|
+
const snapshot = [...items];
|
|
78
|
+
|
|
79
|
+
if (itemIds && itemIds.length > 0) {
|
|
80
|
+
this.pendingMutationsCount++;
|
|
81
|
+
const newItems = reorderByIds(items, itemIds);
|
|
82
|
+
this.itemsSubject.next(newItems);
|
|
83
|
+
|
|
84
|
+
let actionFailed = false;
|
|
85
|
+
|
|
86
|
+
try {
|
|
87
|
+
const targetItem = newItems[0] || items[0];
|
|
88
|
+
|
|
89
|
+
await this.executeActionAlias(targetItem, "reorder_item", {
|
|
90
|
+
itemIds,
|
|
91
|
+
});
|
|
92
|
+
} catch (e) {
|
|
93
|
+
actionFailed = true;
|
|
94
|
+
log_error("Move failed, rolling back", { error: e });
|
|
95
|
+
this.itemsSubject.next(snapshot);
|
|
96
|
+
} finally {
|
|
97
|
+
this.pendingMutationsCount = Math.max(
|
|
98
|
+
0,
|
|
99
|
+
this.pendingMutationsCount - 1
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (!actionFailed) {
|
|
104
|
+
await this.refetch();
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
async add(_item?: MenuItem): Promise<void> {
|
|
110
|
+
const items = this.itemsSubject.value;
|
|
111
|
+
const snapshot = [...items];
|
|
112
|
+
|
|
113
|
+
const addEvents = this.content.dynamicCollection?.events?.add;
|
|
114
|
+
|
|
115
|
+
if (!addEvents || addEvents.length === 0) {
|
|
116
|
+
log_warning("No events.add action found for create collection operation");
|
|
117
|
+
|
|
118
|
+
return;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
this.pendingMutationsCount++;
|
|
122
|
+
let actionFailed = false;
|
|
123
|
+
|
|
124
|
+
try {
|
|
125
|
+
for (const action of addEvents) {
|
|
126
|
+
await actionExecutor.handleAction(action as any);
|
|
127
|
+
}
|
|
128
|
+
} catch (e) {
|
|
129
|
+
actionFailed = true;
|
|
130
|
+
log_error("Add/create collection failed", { error: e });
|
|
131
|
+
this.itemsSubject.next(snapshot);
|
|
132
|
+
} finally {
|
|
133
|
+
this.pendingMutationsCount = Math.max(0, this.pendingMutationsCount - 1);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
if (!actionFailed) {
|
|
137
|
+
await this.refetch();
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
async deleteCollection(): Promise<void> {
|
|
142
|
+
const items = this.itemsSubject.value;
|
|
143
|
+
const snapshot = [...items];
|
|
144
|
+
|
|
145
|
+
this.pendingMutationsCount++;
|
|
146
|
+
this.itemsSubject.next([]);
|
|
147
|
+
|
|
148
|
+
let actionFailed = false;
|
|
149
|
+
|
|
150
|
+
try {
|
|
151
|
+
const firstItem = items[0];
|
|
152
|
+
|
|
153
|
+
if (firstItem) {
|
|
154
|
+
await this.executeActionAlias(firstItem, [
|
|
155
|
+
"delete_collection",
|
|
156
|
+
"clear_collection",
|
|
157
|
+
]);
|
|
158
|
+
}
|
|
159
|
+
} catch (e) {
|
|
160
|
+
actionFailed = true;
|
|
161
|
+
log_error("deleteCollection failed, rolling back", { error: e });
|
|
162
|
+
this.itemsSubject.next(snapshot);
|
|
163
|
+
} finally {
|
|
164
|
+
this.pendingMutationsCount = Math.max(0, this.pendingMutationsCount - 1);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
if (!actionFailed) {
|
|
168
|
+
await this.refetch();
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
private async executeActionAlias(
|
|
173
|
+
item: MenuItem,
|
|
174
|
+
alias: string | string[],
|
|
175
|
+
data?: Record<string, unknown>
|
|
176
|
+
): Promise<void> {
|
|
177
|
+
const entryActions = item.entryActions || [];
|
|
178
|
+
const aliases = Array.isArray(alias) ? alias : [alias];
|
|
179
|
+
|
|
180
|
+
const actionGroup = entryActions.find(
|
|
181
|
+
(ea) => ea.button?.alias && aliases.includes(ea.button.alias)
|
|
182
|
+
);
|
|
183
|
+
|
|
184
|
+
log_debug("executeActionAlias:", {
|
|
185
|
+
alias,
|
|
186
|
+
itemId: item.id,
|
|
187
|
+
entryActionsCount: entryActions.length,
|
|
188
|
+
availableAliases: entryActions.map((ea) => ea.button?.alias),
|
|
189
|
+
foundActionGroup: !!actionGroup,
|
|
190
|
+
data,
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
if (!actionGroup || !actionGroup.actions) {
|
|
194
|
+
log_warning(`No entry action found for alias "${aliases.join(", ")}"`, {
|
|
195
|
+
itemId: item.id,
|
|
196
|
+
});
|
|
197
|
+
|
|
198
|
+
return;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
// Execute each action in the group
|
|
202
|
+
for (const action of actionGroup.actions) {
|
|
203
|
+
const actionToExecute = data
|
|
204
|
+
? {
|
|
205
|
+
...action,
|
|
206
|
+
options: {
|
|
207
|
+
...action.options,
|
|
208
|
+
...data,
|
|
209
|
+
data: {
|
|
210
|
+
...(action.options?.data || {}),
|
|
211
|
+
...data,
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
}
|
|
215
|
+
: action;
|
|
216
|
+
|
|
217
|
+
log_debug("handling action:", actionToExecute);
|
|
218
|
+
|
|
219
|
+
await actionExecutor.handleAction(
|
|
220
|
+
actionToExecute as any,
|
|
221
|
+
{
|
|
222
|
+
entry: item as any,
|
|
223
|
+
} as any
|
|
224
|
+
);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { ContentViewModel } from "../ContentViewModel";
|
|
2
|
+
import { loadItemsFromSource } from "../../actionsExecutor/actions/openBottomSheet";
|
|
3
|
+
import { EditableCollectionRegistry } from "../EditableCollectionRegistry";
|
|
4
|
+
import { EditableCollection } from "../EditableCollection";
|
|
5
|
+
import { BehaviorSubject } from "rxjs";
|
|
6
|
+
import type { MenuItem } from "../types";
|
|
7
|
+
|
|
8
|
+
jest.mock("../../actionsExecutor/actions/openBottomSheet", () => ({
|
|
9
|
+
loadItemsFromSource: jest.fn(),
|
|
10
|
+
}));
|
|
11
|
+
|
|
12
|
+
const load = loadItemsFromSource as jest.Mock;
|
|
13
|
+
|
|
14
|
+
describe("ContentViewModel — editable collection", () => {
|
|
15
|
+
beforeEach(() => {
|
|
16
|
+
(EditableCollectionRegistry as any).providers = {};
|
|
17
|
+
jest.clearAllMocks();
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it("resolves the collection once and syncs fresh items on refetch (no recreation)", async () => {
|
|
21
|
+
const sync = jest.fn();
|
|
22
|
+
|
|
23
|
+
const collection: EditableCollection = {
|
|
24
|
+
items$: new BehaviorSubject<MenuItem[]>([]).asObservable(),
|
|
25
|
+
operations: ["remove"],
|
|
26
|
+
sync,
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const factory = jest.fn(() => collection);
|
|
30
|
+
EditableCollectionRegistry.register("@{provider/test}", factory);
|
|
31
|
+
|
|
32
|
+
const serverItems: MenuItem[] = [{ id: "1", title: "Fetched" }];
|
|
33
|
+
|
|
34
|
+
load.mockResolvedValue({
|
|
35
|
+
items: serverItems,
|
|
36
|
+
role: "dynamic_collection",
|
|
37
|
+
dynamicCollection: {
|
|
38
|
+
operations: ["remove"],
|
|
39
|
+
provider: "@{provider/test}",
|
|
40
|
+
},
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
const viewModel = new ContentViewModel({
|
|
44
|
+
title: "Queue",
|
|
45
|
+
items: [],
|
|
46
|
+
itemsUrl: "pipesv2://queue-action",
|
|
47
|
+
dynamicCollection: {
|
|
48
|
+
operations: ["remove"],
|
|
49
|
+
provider: "@{provider/test}",
|
|
50
|
+
},
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
// constructor resolves the provider, then refetches (items empty + itemsUrl)
|
|
54
|
+
await new Promise(process.nextTick);
|
|
55
|
+
|
|
56
|
+
expect(viewModel.editableCollection).toBe(collection);
|
|
57
|
+
// factory used exactly once — instance reused, not rebuilt on refetch
|
|
58
|
+
expect(factory).toHaveBeenCalledTimes(1);
|
|
59
|
+
// authoritative server items pushed into the existing instance
|
|
60
|
+
expect(sync).toHaveBeenLastCalledWith(serverItems);
|
|
61
|
+
|
|
62
|
+
sync.mockClear();
|
|
63
|
+
|
|
64
|
+
await viewModel.refetch();
|
|
65
|
+
|
|
66
|
+
expect(factory).toHaveBeenCalledTimes(1);
|
|
67
|
+
expect(sync).toHaveBeenCalledWith(serverItems);
|
|
68
|
+
});
|
|
69
|
+
});
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import { ContentViewModel } from "../ContentViewModel";
|
|
2
|
+
import { loadItemsFromSource } from "../../actionsExecutor/actions/openBottomSheet";
|
|
3
|
+
|
|
4
|
+
jest.mock("../../actionsExecutor/actions/openBottomSheet", () => ({
|
|
5
|
+
loadItemsFromSource: jest.fn(),
|
|
6
|
+
}));
|
|
7
|
+
|
|
8
|
+
describe("ContentViewModel", () => {
|
|
9
|
+
beforeEach(() => {
|
|
10
|
+
jest.clearAllMocks();
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
it("should initialize with items and not fetch if itemsUrl is not provided", () => {
|
|
14
|
+
const content = {
|
|
15
|
+
title: "Test Menu",
|
|
16
|
+
items: [{ title: "Item 1" }, { title: "Item 2" }],
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
const viewModel = new ContentViewModel(content);
|
|
20
|
+
|
|
21
|
+
expect(viewModel.getState()).toMatchObject({
|
|
22
|
+
items: content.items,
|
|
23
|
+
isLoading: false,
|
|
24
|
+
role: undefined,
|
|
25
|
+
behavior: undefined,
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
expect(loadItemsFromSource).not.toHaveBeenCalled();
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
it("seeds role and behavior from Content", () => {
|
|
32
|
+
const viewModel = new ContentViewModel({
|
|
33
|
+
title: "Playlists",
|
|
34
|
+
items: [{ title: "A" }],
|
|
35
|
+
role: "collection_selector",
|
|
36
|
+
behavior: { selectMode: "multi", currentSelection: ["a"] },
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
expect(viewModel.getState().role).toBe("collection_selector");
|
|
40
|
+
|
|
41
|
+
expect(viewModel.getState().behavior).toEqual({
|
|
42
|
+
selectMode: "multi",
|
|
43
|
+
currentSelection: ["a"],
|
|
44
|
+
});
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
it("should trigger fetch on init if items is empty and itemsUrl is present", async () => {
|
|
48
|
+
const mockItems = [{ title: "Fetched Item" }];
|
|
49
|
+
|
|
50
|
+
(loadItemsFromSource as jest.Mock).mockResolvedValueOnce({
|
|
51
|
+
items: mockItems,
|
|
52
|
+
role: "collection_selector",
|
|
53
|
+
behavior: { selectMode: "multi", currentSelection: [] },
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
const content = {
|
|
57
|
+
title: "Test Menu",
|
|
58
|
+
items: [],
|
|
59
|
+
itemsUrl: "http://example.com/items",
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const viewModel = new ContentViewModel(content);
|
|
63
|
+
|
|
64
|
+
// Initial state should be loading
|
|
65
|
+
expect(viewModel.getState().isLoading).toBe(true);
|
|
66
|
+
|
|
67
|
+
// Wait for the asynchronous refetch to complete
|
|
68
|
+
await new Promise(process.nextTick);
|
|
69
|
+
|
|
70
|
+
expect(loadItemsFromSource).toHaveBeenCalledWith(
|
|
71
|
+
expect.stringMatching(/^http:\/\/example\.com\/items\?_t=\d+$/)
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
expect(viewModel.getState()).toMatchObject({
|
|
75
|
+
items: mockItems,
|
|
76
|
+
isLoading: false,
|
|
77
|
+
role: "collection_selector",
|
|
78
|
+
behavior: { selectMode: "multi", currentSelection: [] },
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
it("updates role and behavior on refetch", async () => {
|
|
83
|
+
(loadItemsFromSource as jest.Mock)
|
|
84
|
+
.mockResolvedValueOnce({
|
|
85
|
+
items: [{ title: "First" }],
|
|
86
|
+
role: "collection_selector",
|
|
87
|
+
behavior: { selectMode: "multi", currentSelection: [] },
|
|
88
|
+
})
|
|
89
|
+
.mockResolvedValueOnce({
|
|
90
|
+
items: [{ title: "Second", isSelected: true }],
|
|
91
|
+
role: "collection_selector",
|
|
92
|
+
behavior: { selectMode: "multi", currentSelection: ["2"] },
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
const viewModel = new ContentViewModel({
|
|
96
|
+
title: "Test Menu",
|
|
97
|
+
items: [],
|
|
98
|
+
itemsUrl: "http://example.com/items",
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
await new Promise(process.nextTick);
|
|
102
|
+
|
|
103
|
+
await viewModel.refetch();
|
|
104
|
+
|
|
105
|
+
expect(viewModel.getState().items[0].title).toBe("Second");
|
|
106
|
+
expect(viewModel.getState().behavior?.currentSelection).toEqual(["2"]);
|
|
107
|
+
expect(viewModel.getState().role).toBe("collection_selector");
|
|
108
|
+
});
|
|
109
|
+
|
|
110
|
+
it("should notify subscribers of state changes", async () => {
|
|
111
|
+
const mockItems = [{ title: "Fetched Item" }];
|
|
112
|
+
|
|
113
|
+
(loadItemsFromSource as jest.Mock).mockResolvedValue({
|
|
114
|
+
items: mockItems,
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
const content = {
|
|
118
|
+
title: "Test Menu",
|
|
119
|
+
items: [],
|
|
120
|
+
itemsUrl: "http://example.com/items",
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
const viewModel = new ContentViewModel(content);
|
|
124
|
+
|
|
125
|
+
// Wait for constructor's refetch to finish
|
|
126
|
+
await new Promise(process.nextTick);
|
|
127
|
+
|
|
128
|
+
const listener = jest.fn();
|
|
129
|
+
const unsubscribe = viewModel.subscribe(listener);
|
|
130
|
+
|
|
131
|
+
await viewModel.refetch();
|
|
132
|
+
|
|
133
|
+
expect(listener).toHaveBeenCalled();
|
|
134
|
+
expect(viewModel.getState().items).toEqual(mockItems);
|
|
135
|
+
|
|
136
|
+
unsubscribe();
|
|
137
|
+
listener.mockClear();
|
|
138
|
+
|
|
139
|
+
await viewModel.refetch();
|
|
140
|
+
expect(listener).not.toHaveBeenCalled();
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
it("should handle error states during fetching", async () => {
|
|
144
|
+
const error = new Error("Network Error");
|
|
145
|
+
(loadItemsFromSource as jest.Mock).mockRejectedValueOnce(error);
|
|
146
|
+
|
|
147
|
+
const content = {
|
|
148
|
+
title: "Test Menu",
|
|
149
|
+
items: [],
|
|
150
|
+
itemsUrl: "http://example.com/items",
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
const viewModel = new ContentViewModel(content);
|
|
154
|
+
|
|
155
|
+
await new Promise(process.nextTick);
|
|
156
|
+
|
|
157
|
+
expect(viewModel.getState()).toMatchObject({
|
|
158
|
+
items: [],
|
|
159
|
+
isLoading: false,
|
|
160
|
+
error: "Network Error",
|
|
161
|
+
role: undefined,
|
|
162
|
+
behavior: undefined,
|
|
163
|
+
});
|
|
164
|
+
});
|
|
165
|
+
});
|