@applicaster/zapp-react-native-utils 14.0.1-rc.0 → 14.0.1

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.
@@ -0,0 +1,360 @@
1
+ jest.mock("../../../logger", () => {
2
+ const mockLogError = jest.fn();
3
+
4
+ return {
5
+ createLogger: jest.fn(() => ({
6
+ log_error: mockLogError,
7
+ })),
8
+ __mockLogError: mockLogError, // Export for test access
9
+ };
10
+ });
11
+
12
+ import { calculateReadingTime } from "../utils";
13
+ // @ts-ignore - Access the mock
14
+ import { __mockLogError } from "../../../logger";
15
+
16
+ describe("calculateReadingTime", () => {
17
+ // Default parameters for reference
18
+ const DEFAULT_WPM = 140;
19
+ const DEFAULT_MIN_PAUSE = 500;
20
+ const DEFAULT_DELAY = 700;
21
+
22
+ beforeEach(() => {
23
+ (__mockLogError as jest.Mock).mockClear();
24
+ });
25
+
26
+ describe("Type Safety", () => {
27
+ it("should accept and process string input", () => {
28
+ const result = calculateReadingTime("Hello world");
29
+ expect(result).toBeGreaterThan(0);
30
+ expect(__mockLogError).not.toHaveBeenCalled();
31
+ });
32
+
33
+ it("should accept and process number input", () => {
34
+ const result = calculateReadingTime(12345);
35
+ expect(result).toBeGreaterThan(0);
36
+ expect(__mockLogError).not.toHaveBeenCalled();
37
+ });
38
+
39
+ it("should return 0 and log error for null", () => {
40
+ expect(calculateReadingTime(null as any)).toBe(0);
41
+
42
+ expect(__mockLogError).toHaveBeenCalledWith(
43
+ "Invalid text input for reading time calculation got: null"
44
+ );
45
+ });
46
+
47
+ it("should return 0 and log error for undefined", () => {
48
+ expect(calculateReadingTime(undefined as any)).toBe(0);
49
+
50
+ expect(__mockLogError).toHaveBeenCalledWith(
51
+ "Invalid text input for reading time calculation got: undefined"
52
+ );
53
+ });
54
+
55
+ it("should return 0 and log error for boolean", () => {
56
+ calculateReadingTime(true as any);
57
+
58
+ expect(__mockLogError).toHaveBeenCalledWith(
59
+ "Invalid text input for reading time calculation got: true"
60
+ );
61
+
62
+ (__mockLogError as jest.Mock).mockClear();
63
+
64
+ calculateReadingTime(false as any);
65
+
66
+ expect(__mockLogError).toHaveBeenCalledWith(
67
+ "Invalid text input for reading time calculation got: false"
68
+ );
69
+ });
70
+
71
+ it("should return 0 and log error for object", () => {
72
+ const obj = { text: "hello" };
73
+ calculateReadingTime(obj as any);
74
+
75
+ expect(__mockLogError).toHaveBeenCalledWith(
76
+ `Invalid text input for reading time calculation got: ${obj}`
77
+ );
78
+ });
79
+
80
+ it("should return 0 and log error for array", () => {
81
+ const arr = [1, 2, 3];
82
+ calculateReadingTime(arr as any);
83
+
84
+ expect(__mockLogError).toHaveBeenCalledWith(
85
+ `Invalid text input for reading time calculation got: ${arr}`
86
+ );
87
+ });
88
+
89
+ it("should return 0 and log error for function", () => {
90
+ const fn = () => "text";
91
+ calculateReadingTime(fn as any);
92
+ expect(__mockLogError).toHaveBeenCalled();
93
+
94
+ expect((__mockLogError as jest.Mock).mock.calls[0][0]).toContain(
95
+ "Invalid text input for reading time calculation got:"
96
+ );
97
+ });
98
+
99
+ it("should return 0 and log error for symbol", () => {
100
+ const sym = Symbol("test");
101
+ calculateReadingTime(sym as any);
102
+ expect(__mockLogError).toHaveBeenCalled();
103
+
104
+ expect((__mockLogError as jest.Mock).mock.calls[0][0]).toBe(
105
+ `Invalid text input for reading time calculation got: ${String(sym)}`
106
+ );
107
+ });
108
+ });
109
+
110
+ describe("Empty and Whitespace Handling", () => {
111
+ it("should return 0 for empty string", () => {
112
+ expect(calculateReadingTime("")).toBe(0);
113
+ });
114
+
115
+ it("should return 0 for whitespace-only string", () => {
116
+ expect(calculateReadingTime(" ")).toBe(0);
117
+ expect(calculateReadingTime("\n")).toBe(0);
118
+ expect(calculateReadingTime("\t")).toBe(0);
119
+ expect(calculateReadingTime(" \n\t ")).toBe(0);
120
+ });
121
+
122
+ it("should handle leading and trailing whitespace", () => {
123
+ const withWhitespace = calculateReadingTime(" hello ");
124
+ const withoutWhitespace = calculateReadingTime("hello");
125
+ expect(withWhitespace).toBe(withoutWhitespace);
126
+ });
127
+ });
128
+
129
+ describe("Number Input Handling", () => {
130
+ it("should convert number 0 to string and process", () => {
131
+ const result = calculateReadingTime(0);
132
+ // "0" is one word
133
+ expect(result).toBeGreaterThan(0);
134
+ });
135
+
136
+ it("should convert positive numbers to string", () => {
137
+ const result = calculateReadingTime(123);
138
+ // "123" is one word
139
+ expect(result).toBeGreaterThan(0);
140
+ });
141
+
142
+ it("should convert negative numbers to string", () => {
143
+ const result = calculateReadingTime(-456);
144
+ // "-456" is processed as words
145
+ expect(result).toBeGreaterThan(0);
146
+ });
147
+
148
+ it("should convert decimal numbers to string", () => {
149
+ const result = calculateReadingTime(3.14);
150
+ // "3.14" is processed as words
151
+ expect(result).toBeGreaterThan(0);
152
+ });
153
+
154
+ it("should handle NaN", () => {
155
+ const result = calculateReadingTime(NaN);
156
+ // NaN is typeof "number", so it converts to "NaN" string
157
+ expect(result).toBeGreaterThan(0);
158
+ });
159
+
160
+ it("should handle Infinity", () => {
161
+ const result = calculateReadingTime(Infinity);
162
+ // Infinity is typeof "number", converts to "Infinity" string
163
+ expect(result).toBeGreaterThan(0);
164
+ });
165
+ });
166
+
167
+ describe("Word Counting", () => {
168
+ it("should count single word", () => {
169
+ const result = calculateReadingTime("Hello");
170
+
171
+ const expectedTime = Math.max(
172
+ DEFAULT_MIN_PAUSE,
173
+ (1 / DEFAULT_WPM) * 60 * 1000
174
+ );
175
+
176
+ expect(result).toBe(expectedTime + DEFAULT_DELAY);
177
+ });
178
+
179
+ it("should count multiple words separated by spaces", () => {
180
+ const result = calculateReadingTime("Hello world test");
181
+
182
+ // 3 words
183
+ const expectedTime = Math.max(
184
+ DEFAULT_MIN_PAUSE,
185
+ (3 / DEFAULT_WPM) * 60 * 1000
186
+ );
187
+
188
+ expect(result).toBe(expectedTime + DEFAULT_DELAY);
189
+ });
190
+
191
+ it("should handle words with punctuation", () => {
192
+ const result = calculateReadingTime("Hello, world! How are you?");
193
+ // Should split on punctuation and count words
194
+ expect(result).toBeGreaterThan(DEFAULT_MIN_PAUSE + DEFAULT_DELAY);
195
+ });
196
+
197
+ it("should handle alphanumeric boundaries", () => {
198
+ const result = calculateReadingTime("test123abc");
199
+ // Should split on alphanumeric boundaries
200
+ expect(result).toBeGreaterThan(DEFAULT_MIN_PAUSE + DEFAULT_DELAY);
201
+ });
202
+
203
+ it("should handle long text", () => {
204
+ const longText = "word ".repeat(200); // 200 words
205
+ const result = calculateReadingTime(longText);
206
+ const expectedTime = (200 / DEFAULT_WPM) * 60 * 1000 + DEFAULT_DELAY;
207
+ expect(result).toBeCloseTo(expectedTime, -1); // Within 10ms
208
+ });
209
+ });
210
+
211
+ describe("Minimum Pause", () => {
212
+ it("should return minimum pause + delay for very short text", () => {
213
+ const result = calculateReadingTime("Hi");
214
+ // 1 word, calculation would be less than minimum pause
215
+ expect(result).toBe(DEFAULT_MIN_PAUSE + DEFAULT_DELAY);
216
+ });
217
+
218
+ it("should respect custom minimum pause", () => {
219
+ const customMinPause = 1000;
220
+ const result = calculateReadingTime("Hi", DEFAULT_WPM, customMinPause);
221
+ expect(result).toBeGreaterThanOrEqual(customMinPause);
222
+ });
223
+
224
+ it("should exceed minimum pause for longer text", () => {
225
+ const longText = "word ".repeat(50); // 50 words
226
+ const result = calculateReadingTime(longText);
227
+ const calculatedTime = (50 / DEFAULT_WPM) * 60 * 1000;
228
+ expect(result).toBe(calculatedTime + DEFAULT_DELAY);
229
+ expect(result).toBeGreaterThan(DEFAULT_MIN_PAUSE + DEFAULT_DELAY);
230
+ });
231
+ });
232
+
233
+ describe("Custom Parameters", () => {
234
+ it("should respect custom words per minute", () => {
235
+ const text = "word ".repeat(140); // 140 words
236
+ const fastReading = calculateReadingTime(text, 280); // 2x speed
237
+ const normalReading = calculateReadingTime(text, 140); // normal speed
238
+
239
+ // Faster reading should take less time
240
+ expect(fastReading).toBeLessThan(normalReading);
241
+ });
242
+
243
+ it("should respect custom announcement delay", () => {
244
+ const text = "Hello world";
245
+
246
+ const shortDelay = calculateReadingTime(
247
+ text,
248
+ DEFAULT_WPM,
249
+ DEFAULT_MIN_PAUSE,
250
+ 100
251
+ );
252
+
253
+ const longDelay = calculateReadingTime(
254
+ text,
255
+ DEFAULT_WPM,
256
+ DEFAULT_MIN_PAUSE,
257
+ 1000
258
+ );
259
+
260
+ expect(longDelay - shortDelay).toBe(900);
261
+ });
262
+
263
+ it("should work with all custom parameters", () => {
264
+ const result = calculateReadingTime("test", 200, 1000, 500);
265
+ expect(result).toBeGreaterThanOrEqual(1500); // minimum pause + delay
266
+ });
267
+ });
268
+
269
+ describe("Real-world Use Cases", () => {
270
+ it("should handle accessibility announcement text", () => {
271
+ const announcement = "New message from John Doe";
272
+ const result = calculateReadingTime(announcement);
273
+ expect(result).toBeGreaterThan(0);
274
+ expect(result).toBeLessThan(10000); // Less than 10 seconds
275
+ });
276
+
277
+ it("should handle button labels", () => {
278
+ const label = "Submit";
279
+ const result = calculateReadingTime(label);
280
+ expect(result).toBe(DEFAULT_MIN_PAUSE + DEFAULT_DELAY);
281
+ });
282
+
283
+ it("should handle form error messages", () => {
284
+ const error = "Please enter a valid email address";
285
+ const result = calculateReadingTime(error);
286
+ expect(result).toBeGreaterThan(DEFAULT_MIN_PAUSE);
287
+ });
288
+
289
+ it("should handle article titles", () => {
290
+ const title = "Breaking News: Major Update Released";
291
+ const result = calculateReadingTime(title);
292
+ expect(result).toBeGreaterThan(DEFAULT_MIN_PAUSE + DEFAULT_DELAY);
293
+ });
294
+
295
+ it("should handle notification text", () => {
296
+ const notification = "You have 3 new messages";
297
+ const result = calculateReadingTime(notification);
298
+ expect(result).toBeGreaterThan(0);
299
+ });
300
+ });
301
+
302
+ describe("Edge Cases", () => {
303
+ it("should handle text with special characters", () => {
304
+ const result = calculateReadingTime("@#$%^&*()");
305
+ expect(result).toBeGreaterThanOrEqual(0);
306
+ });
307
+
308
+ it("should handle text with emojis", () => {
309
+ const result = calculateReadingTime("Hello 👋 World 🌍");
310
+ expect(result).toBeGreaterThan(0);
311
+ });
312
+
313
+ it("should handle text with newlines", () => {
314
+ const result = calculateReadingTime("Line 1\nLine 2\nLine 3");
315
+ expect(result).toBeGreaterThan(0);
316
+ });
317
+
318
+ it("should handle mixed alphanumeric text", () => {
319
+ const result = calculateReadingTime(
320
+ "Version 1.2.3 released on 2024-01-01"
321
+ );
322
+
323
+ expect(result).toBeGreaterThan(0);
324
+ });
325
+
326
+ it("should handle very large numbers", () => {
327
+ const result = calculateReadingTime(Number.MAX_SAFE_INTEGER);
328
+ expect(result).toBeGreaterThan(0);
329
+ });
330
+
331
+ it("should return consistent results for same input", () => {
332
+ const text = "Consistent test";
333
+ const result1 = calculateReadingTime(text);
334
+ const result2 = calculateReadingTime(text);
335
+ const result3 = calculateReadingTime(text);
336
+
337
+ expect(result1).toBe(result2);
338
+ expect(result2).toBe(result3);
339
+ });
340
+ });
341
+
342
+ describe("Performance Characteristics", () => {
343
+ it("should handle empty input efficiently", () => {
344
+ const start = Date.now();
345
+ calculateReadingTime("");
346
+ const duration = Date.now() - start;
347
+
348
+ expect(duration).toBeLessThan(10); // Should be nearly instant
349
+ });
350
+
351
+ it("should handle large text efficiently", () => {
352
+ const largeText = "word ".repeat(10000);
353
+ const start = Date.now();
354
+ calculateReadingTime(largeText);
355
+ const duration = Date.now() - start;
356
+
357
+ expect(duration).toBeLessThan(100); // Should complete in less than 100ms
358
+ });
359
+ });
360
+ });
@@ -1,19 +1,41 @@
1
+ import { createLogger } from "../../logger";
2
+
3
+ const { log_error } = createLogger({
4
+ category: "AccessibilityManager",
5
+ subsystem: "AppUtils",
6
+ });
7
+
1
8
  /**
2
9
  * Calculates the reading time for a given text based on word count
3
- * @param text - The text to calculate the reading time for
4
- * @param wordsPerMinute - Words per minute reading speed (default: 160)
10
+ * @param text - The text to calculate the reading time for (string or number)
11
+ * @param wordsPerMinute - Words per minute reading speed (default: 140)
5
12
  * @param minimumPause - Minimum pause time in milliseconds (default: 500)
6
13
  * @param announcementDelay - Additional delay for announcement in milliseconds (default: 700)
7
14
  * @returns The reading time in milliseconds
8
15
  */
9
16
  export function calculateReadingTime(
10
- text: string,
17
+ text: string | number,
11
18
  wordsPerMinute: number = 140,
12
19
  minimumPause: number = 500,
13
20
  announcementDelay: number = 700
14
21
  ): number {
15
- const words = text
16
- .trim()
22
+ if (typeof text !== "string" && typeof text !== "number") {
23
+ log_error(
24
+ `Invalid text input for reading time calculation got: ${
25
+ typeof text === "symbol" ? String(text) : text
26
+ }`
27
+ );
28
+
29
+ return 0;
30
+ }
31
+
32
+ const trimmed = typeof text === "number" ? String(text) : text.trim();
33
+
34
+ if (!trimmed) {
35
+ return 0;
36
+ }
37
+
38
+ const words = trimmed
17
39
  .split(/(?<=\d)(?=[a-zA-Z])|(?<=[a-zA-Z])(?=\d)|[^\w\s]+|\s+/)
18
40
  .filter(Boolean).length;
19
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-utils",
3
- "version": "14.0.1-rc.0",
3
+ "version": "14.0.1",
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": "14.0.1-rc.0",
30
+ "@applicaster/applicaster-types": "14.0.1",
31
31
  "buffer": "^5.2.1",
32
32
  "camelize": "^1.0.0",
33
33
  "dayjs": "^1.11.10",
@@ -0,0 +1,240 @@
1
+ import { useNavigation, useRivers, useScreenContext } from "../../reactHooks";
2
+ import { createLogger } from "../../logger";
3
+ import { useCallback, useMemo, useRef, useEffect } from "react";
4
+
5
+ export enum NavigationCallbackOptions {
6
+ DEFAULT = "default",
7
+ GO_HOME = "go_home",
8
+ GO_BACK = "go_back",
9
+ GO_TO_SCREEN = "go_to_screen",
10
+ }
11
+
12
+ export enum ResultType {
13
+ login = "login",
14
+ logout = "logout",
15
+ }
16
+
17
+ export type CallbackResult = hookCallbackArgs & {
18
+ options?: {
19
+ resultType?: ResultType;
20
+ navigator?: QuickBrickAppNavigator;
21
+ };
22
+ };
23
+
24
+ export type ScreenResultCallback = (args: CallbackResult) => void | undefined;
25
+
26
+ export const CALLBACK_NAVIGATION_KEY = "completion_action";
27
+
28
+ export const CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY =
29
+ "completion_action_navigation_go_to_screen";
30
+
31
+ type NavKeys = {
32
+ action: NavigationCallbackOptions;
33
+ targetScreenId: string | null;
34
+ } | null;
35
+
36
+ type General = Record<string, unknown>;
37
+
38
+ const LogPrefix = "useCallbackNavigationAction:";
39
+
40
+ const { log_info, log_verbose, log_debug } = createLogger({
41
+ subsystem: "hook-navigation-callback",
42
+ });
43
+
44
+ const legacyMappingKeys = {
45
+ "quick-brick-login-flow": {
46
+ actionType: "login_completion_action",
47
+ targetScreen: "navigate_to_login_screen",
48
+ },
49
+ "quick-brick-user-account-ui-component": {
50
+ actionType: "callbackAction",
51
+ },
52
+ "quick-brick-login-multi-login-providers.login": {
53
+ actionType: "login_completion_action",
54
+ targetScreen: "navigate_to_login_screen",
55
+ },
56
+ "quick-brick-login-multi-login-providers.logout": {
57
+ actionType: "logout_completion_action",
58
+ targetScreen: "navigate_to_logout_screen",
59
+ },
60
+ "quick-brick-storefront": {
61
+ actionType: "purchase_completion_action",
62
+ targetScreen: "navigate_to_screen_after_purchase",
63
+ },
64
+ "zapp_login_plugin_oauth_tv_2_0.login": {
65
+ actionType: "login_completion_action",
66
+ targetScreen: "navigate_to_login_screen",
67
+ },
68
+ "zapp_login_plugin_oauth_tv_2_0.logout": {
69
+ actionType: "logout_completion_action",
70
+ targetScreen: "navigate_to_logout_screen",
71
+ },
72
+ };
73
+
74
+ const NAV_ACTIONS = (
75
+ Object.values(NavigationCallbackOptions) as string[]
76
+ ).filter((value) => value !== NavigationCallbackOptions.DEFAULT);
77
+
78
+ const isNavAction = (v: unknown): v is NavigationCallbackOptions =>
79
+ typeof v === "string" && NAV_ACTIONS.includes(v);
80
+
81
+ export const getNavigationKeys = (
82
+ item?: ZappUIComponent | ZappRiver,
83
+ resultType: ResultType | null = null
84
+ ): NavKeys => {
85
+ const general = (item?.general ?? {}) as General;
86
+
87
+ const pluginIdentifier = (item as any).identifier ?? item?.type ?? "";
88
+
89
+ const legacy =
90
+ legacyMappingKeys[`${pluginIdentifier}.${resultType}`] ??
91
+ legacyMappingKeys[pluginIdentifier] ??
92
+ {};
93
+
94
+ const actionKey = resultType
95
+ ? `${resultType}_${CALLBACK_NAVIGATION_KEY}`
96
+ : CALLBACK_NAVIGATION_KEY;
97
+
98
+ const rawAction =
99
+ (general as General)[actionKey] ??
100
+ (legacy.actionType ? (general as General)[legacy.actionType] : undefined);
101
+
102
+ const action: NavigationCallbackOptions | null = isNavAction(rawAction)
103
+ ? rawAction
104
+ : null;
105
+
106
+ if (!action) return null;
107
+
108
+ let targetScreenId: string | null = null;
109
+
110
+ if (action === NavigationCallbackOptions.GO_TO_SCREEN) {
111
+ const screenKey = resultType
112
+ ? `${resultType}_${CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY}`
113
+ : CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY;
114
+
115
+ const screenId: string | null =
116
+ ((general as General)[screenKey] as string) ??
117
+ (legacy.targetScreen
118
+ ? ((general as General)[legacy.targetScreen] as string)
119
+ : undefined);
120
+
121
+ if (screenId) {
122
+ targetScreenId = screenId.length > 0 ? screenId : null;
123
+ }
124
+ }
125
+
126
+ return { action, targetScreenId };
127
+ };
128
+
129
+ export const useCallbackNavigationAction = (
130
+ item?: ZappUIComponent | ZappRiver
131
+ ): ((
132
+ args: CallbackResult,
133
+ hookCallback?: hookCallback
134
+ ) => void | undefined) => {
135
+ const navigation = useNavigation();
136
+ const rivers = useRivers();
137
+ const screenContext = useScreenContext();
138
+
139
+ const navigationRef = useRef(navigation);
140
+
141
+ useEffect(() => {
142
+ navigationRef.current = navigation;
143
+ }, [navigation]);
144
+
145
+ const overrideCallbackFromComponent = useMemo(() => {
146
+ log_verbose(`${LogPrefix}: overridden callbackAction by component`);
147
+
148
+ // TODO: Check if we have better option where to store overridden callback action
149
+ return screenContext?.options?.callback;
150
+ }, [screenContext?.options?.callback]);
151
+
152
+ if (typeof __DEV__ !== "undefined" && __DEV__) {
153
+ log_verbose(`${LogPrefix} screenContext`, { screenContext, item });
154
+ }
155
+
156
+ const callbackAction = useCallback<hookCallback>(
157
+ (args: CallbackResult, hookCallback: hookCallback = null) => {
158
+ if (!args.success) {
159
+ log_debug(
160
+ `${LogPrefix} callback called with no success, use original callback`
161
+ );
162
+
163
+ hookCallback?.(args);
164
+
165
+ return;
166
+ }
167
+
168
+ if (args.cancelled) {
169
+ log_debug(
170
+ `${LogPrefix} callback called but cancelled, use original callback`
171
+ );
172
+
173
+ hookCallback?.(args);
174
+
175
+ return;
176
+ }
177
+
178
+ const data = getNavigationKeys(item, args.options?.resultType ?? null);
179
+
180
+ if (!data) {
181
+ hookCallback?.(args);
182
+
183
+ return;
184
+ }
185
+
186
+ hookCallback?.({ ...args, success: false, cancelled: true });
187
+ const currentNavigation = navigationRef.current;
188
+
189
+ switch (data.action) {
190
+ case NavigationCallbackOptions.GO_BACK: {
191
+ if (currentNavigation.canGoBack()) {
192
+ currentNavigation.goBack();
193
+
194
+ log_info(`${LogPrefix} performing 'GO BACK' action`);
195
+ } else {
196
+ log_info(`${LogPrefix} cannot perform 'GO BACK' action — ignoring`);
197
+ }
198
+
199
+ break;
200
+ }
201
+
202
+ case NavigationCallbackOptions.GO_HOME: {
203
+ currentNavigation.goHome();
204
+ log_info(`${LogPrefix} performing 'GO HOME' action`);
205
+ break;
206
+ }
207
+
208
+ case NavigationCallbackOptions.GO_TO_SCREEN: {
209
+ const screenId = data.targetScreenId;
210
+
211
+ if (!screenId) {
212
+ log_info(`${LogPrefix} no screenId provided — ignoring`);
213
+ break;
214
+ }
215
+
216
+ const screen = rivers[screenId];
217
+
218
+ if (screen) {
219
+ currentNavigation.replace(screen);
220
+
221
+ log_info(
222
+ `${LogPrefix} performing 'GO TO SCREEN' action to screen: ${screenId}`
223
+ );
224
+ } else {
225
+ log_info(`${LogPrefix} no screen provided — ignoring`);
226
+ }
227
+
228
+ break;
229
+ }
230
+
231
+ default: {
232
+ break;
233
+ }
234
+ }
235
+ },
236
+ [item, rivers]
237
+ );
238
+
239
+ return overrideCallbackFromComponent || callbackAction;
240
+ };
@@ -0,0 +1,76 @@
1
+ const NavigationCallbackOptions = {
2
+ DEFAULT: "default",
3
+ GO_HOME: "go_home",
4
+ GO_BACK: "go_back",
5
+ GO_TO_SCREEN: "go_to_screen",
6
+ };
7
+
8
+ const ResultType = {
9
+ login: "login",
10
+ logout: "logout",
11
+ };
12
+
13
+ const CALLBACK_NAVIGATION_KEY = "completion_action";
14
+
15
+ const CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY =
16
+ "completion_action_navigation_go_to_screen";
17
+
18
+ const callbackKeyPrefix = (key, prefix, keySeparator = "_") =>
19
+ prefix ? `${prefix}${keySeparator}${key}` : key;
20
+
21
+ const extendManifestWithHookCallback = (prefix = null) => ({
22
+ group: true,
23
+ label: "CallBack Navigation",
24
+ folded: true,
25
+ fields: [
26
+ {
27
+ type: "select",
28
+ key: callbackKeyPrefix(CALLBACK_NAVIGATION_KEY, prefix),
29
+ label: callbackKeyPrefix(
30
+ "Callback Navigation",
31
+ prefix?.toUpperCase(),
32
+ " "
33
+ ),
34
+ label_tooltip:
35
+ "Defines what navigation action should be performed after the callback is called.",
36
+ options: [
37
+ {
38
+ text: "Use default flow",
39
+ value: NavigationCallbackOptions.DEFAULT,
40
+ },
41
+ {
42
+ text: "Go Back to home screen",
43
+ value: NavigationCallbackOptions.GO_HOME,
44
+ },
45
+ {
46
+ text: "Go Back to previous screen",
47
+ value: NavigationCallbackOptions.GO_BACK,
48
+ },
49
+ {
50
+ text: "Move to specific screen",
51
+ value: NavigationCallbackOptions.GO_TO_SCREEN,
52
+ },
53
+ ],
54
+ initial_value: "default",
55
+ },
56
+ {
57
+ type: "screen_selector",
58
+ key: callbackKeyPrefix(CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY, prefix),
59
+ label: callbackKeyPrefix(
60
+ "Navigate to screen",
61
+ prefix?.toUpperCase(),
62
+ " "
63
+ ),
64
+ label_tooltip: "Screen you wish to navigate to after success purchase",
65
+ rules: "conditional",
66
+ conditional_fields: [
67
+ {
68
+ key: `general/${callbackKeyPrefix(CALLBACK_NAVIGATION_KEY, prefix)}`,
69
+ condition_value: NavigationCallbackOptions.GO_TO_SCREEN,
70
+ },
71
+ ],
72
+ },
73
+ ],
74
+ });
75
+
76
+ module.exports = { extendManifestWithHookCallback, ResultType };
@@ -0,0 +1,19 @@
1
+ import { useCallback } from "react";
2
+ import {
3
+ CallbackResult,
4
+ useCallbackNavigationAction,
5
+ } from "./callbackNavigationAction";
6
+
7
+ export const useCallbackActions = (
8
+ item?: ZappUIComponent | ZappRiver,
9
+ hookCallback?: hookCallback
10
+ ): hookCallback => {
11
+ const navigationAction = useCallbackNavigationAction(item);
12
+
13
+ return useCallback(
14
+ async (data: CallbackResult) => {
15
+ navigationAction(data, hookCallback);
16
+ },
17
+ [navigationAction, hookCallback]
18
+ );
19
+ };