@applicaster/zapp-react-native-utils 16.0.0-rc.9 → 16.0.0-rc.90

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.
Files changed (201) hide show
  1. package/actionsExecutor/ActionExecutor.ts +57 -12
  2. package/actionsExecutor/ActionExecutorContext.tsx +113 -314
  3. package/actionsExecutor/__tests__/ActionExecutor.test.ts +71 -0
  4. package/actionsExecutor/__tests__/feedDecorator.test.ts +61 -0
  5. package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +25 -0
  6. package/actionsExecutor/actions/__tests__/goBack.test.ts +62 -0
  7. package/actionsExecutor/actions/__tests__/goHome.test.ts +19 -0
  8. package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
  9. package/actionsExecutor/actions/__tests__/navigateToScreen.test.ts +133 -0
  10. package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
  11. package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +212 -0
  12. package/actionsExecutor/actions/__tests__/presentScreen.test.ts +127 -0
  13. package/actionsExecutor/actions/__tests__/showAlert.test.ts +49 -0
  14. package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
  15. package/actionsExecutor/actions/appRestart.ts +24 -0
  16. package/actionsExecutor/actions/confirmDialog.ts +53 -0
  17. package/actionsExecutor/actions/dismissBottomSheet.ts +23 -0
  18. package/actionsExecutor/actions/goBack.ts +60 -0
  19. package/actionsExecutor/actions/goHome.ts +31 -0
  20. package/actionsExecutor/actions/index.ts +42 -0
  21. package/actionsExecutor/actions/localStorageRemove.ts +27 -0
  22. package/actionsExecutor/actions/localStorageSet.ts +28 -0
  23. package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
  24. package/actionsExecutor/actions/navigateToScreen.ts +137 -0
  25. package/actionsExecutor/actions/openBottomSheet.ts +329 -0
  26. package/actionsExecutor/actions/presentScreen.ts +78 -0
  27. package/actionsExecutor/actions/refreshComponent.ts +85 -0
  28. package/actionsExecutor/actions/screenSetVariable.ts +35 -0
  29. package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
  30. package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
  31. package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
  32. package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
  33. package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
  34. package/actionsExecutor/actions/showAlert.ts +51 -0
  35. package/actionsExecutor/actions/showToast.ts +87 -0
  36. package/actionsExecutor/actions/switchLayout.ts +40 -0
  37. package/actionsExecutor/consts.ts +27 -0
  38. package/actionsExecutor/feedDecorator.ts +6 -6
  39. package/actionsExecutor/types.ts +59 -0
  40. package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
  41. package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
  42. package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
  43. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
  44. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
  45. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
  46. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
  47. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
  48. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
  49. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
  50. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
  51. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
  52. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
  53. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
  54. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
  55. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
  56. package/analyticsUtils/__tests__/fixtures/index.js +20 -0
  57. package/analyticsUtils/analyticsMapper.ts +4 -1
  58. package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
  59. package/appUtils/HooksManager/index.ts +12 -8
  60. package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
  61. package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
  62. package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
  63. package/appUtils/contextKeysManager/index.ts +1 -1
  64. package/appUtils/contextKeysManager/utils/index.ts +38 -25
  65. package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
  66. package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
  67. package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
  68. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.android.tv.ts +4 -0
  69. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ios.tv.ts +4 -0
  70. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ts +11 -0
  71. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.web.ts +4 -0
  72. package/appUtils/playerManager/OverlayObserver/utils.ts +54 -20
  73. package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
  74. package/appUtils/playerManager/__tests__/playerFactory.test.ts +1 -1
  75. package/appUtils/playerManager/__tests__/playerNative.test.ts +38 -0
  76. package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
  77. package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
  78. package/appUtils/playerManager/index.ts +1 -1
  79. package/appUtils/playerManager/player.ts +115 -3
  80. package/appUtils/playerManager/playerFactory.ts +1 -1
  81. package/appUtils/playerManager/playerNative.ts +6 -4
  82. package/appUtils/playerManager/usePlayerContent.tsx +43 -0
  83. package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
  84. package/appUtils/playerManager/userLanguagePreference.ts +1 -1
  85. package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
  86. package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
  87. package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
  88. package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
  89. package/arrayUtils/__tests__/isFirst.test.ts +17 -0
  90. package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
  91. package/arrayUtils/__tests__/isLast.test.ts +31 -0
  92. package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
  93. package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
  94. package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
  95. package/arrayUtils/__tests__/sample.test.ts +61 -0
  96. package/arrayUtils/index.ts +136 -20
  97. package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
  98. package/bottomSheet/index.ts +17 -0
  99. package/cellUtils/index.ts +33 -8
  100. package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
  101. package/colorUtils/__tests__/isValidColor.test.ts +70 -0
  102. package/colorUtils/index.ts +50 -0
  103. package/configurationUtils/__tests__/manifestKeyParser.test.ts +21 -0
  104. package/configurationUtils/__tests__/modalBlocksParser.test.ts +260 -0
  105. package/configurationUtils/manifestKeyParser.ts +50 -10
  106. package/configurationUtils/modalBlocksParser.ts +296 -0
  107. package/entryActions/__tests__/buildEntryActions.test.ts +195 -0
  108. package/entryActions/aliasPresentation.ts +124 -0
  109. package/entryActions/buildEntryActions.ts +167 -0
  110. package/entryActions/index.ts +17 -0
  111. package/entryActions/types.ts +39 -0
  112. package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
  113. package/manifestUtils/_internals/index.js +14 -3
  114. package/manifestUtils/defaultManifestConfigurations/generalContent.js +41 -0
  115. package/manifestUtils/defaultManifestConfigurations/player.js +349 -20
  116. package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
  117. package/manifestUtils/fieldUtils/index.js +125 -0
  118. package/manifestUtils/index.js +3 -0
  119. package/manifestUtils/keys.js +9 -0
  120. package/manifestUtils/mobileAction/button/index.js +16 -0
  121. package/manifestUtils/mobileAction/container/index.js +3 -1
  122. package/manifestUtils/mobileAction/groups/defaults.js +3 -1
  123. package/manifestUtils/modalBlocks.js +304 -0
  124. package/manifestUtils/platformIsTV.js +1 -0
  125. package/modalState/ContentViewModel.ts +113 -0
  126. package/modalState/EditableCollection.ts +17 -0
  127. package/modalState/EditableCollectionRegistry.ts +51 -0
  128. package/modalState/ModalOrchestrator.ts +211 -0
  129. package/modalState/RemoteEditableCollection.ts +235 -0
  130. package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
  131. package/modalState/__tests__/ContentViewModel.test.ts +165 -0
  132. package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
  133. package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +47 -0
  134. package/modalState/__tests__/RemoteEditableCollection.test.ts +415 -0
  135. package/modalState/__tests__/index.test.ts +30 -1
  136. package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
  137. package/modalState/__tests__/useModalStoreState.test.ts +142 -0
  138. package/modalState/index.ts +35 -83
  139. package/modalState/store.ts +109 -0
  140. package/modalState/types.ts +160 -0
  141. package/modalState/useBottomSheetContent.ts +109 -0
  142. package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
  143. package/numberUtils/__tests__/isZero.test.ts +27 -0
  144. package/numberUtils/__tests__/requireNumber.test.ts +50 -0
  145. package/numberUtils/__tests__/toNumber.test.ts +27 -0
  146. package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
  147. package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
  148. package/numberUtils/index.ts +27 -8
  149. package/package.json +2 -2
  150. package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
  151. package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
  152. package/pipesUtils/index.ts +1 -0
  153. package/pipesUtils/withPipesEndpoint.tsx +54 -0
  154. package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
  155. package/playerUtils/__tests__/resolvePlayerActions.test.ts +138 -0
  156. package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
  157. package/playerUtils/contentDataKeys.ts +134 -0
  158. package/playerUtils/index.ts +41 -18
  159. package/playerUtils/isAudioItem.ts +26 -0
  160. package/playerUtils/resolvePlayerActions.ts +71 -0
  161. package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
  162. package/reactHooks/actions/index.ts +117 -2
  163. package/reactHooks/cell-click/__tests__/index.test.js +64 -0
  164. package/reactHooks/cell-click/index.ts +39 -24
  165. package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
  166. package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
  167. package/reactHooks/feed/index.ts +5 -1
  168. package/reactHooks/feed/useBatchLoading.ts +9 -1
  169. package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
  170. package/reactHooks/index.ts +2 -0
  171. package/reactHooks/layout/index.ts +1 -1
  172. package/reactHooks/navigation/__mocks__/index.ts +4 -0
  173. package/reactHooks/navigation/__tests__/index.test.tsx +176 -1
  174. package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
  175. package/reactHooks/navigation/__tests__/usePresentScreen.test.ts +154 -0
  176. package/reactHooks/navigation/index.ts +3 -1
  177. package/reactHooks/navigation/useIsScreenActive.ts +29 -8
  178. package/reactHooks/navigation/usePresentScreen.ts +157 -0
  179. package/reactHooks/navigation/useRoute.ts +22 -5
  180. package/reactHooks/state/useComponentScreenState.ts +1 -1
  181. package/reactHooks/usePluginConfiguration.ts +4 -1
  182. package/reactHooks/utils/__tests__/index.test.js +22 -2
  183. package/reactHooks/utils/index.ts +13 -2
  184. package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
  185. package/riverComponetsMeasurementProvider/index.tsx +12 -8
  186. package/stringUtils/__tests__/stringUtils.test.js +42 -0
  187. package/stringUtils/index.ts +2 -2
  188. package/uiActionsRegistrator/__tests__/resolveActionIdentifiers.test.ts +93 -0
  189. package/uiActionsRegistrator/__tests__/subscribe.test.ts +107 -0
  190. package/uiActionsRegistrator/__tests__/usableActionItems.test.ts +52 -0
  191. package/uiActionsRegistrator/index.ts +25 -0
  192. package/uiActionsRegistrator/registry.ts +335 -0
  193. package/uiActionsRegistrator/resolveActionIdentifiers.ts +100 -0
  194. package/uiActionsRegistrator/usableActionItems.ts +66 -0
  195. package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
  196. package/zappFrameworkUtils/localStorageHelper.ts +19 -15
  197. package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
  198. package/playerUtils/__tests__/getPlayerActionButtons.test.ts +0 -54
  199. package/playerUtils/getPlayerActionButtons.ts +0 -17
  200. package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
  201. /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
@@ -0,0 +1,113 @@
1
+ import { BehaviorSubject, Observable } from "rxjs";
2
+ import {
3
+ Content,
4
+ MenuItem,
5
+ SelectionBehavior,
6
+ DynamicCollectionOptions,
7
+ } from "./types";
8
+ import { loadItemsFromSource } from "../actionsExecutor/actions/openBottomSheet";
9
+ import { resolveEditableCollection } from "./EditableCollectionRegistry";
10
+ import { EditableCollection } from "./EditableCollection";
11
+
12
+ export interface ContentState {
13
+ items: MenuItem[];
14
+ isLoading: boolean;
15
+ error?: Error | string;
16
+ role?: string;
17
+ behavior?: SelectionBehavior;
18
+ dynamicCollection?: DynamicCollectionOptions;
19
+ themePluginId?: string;
20
+ }
21
+
22
+ export class ContentViewModel {
23
+ private state$: BehaviorSubject<ContentState>;
24
+ readonly itemsUrl?: string;
25
+ public editableCollection: EditableCollection | null = null;
26
+ private content: Content;
27
+
28
+ constructor(content: Content) {
29
+ this.content = content;
30
+ this.itemsUrl = content.itemsUrl;
31
+
32
+ this.state$ = new BehaviorSubject<ContentState>({
33
+ items: content.items || [],
34
+ isLoading: false,
35
+ role: content.role,
36
+ behavior: content.behavior,
37
+ dynamicCollection: content.dynamicCollection,
38
+ themePluginId: content.themePluginId,
39
+ });
40
+
41
+ this.initEditableCollection(content);
42
+
43
+ if (this.itemsUrl && this.state$.value.items.length === 0) {
44
+ this.refetch();
45
+ }
46
+ }
47
+
48
+ private initEditableCollection(content: Content) {
49
+ this.editableCollection = resolveEditableCollection(content, this.refetch);
50
+ }
51
+
52
+ getState = (): ContentState => this.state$.value;
53
+
54
+ get stateObservable(): Observable<ContentState> {
55
+ return this.state$.asObservable();
56
+ }
57
+
58
+ subscribe = (listener: (state: ContentState) => void) => {
59
+ const subscription = this.state$.subscribe(listener);
60
+
61
+ return () => subscription.unsubscribe();
62
+ };
63
+
64
+ private updateState(partialState: Partial<ContentState>) {
65
+ this.state$.next({ ...this.state$.value, ...partialState });
66
+ }
67
+
68
+ refetch = async () => {
69
+ if (!this.itemsUrl) return;
70
+
71
+ this.updateState({ isLoading: true, error: undefined });
72
+
73
+ try {
74
+ const separator = this.itemsUrl.includes("?") ? "&" : "?";
75
+ const cacheBustedUrl = `${this.itemsUrl}${separator}_t=${Date.now()}`;
76
+
77
+ const { items, role, behavior, dynamicCollection } =
78
+ await loadItemsFromSource(cacheBustedUrl);
79
+
80
+ this.content = {
81
+ ...this.content,
82
+ items,
83
+ role,
84
+ behavior,
85
+ dynamicCollection,
86
+ };
87
+
88
+ this.updateState({
89
+ items,
90
+ role,
91
+ behavior,
92
+ dynamicCollection,
93
+ isLoading: false,
94
+ });
95
+
96
+ if (this.editableCollection) {
97
+ // Reuse the existing collection instance. Pushing the freshly loaded
98
+ // server items replaces any optimistic local state with the
99
+ // authoritative result (and rolls forward a successful mutation).
100
+ this.editableCollection.sync?.(items);
101
+ } else {
102
+ // The collection may only become resolvable once options arrive from
103
+ // the feed (e.g. inline content had none). Create it lazily here.
104
+ this.initEditableCollection(this.content);
105
+ }
106
+ } catch (err) {
107
+ this.updateState({
108
+ error: err?.message || "Failed to load",
109
+ isLoading: false,
110
+ });
111
+ }
112
+ };
113
+ }
@@ -0,0 +1,17 @@
1
+ import { Observable } from "rxjs";
2
+ import { MenuItem, Operation } from "./types";
3
+
4
+ export interface EditableCollection {
5
+ items$: Observable<MenuItem[]>;
6
+ operations: Operation[];
7
+ add?(item?: MenuItem): void | Promise<void>;
8
+ remove?(index: number): void | Promise<void>;
9
+ move?(itemIds: string[]): void | Promise<void>;
10
+ deleteCollection?(): void | Promise<void>;
11
+ /**
12
+ * Push authoritative items (e.g. a fresh server feed after a mutation) into
13
+ * the collection, replacing any optimistic local state. Called by the
14
+ * ContentViewModel on refetch so the instance is reused instead of recreated.
15
+ */
16
+ sync?(items: MenuItem[]): void;
17
+ }
@@ -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,235 @@
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
+ if (this.content.context) {
127
+ await actionExecutor.handleAction(
128
+ action as any,
129
+ this.content.context
130
+ );
131
+ } else {
132
+ await actionExecutor.handleAction(action as any);
133
+ }
134
+ }
135
+ } catch (e) {
136
+ actionFailed = true;
137
+ log_error("Add/create collection failed", { error: e });
138
+ this.itemsSubject.next(snapshot);
139
+ } finally {
140
+ this.pendingMutationsCount = Math.max(0, this.pendingMutationsCount - 1);
141
+ }
142
+
143
+ if (!actionFailed) {
144
+ await this.refetch();
145
+ }
146
+ }
147
+
148
+ async deleteCollection(): Promise<void> {
149
+ const items = this.itemsSubject.value;
150
+ const snapshot = [...items];
151
+
152
+ this.pendingMutationsCount++;
153
+ this.itemsSubject.next([]);
154
+
155
+ let actionFailed = false;
156
+
157
+ try {
158
+ const firstItem = items[0];
159
+
160
+ if (firstItem) {
161
+ await this.executeActionAlias(firstItem, [
162
+ "delete_collection",
163
+ "clear_collection",
164
+ ]);
165
+ }
166
+ } catch (e) {
167
+ actionFailed = true;
168
+ log_error("deleteCollection failed, rolling back", { error: e });
169
+ this.itemsSubject.next(snapshot);
170
+ } finally {
171
+ this.pendingMutationsCount = Math.max(0, this.pendingMutationsCount - 1);
172
+ }
173
+
174
+ if (!actionFailed) {
175
+ await this.refetch();
176
+ }
177
+ }
178
+
179
+ private async executeActionAlias(
180
+ item: MenuItem,
181
+ alias: string | string[],
182
+ data?: Record<string, unknown>
183
+ ): Promise<void> {
184
+ const entryActions = item.entryActions || [];
185
+ const aliases = Array.isArray(alias) ? alias : [alias];
186
+
187
+ const actionGroup = entryActions.find(
188
+ (ea) => ea.button?.alias && aliases.includes(ea.button.alias)
189
+ );
190
+
191
+ log_debug("executeActionAlias:", {
192
+ alias,
193
+ itemId: item.id,
194
+ entryActionsCount: entryActions.length,
195
+ availableAliases: entryActions.map((ea) => ea.button?.alias),
196
+ foundActionGroup: !!actionGroup,
197
+ data,
198
+ });
199
+
200
+ if (!actionGroup || !actionGroup.actions) {
201
+ log_warning(`No entry action found for alias "${aliases.join(", ")}"`, {
202
+ itemId: item.id,
203
+ });
204
+
205
+ return;
206
+ }
207
+
208
+ // Execute each action in the group
209
+ for (const action of actionGroup.actions) {
210
+ const actionToExecute = data
211
+ ? {
212
+ ...action,
213
+ options: {
214
+ ...action.options,
215
+ ...data,
216
+ data: {
217
+ ...(action.options?.data || {}),
218
+ ...data,
219
+ },
220
+ },
221
+ }
222
+ : action;
223
+
224
+ log_debug("handling action:", actionToExecute);
225
+
226
+ await actionExecutor.handleAction(
227
+ actionToExecute as any,
228
+ {
229
+ ...this.content.context,
230
+ entry: item as any,
231
+ } as any
232
+ );
233
+ }
234
+ }
235
+ }
@@ -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
+ });