@applicaster/zapp-react-native-utils 16.0.0-rc.8 → 16.0.0-rc.80
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 +102 -315
- 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__/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 +38 -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 +325 -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 +25 -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__/modalBlocksParser.test.ts +107 -0
- package/configurationUtils/manifestKeyParser.ts +38 -9
- package/configurationUtils/modalBlocksParser.ts +178 -0
- package/entryActions/__tests__/buildEntryActions.test.ts +156 -0
- package/entryActions/aliasPresentation.ts +124 -0
- package/entryActions/buildEntryActions.ts +166 -0
- package/entryActions/index.ts +17 -0
- package/entryActions/types.ts +39 -0
- package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
- package/manifestUtils/_internals/index.js +14 -3
- package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -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 +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 +47 -0
- package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
- package/modalState/__tests__/index.test.ts +30 -1
- package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
- package/modalState/index.ts +35 -83
- package/modalState/store.ts +102 -0
- package/modalState/types.ts +159 -0
- package/modalState/useBottomSheetContent.ts +104 -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 +58 -15
- 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/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/__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,51 @@
|
|
|
1
|
+
import { Content } from "./types";
|
|
2
|
+
import { EditableCollection } from "./EditableCollection";
|
|
3
|
+
import { RemoteEditableCollection } from "./RemoteEditableCollection";
|
|
4
|
+
import { createLogger } from "../logger";
|
|
5
|
+
|
|
6
|
+
const { log_error } = createLogger({
|
|
7
|
+
subsystem: "modalState",
|
|
8
|
+
category: "EditableCollectionRegistry",
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
type ProviderFactory = () => EditableCollection;
|
|
12
|
+
|
|
13
|
+
export class EditableCollectionRegistry {
|
|
14
|
+
private static providers: Record<string, ProviderFactory> = {};
|
|
15
|
+
|
|
16
|
+
static register(token: string, factory: ProviderFactory) {
|
|
17
|
+
this.providers[token] = factory;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
static getProvider(token: string): EditableCollection | null {
|
|
21
|
+
const factory = this.providers[token];
|
|
22
|
+
|
|
23
|
+
return factory ? factory() : null;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export function resolveEditableCollection(
|
|
28
|
+
content: Content,
|
|
29
|
+
refetch: () => Promise<void>
|
|
30
|
+
): EditableCollection | null {
|
|
31
|
+
const options = content.dynamicCollection;
|
|
32
|
+
if (!options) return null;
|
|
33
|
+
|
|
34
|
+
if (options.provider) {
|
|
35
|
+
const provider = EditableCollectionRegistry.getProvider(options.provider);
|
|
36
|
+
|
|
37
|
+
if (!provider) {
|
|
38
|
+
log_error(
|
|
39
|
+
`No EditableCollection provider registered for token "${options.provider}"`
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
return provider;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (options.postUrl) {
|
|
47
|
+
return new RemoteEditableCollection(content, refetch);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
return null;
|
|
51
|
+
}
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
import { dismissModal, modalStore, openBottomSheetModal } from "./store";
|
|
2
|
+
import {
|
|
3
|
+
getMenuItemActions,
|
|
4
|
+
isPresentSubMenuAction,
|
|
5
|
+
Menu,
|
|
6
|
+
MenuItem,
|
|
7
|
+
PresentSubMenuAction,
|
|
8
|
+
} from "./types";
|
|
9
|
+
import { ContentViewModel } from "./ContentViewModel";
|
|
10
|
+
|
|
11
|
+
export type { Menu, MenuItem };
|
|
12
|
+
|
|
13
|
+
export { isPresentSubMenuAction, getMenuItemActions };
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Converts a Menu model into the props expected by BottomSheetModalContent.
|
|
17
|
+
* - Maps MenuItem.title → label (required by BottomSheetModalContent)
|
|
18
|
+
* - Maps MenuItem.icon → image src
|
|
19
|
+
* - Flattens header.title / header.subtitle into top-level title / summary
|
|
20
|
+
*/
|
|
21
|
+
interface StackEntry {
|
|
22
|
+
menu: Menu;
|
|
23
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>;
|
|
24
|
+
viewModel: ContentViewModel;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function menuToModalArgs(
|
|
28
|
+
menu: Menu,
|
|
29
|
+
viewModel: ContentViewModel,
|
|
30
|
+
onItemPress: (item: MenuItem) => void | Promise<void>,
|
|
31
|
+
key: string
|
|
32
|
+
): OpenModalBottomSheetArgs {
|
|
33
|
+
const items = menu.content.items.map((item) => ({
|
|
34
|
+
...item,
|
|
35
|
+
// BottomSheetModalContent renders `theme[item.label] ?? item.label`
|
|
36
|
+
label: item.title,
|
|
37
|
+
}));
|
|
38
|
+
|
|
39
|
+
return {
|
|
40
|
+
modalBottomSheetContentProps: {
|
|
41
|
+
key,
|
|
42
|
+
items,
|
|
43
|
+
itemsUrl: menu.content.itemsUrl,
|
|
44
|
+
title: menu.header?.title ?? menu.content.title,
|
|
45
|
+
summary: menu.header?.subtitle,
|
|
46
|
+
styleOverrides: menu.content.styleOverrides,
|
|
47
|
+
onPress: onItemPress,
|
|
48
|
+
viewModel,
|
|
49
|
+
},
|
|
50
|
+
options: {},
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* ModalOrchestrator manages a stack of Menu modals, enabling push/pop
|
|
56
|
+
* navigation between bottom sheet screens.
|
|
57
|
+
*
|
|
58
|
+
* Usage:
|
|
59
|
+
* modalOrchestrator.open(menu);
|
|
60
|
+
* modalOrchestrator.back(); // go to previous modal in the stack
|
|
61
|
+
* modalOrchestrator.close(); // dismiss all and clear the stack
|
|
62
|
+
*/
|
|
63
|
+
class ModalOrchestrator {
|
|
64
|
+
private _stack: StackEntry[] = [];
|
|
65
|
+
|
|
66
|
+
/** Number of entries currently in the stack. */
|
|
67
|
+
get stackSize(): number {
|
|
68
|
+
return this._stack.length;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/** Whether there is a previous modal to go back to. */
|
|
72
|
+
get canGoBack(): boolean {
|
|
73
|
+
return this._stack.length > 1;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/** The Menu currently shown, or null if the stack is empty. */
|
|
77
|
+
get current(): Menu | null {
|
|
78
|
+
return this._stack[this._stack.length - 1]?.menu ?? null;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Push a new Menu onto the stack and display it.
|
|
83
|
+
* If a menu item carries a PresentSubMenuAction it will automatically
|
|
84
|
+
* push the sub-menu when pressed; all other items delegate to
|
|
85
|
+
* the optional `onItemPress` callback.
|
|
86
|
+
*/
|
|
87
|
+
open(
|
|
88
|
+
menu: Menu,
|
|
89
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>
|
|
90
|
+
): void {
|
|
91
|
+
const viewModel = new ContentViewModel(menu.content);
|
|
92
|
+
this._stack.push({ menu, onItemPress, viewModel });
|
|
93
|
+
this._present(menu, viewModel, onItemPress);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Pop the current modal and return to the previous one.
|
|
98
|
+
* If the stack has only one entry, closes entirely.
|
|
99
|
+
*/
|
|
100
|
+
back(): void {
|
|
101
|
+
if (this._stack.length === 0) {
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
this._stack.pop();
|
|
106
|
+
|
|
107
|
+
const previous = this._stack[this._stack.length - 1];
|
|
108
|
+
|
|
109
|
+
if (previous) {
|
|
110
|
+
this._present(previous.menu, previous.viewModel, previous.onItemPress);
|
|
111
|
+
} else {
|
|
112
|
+
dismissModal();
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Close all modals and clear the entire stack.
|
|
118
|
+
*/
|
|
119
|
+
close(): void {
|
|
120
|
+
this._stack = [];
|
|
121
|
+
dismissModal();
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Replace the current top of the stack without adding a new history entry.
|
|
126
|
+
*/
|
|
127
|
+
replace(
|
|
128
|
+
menu: Menu,
|
|
129
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>
|
|
130
|
+
): void {
|
|
131
|
+
if (this._stack.length === 0) {
|
|
132
|
+
this.open(menu, onItemPress);
|
|
133
|
+
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
const viewModel = new ContentViewModel(menu.content);
|
|
138
|
+
this._stack[this._stack.length - 1] = { menu, onItemPress, viewModel };
|
|
139
|
+
this._present(menu, viewModel, onItemPress);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
private _buildOnPress(
|
|
143
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>
|
|
144
|
+
): (item: MenuItem) => void | Promise<void> {
|
|
145
|
+
return async (item: MenuItem) => {
|
|
146
|
+
if (onItemPress) {
|
|
147
|
+
await onItemPress(item);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
const actions = getMenuItemActions(item);
|
|
151
|
+
|
|
152
|
+
const subMenuAction = actions.find(isPresentSubMenuAction) as
|
|
153
|
+
| PresentSubMenuAction
|
|
154
|
+
| undefined;
|
|
155
|
+
|
|
156
|
+
if (subMenuAction) {
|
|
157
|
+
// Navigate deeper into the sub-menu
|
|
158
|
+
this.open(subMenuAction.menu, onItemPress);
|
|
159
|
+
}
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Called when the UI dismisses the modal (swipe / overlay tap).
|
|
165
|
+
* Clears the stack without calling dismissModal() again to avoid
|
|
166
|
+
* a feedback loop with the store reset.
|
|
167
|
+
*/
|
|
168
|
+
private _onUIDismiss(): void {
|
|
169
|
+
this._stack = [];
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* True when the Zustand modal store already has a visible bottom sheet.
|
|
174
|
+
* Used to skip the slide-in animation when navigating to a deeper level.
|
|
175
|
+
*/
|
|
176
|
+
private get _isOpen(): boolean {
|
|
177
|
+
return modalStore.getState().modalState.visible;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
private _present(
|
|
181
|
+
menu: Menu,
|
|
182
|
+
viewModel: ContentViewModel,
|
|
183
|
+
onItemPress?: (item: MenuItem) => void | Promise<void>
|
|
184
|
+
): void {
|
|
185
|
+
const key = `menu-level-${this._stack.length}`;
|
|
186
|
+
|
|
187
|
+
const args = menuToModalArgs(
|
|
188
|
+
menu,
|
|
189
|
+
viewModel,
|
|
190
|
+
this._buildOnPress(onItemPress),
|
|
191
|
+
key
|
|
192
|
+
);
|
|
193
|
+
|
|
194
|
+
const alreadyOpen = this._isOpen;
|
|
195
|
+
|
|
196
|
+
openBottomSheetModal({
|
|
197
|
+
...args,
|
|
198
|
+
options: {
|
|
199
|
+
...args.options,
|
|
200
|
+
// Skip the slide-in when updating an already-visible sheet (sub-level nav)
|
|
201
|
+
animated: !alreadyOpen,
|
|
202
|
+
animationType: alreadyOpen ? "none" : "slide",
|
|
203
|
+
// Keep the stack in sync when the user dismisses via swipe or overlay
|
|
204
|
+
onDismiss: () => this._onUIDismiss(),
|
|
205
|
+
onRequestClose: () => this._onUIDismiss(),
|
|
206
|
+
},
|
|
207
|
+
});
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
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
|
+
});
|