@applicaster/zapp-react-native-utils 16.0.0-rc.81 → 16.0.0-rc.83

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.
@@ -9,7 +9,7 @@ import { ActionExecutionContext, ActionHandler } from "./types";
9
9
  import { batchRemoveAllFromNamespaceForStorage } from "../zappFrameworkUtils/localStorageHelper";
10
10
  import { sessionStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/SessionStorage";
11
11
 
12
- import { useNavigation, useRivers } from "../reactHooks";
12
+ import { useNavigation, usePresentScreen, useRivers } from "../reactHooks";
13
13
  import { useContentTypes } from "@applicaster/zapp-react-native-redux/hooks";
14
14
  import { useSubscriberFor } from "../reactHooks/useSubscriberFor";
15
15
  import { APP_EVENTS } from "../appUtils/events";
@@ -25,6 +25,7 @@ import {
25
25
  localStorageRemoveAction,
26
26
  localStorageSetAction,
27
27
  localStorageToggleFlagAction,
28
+ createPresentScreenAction,
28
29
  openBottomSheetAction,
29
30
  refreshComponentAction,
30
31
  screenSetVariableAction,
@@ -157,6 +158,7 @@ export function withActionExecutor(Component) {
157
158
  const navigator = useNavigation();
158
159
  const rivers = useRivers();
159
160
  const contentTypes = useContentTypes();
161
+ const presentScreen = usePresentScreen();
160
162
 
161
163
  const handlers = useMemo(() => {
162
164
  return {
@@ -191,6 +193,13 @@ export function withActionExecutor(Component) {
191
193
  );
192
194
  }, [navigator, rivers, contentTypes]);
193
195
 
196
+ useEffect(() => {
197
+ return _actionExecutor.registerAction(
198
+ ACTION_TYPES.PRESENT_SCREEN,
199
+ createPresentScreenAction(presentScreen)
200
+ );
201
+ }, [presentScreen]);
202
+
194
203
  useEffect(() => {
195
204
  return _actionExecutor.registerAction(
196
205
  ACTION_TYPES.GO_BACK,
@@ -0,0 +1,127 @@
1
+ import { createPresentScreenAction } from "../presentScreen";
2
+ import { ActionResult } from "../../ActionExecutor";
3
+
4
+ const contextEntry = { id: "context-entry" } as any;
5
+
6
+ const succeeded = { success: true, cancelled: false };
7
+
8
+ const cancelled = { success: false, cancelled: true };
9
+
10
+ describe("presentScreenAction", () => {
11
+ let presentScreen: jest.Mock;
12
+ let presentScreenAction: ReturnType<typeof createPresentScreenAction>;
13
+
14
+ beforeEach(() => {
15
+ presentScreen = jest.fn().mockResolvedValue(succeeded);
16
+ presentScreenAction = createPresentScreenAction(presentScreen);
17
+ });
18
+
19
+ it("presents the screen named by typeMapping", async () => {
20
+ await presentScreenAction({
21
+ type: "presentScreen",
22
+ options: { typeMapping: "parent_lock" },
23
+ });
24
+
25
+ expect(presentScreen).toHaveBeenCalledWith({
26
+ typeMapping: "parent_lock",
27
+ entry: undefined,
28
+ });
29
+ });
30
+
31
+ it("fails without presenting anything when typeMapping is missing", async () => {
32
+ const result = await presentScreenAction({
33
+ type: "presentScreen",
34
+ options: {},
35
+ });
36
+
37
+ expect(result).toBe(ActionResult.Error);
38
+ expect(presentScreen).not.toHaveBeenCalled();
39
+ });
40
+
41
+ it("resolves the '@{entry/}' token to the entry from the execution context", async () => {
42
+ await presentScreenAction(
43
+ {
44
+ type: "presentScreen",
45
+ options: { typeMapping: "parent_lock", entry: "@{entry/}" },
46
+ },
47
+ { entry: contextEntry }
48
+ );
49
+
50
+ expect(presentScreen).toHaveBeenCalledWith({
51
+ typeMapping: "parent_lock",
52
+ entry: contextEntry,
53
+ });
54
+ });
55
+
56
+ it("presents an entry supplied inline in the options", async () => {
57
+ const inlineEntry = { id: "inline-entry" } as any;
58
+
59
+ await presentScreenAction({
60
+ type: "presentScreen",
61
+ options: { typeMapping: "parent_lock", entry: inlineEntry },
62
+ });
63
+
64
+ expect(presentScreen).toHaveBeenCalledWith({
65
+ typeMapping: "parent_lock",
66
+ entry: inlineEntry,
67
+ });
68
+ });
69
+
70
+ it("fails without presenting anything when the entry option is not an object", async () => {
71
+ const result = await presentScreenAction({
72
+ type: "presentScreen",
73
+ options: { typeMapping: "parent_lock", entry: "not-an-entry" as any },
74
+ });
75
+
76
+ expect(result).toBe(ActionResult.Error);
77
+ expect(presentScreen).not.toHaveBeenCalled();
78
+ });
79
+
80
+ it("succeeds when the presented screen reports success", async () => {
81
+ presentScreen.mockResolvedValue(succeeded);
82
+
83
+ const result = await presentScreenAction({
84
+ type: "presentScreen",
85
+ options: { typeMapping: "parent_lock" },
86
+ });
87
+
88
+ expect(result).toBe(ActionResult.Success);
89
+ });
90
+
91
+ it("cancels the action chain when the presented screen is cancelled", async () => {
92
+ presentScreen.mockResolvedValue(cancelled);
93
+
94
+ const result = await presentScreenAction({
95
+ type: "presentScreen",
96
+ options: { typeMapping: "parent_lock" },
97
+ });
98
+
99
+ expect(result).toBe(ActionResult.Cancel);
100
+ });
101
+
102
+ it("cancels the action chain when the presented screen reports failure", async () => {
103
+ presentScreen.mockResolvedValue({ success: false, cancelled: false });
104
+
105
+ const result = await presentScreenAction({
106
+ type: "presentScreen",
107
+ options: { typeMapping: "parent_lock" },
108
+ });
109
+
110
+ expect(result).toBe(ActionResult.Cancel);
111
+ });
112
+
113
+ it("errors when the screen could not be presented at all", async () => {
114
+ presentScreen.mockResolvedValue({
115
+ success: false,
116
+ cancelled: false,
117
+ error: "can not resolve screen type mapping: parent_lock",
118
+ });
119
+
120
+ const result = await presentScreenAction({
121
+ type: "presentScreen",
122
+ options: { typeMapping: "parent_lock" },
123
+ });
124
+
125
+ expect(result).toBe(ActionResult.Error);
126
+ });
127
+ });
@@ -27,6 +27,8 @@ export { screenToggleFlagAction } from "./screenToggleFlag";
27
27
 
28
28
  export { createNavigateToScreenAction } from "./navigateToScreen";
29
29
 
30
+ export { createPresentScreenAction } from "./presentScreen";
31
+
30
32
  export { createGoBackAction } from "./goBack";
31
33
 
32
34
  export { createGoHomeAction } from "./goHome";
@@ -0,0 +1,78 @@
1
+ /// <reference types="@applicaster/applicaster-types" />
2
+ import { ActionResult } from "../ActionExecutor";
3
+ import { ActionHandler, ActionExecutionContext } from "../types";
4
+ import type { PresentScreenFn } from "../../reactHooks/navigation/usePresentScreen";
5
+ import { createLogger } from "../../logger";
6
+
7
+ const { log_error } = createLogger({
8
+ subsystem: "ActionExecutorContext",
9
+ category: "General",
10
+ });
11
+
12
+ /**
13
+ * Options for the presentScreen action.
14
+ */
15
+ export interface PresentScreenOptions {
16
+ /** The screen type to present (from content types mapping) */
17
+ typeMapping: string;
18
+
19
+ /**
20
+ * Entry to present the screen with. Can be:
21
+ * - "@{entry/}" to use the context entry
22
+ * - A ZappEntry object
23
+ * - undefined to present the screen without an entry
24
+ */
25
+ entry?: "@{entry/}" | ZappEntry;
26
+ }
27
+
28
+ /**
29
+ * Creates a present-screen action handler with the provided dependencies.
30
+ *
31
+ * Unlike navigateToScreen, this action does not return until the presented
32
+ * screen reports a result, so a screen that gates the flow (a parental lock,
33
+ * for example) can stop the remaining actions by being cancelled.
34
+ *
35
+ * @param presentScreen - Presents a screen as a modal and resolves with its result
36
+ * @returns An action handler that presents a screen and awaits its outcome
37
+ */
38
+ export function createPresentScreenAction(
39
+ presentScreen: PresentScreenFn
40
+ ): ActionHandler<PresentScreenOptions> {
41
+ return async function presentScreenAction(
42
+ action,
43
+ context?: ActionExecutionContext
44
+ ): Promise<ActionResult> {
45
+ const typeMapping = action.options?.typeMapping;
46
+
47
+ if (!typeMapping) {
48
+ log_error("presentScreen: typeMapping option is missing");
49
+
50
+ return ActionResult.Error;
51
+ }
52
+
53
+ const entrySource = action.options?.entry;
54
+
55
+ const entry = entrySource
56
+ ? entrySource === "@{entry/}"
57
+ ? context?.entry
58
+ : entrySource
59
+ : undefined;
60
+
61
+ if (entry && typeof entry !== "object") {
62
+ log_error(
63
+ `presentScreen: entry option is not an object, entry: ${entry}`
64
+ );
65
+
66
+ return ActionResult.Error;
67
+ }
68
+
69
+ const result = await presentScreen({ typeMapping, entry });
70
+
71
+ if (result.error) {
72
+ return ActionResult.Error;
73
+ }
74
+
75
+ // Anything short of success stops the remaining actions in the chain.
76
+ return result.success ? ActionResult.Success : ActionResult.Cancel;
77
+ };
78
+ }
@@ -9,6 +9,7 @@ export const ACTION_TYPES = {
9
9
  PRESENT_SUB_MENU: "presentSubMenu",
10
10
  SEND_CLOUD_EVENT: "sendCloudEvent",
11
11
  NAVIGATE_TO_SCREEN: "navigateToScreen",
12
+ PRESENT_SCREEN: "presentScreen",
12
13
  GO_BACK: "goBack",
13
14
  GO_HOME: "goHome",
14
15
  SHOW_TOAST: "showToast",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-utils",
3
- "version": "16.0.0-rc.81",
3
+ "version": "16.0.0-rc.83",
4
4
  "description": "Applicaster Zapp React Native utilities package",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "homepage": "https://github.com/applicaster/quickbrick#readme",
29
29
  "dependencies": {
30
- "@applicaster/applicaster-types": "16.0.0-rc.81",
30
+ "@applicaster/applicaster-types": "16.0.0-rc.83",
31
31
  "buffer": "^5.2.1",
32
32
  "camelize": "^1.0.0",
33
33
  "dayjs": "^1.11.10",
@@ -7,6 +7,7 @@ import configureMockStore from "redux-mock-store";
7
7
  import { NavigationContext } from "@applicaster/zapp-react-native-ui-components/Contexts/NavigationContext";
8
8
  import { ROUTE_TYPES } from "@applicaster/zapp-react-native-utils/navigationUtils/routeTypes";
9
9
  import { ScreenDataContext } from "@applicaster/zapp-react-native-ui-components/Contexts/ScreenDataContext";
10
+ import { modalStore } from "@applicaster/zapp-react-native-utils/modalState";
10
11
 
11
12
  const plugins = [];
12
13
 
@@ -156,6 +157,20 @@ const videoModalWrapper = ({ children }) => (
156
157
  </Provider>
157
158
  );
158
159
 
160
+ const modalEntry = { id: "modal-entry-1", type: { value: "video" } };
161
+
162
+ const modalPathname = `${ROUTE_TYPES.MODAL}/${rivers["river-general"].id}`;
163
+
164
+ const modalWrapper = ({ children }) => (
165
+ <Provider store={store}>
166
+ <NavigationContext.Provider value={mainStackNavigator}>
167
+ <PathnameContext.Provider value={modalPathname}>
168
+ {children}
169
+ </PathnameContext.Provider>
170
+ </NavigationContext.Provider>
171
+ </Provider>
172
+ );
173
+
159
174
  const hookModalWrapper = ({ children }) => (
160
175
  <Provider store={store}>
161
176
  <NavigationContext.Provider value={hookModalNavigator}>
@@ -188,6 +203,39 @@ describe("navigation", () => {
188
203
  });
189
204
  });
190
205
 
206
+ describe("Modal components", () => {
207
+ beforeEach(() => {
208
+ modalStore.getState().openModal({
209
+ item: rivers["river-general"] as any,
210
+ props: { entry: modalEntry },
211
+ });
212
+ });
213
+
214
+ afterEach(() => {
215
+ modalStore.getState().dismissModal();
216
+ });
217
+
218
+ it("should return a correct pathname", () => {
219
+ const { result } = renderHook(() => useRoute(), {
220
+ wrapper: modalWrapper,
221
+ });
222
+
223
+ expect(result.current.pathname).toEqual(modalPathname);
224
+ });
225
+
226
+ it("should return correct screenData information", () => {
227
+ const { result } = renderHook(() => useRoute(), {
228
+ wrapper: modalWrapper,
229
+ });
230
+
231
+ expect(result.current.screenData.id).toEqual(modalEntry.id);
232
+
233
+ expect(result.current.screenData.targetScreen.id).toEqual(
234
+ rivers["river-general"].id
235
+ );
236
+ });
237
+ });
238
+
191
239
  describe("Hook modal components", () => {
192
240
  it("should return a correct pathname", () => {
193
241
  const { result } = renderHook(() => useRoute(), {
@@ -0,0 +1,154 @@
1
+ import { modalStore } from "../../../modalState";
2
+ import { isWeb } from "../../../reactUtils";
3
+ import { presentScreen } from "../usePresentScreen";
4
+
5
+ jest.mock("../../../reactUtils", () => ({
6
+ ...jest.requireActual("../../../reactUtils"),
7
+ isWeb: jest.fn(() => false),
8
+ }));
9
+
10
+ const river = { id: "river-parent-lock", type: "parent_lock" } as any;
11
+
12
+ const rivers = { "river-parent-lock": river };
13
+
14
+ const contentTypes = { parent_lock: { screen_id: "river-parent-lock" } };
15
+
16
+ const present = (args = {}) =>
17
+ presentScreen({ typeMapping: "parent_lock", rivers, contentTypes, ...args });
18
+
19
+ const modalState = () => modalStore.getState().modalState;
20
+
21
+ const screenCallback = () => modalState().props?.resultCallback as hookCallback;
22
+
23
+ describe("presentScreen", () => {
24
+ beforeEach(() => {
25
+ jest.clearAllMocks();
26
+ (isWeb as jest.Mock).mockReturnValue(false);
27
+ modalStore.getState().dismissModal();
28
+ });
29
+
30
+ it("opens a modal with the river resolved from typeMapping", () => {
31
+ void present();
32
+
33
+ expect(modalState().visible).toBe(true);
34
+ expect(modalState().screen).toBe(river);
35
+ });
36
+
37
+ it("resolves with success when the presented screen reports success", async () => {
38
+ const result = present();
39
+
40
+ screenCallback()({ success: true, payload: { verified: true } });
41
+
42
+ await expect(result).resolves.toMatchObject({
43
+ success: true,
44
+ cancelled: false,
45
+ payload: { verified: true },
46
+ });
47
+ });
48
+
49
+ it("dismisses the modal once the presented screen reports a result", async () => {
50
+ const result = present();
51
+
52
+ screenCallback()({ success: true, payload: {} });
53
+ await result;
54
+
55
+ expect(modalState().visible).toBe(false);
56
+ });
57
+
58
+ it("resolves as cancelled when the modal is dismissed without a result", async () => {
59
+ const result = present();
60
+
61
+ // What the hardware back button does: RN Modal's onRequestClose resets modal state.
62
+ modalStore.getState().dismissModal();
63
+
64
+ await expect(result).resolves.toMatchObject({
65
+ success: false,
66
+ cancelled: true,
67
+ });
68
+ });
69
+
70
+ it("resolves as cancelled when the presented screen reports cancellation", async () => {
71
+ const result = present();
72
+
73
+ screenCallback()({ success: false, payload: {}, cancelled: true });
74
+
75
+ await expect(result).resolves.toMatchObject({
76
+ success: false,
77
+ cancelled: true,
78
+ });
79
+ });
80
+
81
+ it("resolves as cancelled when another modal replaces the presented screen", async () => {
82
+ const result = present();
83
+
84
+ modalStore.getState().openModal({ item: { id: "other-modal" } as any });
85
+
86
+ await expect(result).resolves.toMatchObject({ cancelled: true });
87
+ });
88
+
89
+ it("leaves the modal that replaced the presented screen open", async () => {
90
+ const result = present();
91
+ const other = { id: "other-modal" } as any;
92
+
93
+ modalStore.getState().openModal({ item: other });
94
+ await result;
95
+
96
+ expect(modalState().screen).toBe(other);
97
+ expect(modalState().visible).toBe(true);
98
+ });
99
+
100
+ it("ignores a result reported after the modal was already cancelled", async () => {
101
+ const result = present();
102
+ const callback = screenCallback();
103
+
104
+ modalStore.getState().dismissModal();
105
+ callback({ success: true, payload: {} });
106
+
107
+ await expect(result).resolves.toMatchObject({
108
+ success: false,
109
+ cancelled: true,
110
+ });
111
+ });
112
+
113
+ it("hands the entry to the ModalProvider so it reaches ScreenDataContext", () => {
114
+ const entry = { id: "entry-1", type: { value: "video" } } as any;
115
+
116
+ void present({ entry });
117
+
118
+ expect(modalState().props?.entry).toBe(entry);
119
+ });
120
+
121
+ it("omits the entry when the screen is presented without one", () => {
122
+ void present();
123
+
124
+ expect(modalState().props).not.toHaveProperty("entry");
125
+ });
126
+
127
+ it("fails without opening a modal when typeMapping has no content type", async () => {
128
+ const result = await present({ typeMapping: "unmapped" });
129
+
130
+ expect(result).toMatchObject({ success: false, cancelled: false });
131
+ expect(result.error).toEqual(expect.any(String));
132
+ expect(modalState().visible).toBe(false);
133
+ });
134
+
135
+ it("fails without opening a modal when the content type resolves to a missing river", async () => {
136
+ const result = await present({
137
+ contentTypes: { parent_lock: { screen_id: "gone" } },
138
+ });
139
+
140
+ expect(result).toMatchObject({ success: false, cancelled: false });
141
+ expect(result.error).toEqual(expect.any(String));
142
+ expect(modalState().visible).toBe(false);
143
+ });
144
+
145
+ it("fails without opening a modal on web, where no modal host exists", async () => {
146
+ (isWeb as jest.Mock).mockReturnValue(true);
147
+
148
+ const result = await present();
149
+
150
+ expect(result).toMatchObject({ success: false, cancelled: false });
151
+ expect(result.error).toEqual(expect.any(String));
152
+ expect(modalState().visible).toBe(false);
153
+ });
154
+ });
@@ -22,6 +22,8 @@ import { useLayoutVersion } from "../layout";
22
22
 
23
23
  export { useNavigation } from "./useNavigation";
24
24
 
25
+ export { usePresentScreen, presentScreen } from "./usePresentScreen";
26
+
25
27
  export { useRoute } from "./useRoute";
26
28
 
27
29
  export { usePathname } from "./usePathname";
@@ -0,0 +1,157 @@
1
+ /// <reference types="@applicaster/applicaster-types" />
2
+ import { useCallback } from "react";
3
+
4
+ import { useContentTypes } from "@applicaster/zapp-react-native-redux/hooks";
5
+
6
+ import { modalStore } from "../../modalState";
7
+ import { isWeb } from "../../reactUtils";
8
+ import { createLogger } from "../../logger";
9
+ import { useRivers } from "../state";
10
+
11
+ const { log_error, log_info } = createLogger({
12
+ subsystem: "usePresentScreen",
13
+ category: "General",
14
+ });
15
+
16
+ export interface PresentScreenArgs {
17
+ /** The screen type to present (from content types mapping) */
18
+ typeMapping: string;
19
+
20
+ /** Entry to present the screen with. Omit to present the screen on its own. */
21
+ entry?: ZappEntry;
22
+ }
23
+
24
+ export interface PresentScreenResult {
25
+ /** The presented screen completed successfully */
26
+ success: boolean;
27
+
28
+ /** The presented screen was dismissed without completing (e.g. the back button) */
29
+ cancelled: boolean;
30
+
31
+ /** Set when the screen could not be presented at all */
32
+ error?: string;
33
+
34
+ /** Whatever the presented screen reported back */
35
+ payload?: unknown;
36
+ }
37
+
38
+ export type PresentScreenFn = (
39
+ args: PresentScreenArgs
40
+ ) => Promise<PresentScreenResult>;
41
+
42
+ interface Dependencies {
43
+ rivers: Record<string, ZappRiver>;
44
+ contentTypes: ZappContentTypes;
45
+ }
46
+
47
+ const failure = (error: string): Promise<PresentScreenResult> => {
48
+ log_error(`presentScreen: ${error}`);
49
+
50
+ return Promise.resolve({ success: false, cancelled: false, error });
51
+ };
52
+
53
+ /**
54
+ * Presents a screen as a modal and resolves once that screen reports a result
55
+ * or is dismissed.
56
+ *
57
+ * The screen is rendered by the ModalProvider through the regular ScreenResolver,
58
+ * so it receives the `resultCallback` we pass here as its `callback` prop — the
59
+ * same channel hook screens already use to report success and cancellation.
60
+ */
61
+ export const presentScreen = ({
62
+ typeMapping,
63
+ entry,
64
+ rivers,
65
+ contentTypes,
66
+ }: PresentScreenArgs & Dependencies): Promise<PresentScreenResult> => {
67
+ if (!typeMapping) {
68
+ return failure("typeMapping option is missing");
69
+ }
70
+
71
+ // The web ModalProvider renders nothing, so no result could ever arrive and
72
+ // awaiting one would stall the caller indefinitely.
73
+ if (isWeb()) {
74
+ return failure("screens can not be presented as modals on web");
75
+ }
76
+
77
+ const screenId = contentTypes?.[typeMapping]?.screen_id;
78
+
79
+ if (!screenId) {
80
+ return failure(`can not resolve screen type mapping: ${typeMapping}`);
81
+ }
82
+
83
+ const river = rivers?.[screenId];
84
+
85
+ if (!river) {
86
+ return failure(`can not resolve river for screen id: ${screenId}`);
87
+ }
88
+
89
+ return new Promise<PresentScreenResult>((resolve) => {
90
+ let settled = false;
91
+ let unsubscribe: () => void = () => {};
92
+
93
+ const settle = (result: PresentScreenResult) => {
94
+ if (settled) {
95
+ return;
96
+ }
97
+
98
+ settled = true;
99
+ unsubscribe();
100
+ resolve(result);
101
+ };
102
+
103
+ const resultCallback = ({
104
+ success,
105
+ cancelled,
106
+ payload,
107
+ }: hookCallbackArgs) =>
108
+ settle({ success: !!success, cancelled: !!cancelled, payload });
109
+
110
+ const props: Record<string, unknown> = { resultCallback };
111
+
112
+ if (entry) {
113
+ // The ModalProvider turns this into the screen's ScreenDataContext and
114
+ // screenData, so the presented screen reads the entry exactly as it
115
+ // would when navigated to.
116
+ props.entry = entry;
117
+ }
118
+
119
+ log_info(
120
+ `presentScreen: presenting screen type: ${typeMapping}${
121
+ entry ? ` with entry id: ${entry.id}` : ""
122
+ }`
123
+ );
124
+
125
+ modalStore.getState().openModal({ item: river, props });
126
+
127
+ // Covers every dismissal we do not initiate ourselves: the hardware back
128
+ // button (via the Modal's onRequestClose), a swipe dismiss, another modal
129
+ // taking our slot, or dismissModal() called from anywhere else.
130
+ unsubscribe = modalStore.subscribe(({ modalState }) => {
131
+ if (!modalState.visible || modalState.screen !== river) {
132
+ settle({ success: false, cancelled: true });
133
+ }
134
+ });
135
+ }).then((result) => {
136
+ // Only take down our own modal — by now something else may already own the slot.
137
+ if (modalStore.getState().modalState.screen === river) {
138
+ modalStore.getState().dismissModal();
139
+ }
140
+
141
+ return result;
142
+ });
143
+ };
144
+
145
+ /**
146
+ * @returns a function presenting a screen as a modal, resolving with its result.
147
+ */
148
+ export const usePresentScreen = (): PresentScreenFn => {
149
+ const rivers = useRivers();
150
+ const contentTypes = useContentTypes();
151
+
152
+ return useCallback(
153
+ (args: PresentScreenArgs) =>
154
+ presentScreen({ ...args, rivers, contentTypes }),
155
+ [rivers, contentTypes]
156
+ );
157
+ };
@@ -80,7 +80,20 @@ export const useRoute = (
80
80
  // if path is hook grab screenData from screenData
81
81
 
82
82
  if (isModalPathname(pathname)) {
83
- const screenData = modalScreenData ?? ({} as ZappEntry);
83
+ if (!modalScreenData) {
84
+ return { screenData: {} as ZappEntry, pathname };
85
+ }
86
+
87
+ // Mirror the pushed-screen shape ({ ...entry, targetScreen }) so a screen
88
+ // presented as a modal reads its entry the same way it would when
89
+ // navigated to, instead of only seeing the bare river.
90
+ const screenData = legacyScreenData(
91
+ {
92
+ screen: modalScreenData,
93
+ entry: modalState.props?.entry as NavigatorEntry,
94
+ },
95
+ plugins
96
+ );
84
97
 
85
98
  return { screenData, pathname };
86
99
  }