@applicaster/quick-brick-core 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.
Files changed (30) hide show
  1. package/App/ActionsProvider/ActionsProvider.tsx +31 -9
  2. package/App/ActionsProvider/LegacyActionsRegistryAdapter.tsx +107 -0
  3. package/App/DeepLinking/URLSchemeHandler/SchemeHandlerHooks/__tests__/useOpenSchemeHandler.test.tsx +25 -15
  4. package/App/ModalProvider/ModalBottomSheet/DraggableBottomSheet/__tests__/index.test.tsx +88 -0
  5. package/App/ModalProvider/ModalBottomSheet/DraggableBottomSheet/index.tsx +30 -56
  6. package/App/ModalProvider/ModalBottomSheet/ModalBottomSheetFrame.tsx +9 -2
  7. package/App/ModalProvider/ModalBottomSheet/hooks/__tests__/useKeyboardHeight.android.test.ts +105 -0
  8. package/App/ModalProvider/ModalBottomSheet/hooks/__tests__/useKeyboardHeight.test.ts +102 -0
  9. package/App/ModalProvider/ModalBottomSheet/hooks/index.ts +1 -0
  10. package/App/ModalProvider/ModalBottomSheet/hooks/useKeyboardHeight.ts +30 -0
  11. package/App/ModalProvider/ModalBottomSheet/index.tsx +5 -2
  12. package/App/NavigationProvider/NavigationProvider.tsx +51 -1
  13. package/App/NavigationProvider/__tests__/utils.test.ts +31 -1
  14. package/App/NavigationProvider/utils.ts +14 -0
  15. package/App/NotificationToastRenderer/NotificationToastManager.ts +214 -0
  16. package/App/NotificationToastRenderer/NotificationToastRenderer.tsx +134 -0
  17. package/App/NotificationToastRenderer/NotificationToastRenderer.tv.tsx +131 -0
  18. package/App/NotificationToastRenderer/NotificationToastRenderer.web.tsx +61 -0
  19. package/App/NotificationToastRenderer/__tests__/NotificationToastManager.test.ts +237 -0
  20. package/App/NotificationToastRenderer/__tests__/NotificationToastRenderer.test.tsx +233 -0
  21. package/App/NotificationToastRenderer/__tests__/NotificationToastRenderer.web.test.tsx +90 -0
  22. package/App/NotificationToastRenderer/__tests__/resolveConfirmationToastStyle.test.ts +118 -0
  23. package/App/NotificationToastRenderer/__tests__/useNotificationHeight.test.tsx +58 -0
  24. package/App/NotificationToastRenderer/__tests__/useNotificationToastState.test.ts +112 -0
  25. package/App/NotificationToastRenderer/index.tsx +11 -0
  26. package/App/NotificationToastRenderer/resolveConfirmationToastStyle.ts +33 -0
  27. package/App/NotificationToastRenderer/useNotificationHeight.tsx +13 -0
  28. package/App/NotificationToastRenderer/useNotificationToastState.tsx +12 -0
  29. package/App/index.tsx +8 -5
  30. package/package.json +8 -8
@@ -0,0 +1,134 @@
1
+ import React, { useEffect, useMemo, useRef, useState } from "react";
2
+ import { View, Text, Animated, StyleSheet, ViewStyle } from "react-native";
3
+ import {
4
+ Directions,
5
+ Gesture,
6
+ GestureDetector,
7
+ } from "react-native-gesture-handler";
8
+ import { useTheme } from "@applicaster/zapp-react-native-utils/theme";
9
+
10
+ import {
11
+ CONFIRMATION_TOAST_SOURCE,
12
+ notificationToastManager,
13
+ } from "./NotificationToastManager";
14
+ import { useNotificationToastState } from "./useNotificationToastState";
15
+ import { useNotificationHeight } from "./useNotificationHeight";
16
+ import { resolveConfirmationToastStyle } from "./resolveConfirmationToastStyle";
17
+
18
+ const DEFAULT_TOAST_BACKGROUND_COLOR = "#000";
19
+ const DEFAULT_TOAST_MESSAGE_COLOR = "#fff";
20
+
21
+ const styles = StyleSheet.create({
22
+ notificationView: {
23
+ flex: 1,
24
+ position: "absolute",
25
+ alignItems: "center",
26
+ justifyContent: "center",
27
+ top: 0,
28
+ left: 0,
29
+ right: 0,
30
+ },
31
+ });
32
+
33
+ type NumberBoolean = 0 | 1;
34
+
35
+ export const NotificationToastRenderer = ({ children }) => {
36
+ const { statusHeight, notificationHeight } = useNotificationHeight();
37
+ const theme = useTheme<BaseThemePropertiesMobile>();
38
+
39
+ const toast = useNotificationToastState();
40
+
41
+ const [notificationOpacity, setNotificationOpacity] =
42
+ useState<NumberBoolean>(0);
43
+
44
+ const yPosition = useRef(new Animated.Value(0)).current;
45
+
46
+ const resolvedStyle =
47
+ toast?.source === CONFIRMATION_TOAST_SOURCE
48
+ ? resolveConfirmationToastStyle(theme, toast.style)
49
+ : toast?.style;
50
+
51
+ const backgroundColor =
52
+ resolvedStyle?.backgroundColor ?? DEFAULT_TOAST_BACKGROUND_COLOR;
53
+
54
+ const color = resolvedStyle?.color ?? DEFAULT_TOAST_MESSAGE_COLOR;
55
+
56
+ const textStyles = {
57
+ color,
58
+ fontFamily: resolvedStyle?.fontFamily,
59
+ fontSize: resolvedStyle?.fontSize,
60
+ lineHeight: resolvedStyle?.lineHeight,
61
+ letterSpacing: resolvedStyle?.letterSpacing,
62
+ };
63
+
64
+ const animatedViewStyles: ViewStyle = {
65
+ ...styles.notificationView,
66
+ transform: [
67
+ {
68
+ translateY: yPosition.interpolate({
69
+ inputRange: [0, 1],
70
+ outputRange: [-notificationHeight, 0],
71
+ }),
72
+ },
73
+ ],
74
+ opacity: notificationOpacity,
75
+ height: notificationHeight,
76
+ width: "100%",
77
+
78
+ backgroundColor,
79
+ };
80
+
81
+ const flingGesture = useMemo(
82
+ () =>
83
+ Gesture.Fling()
84
+ .direction(Directions.UP)
85
+ .enabled(!!toast)
86
+ .runOnJS(true)
87
+ .onEnd((_event, success) => {
88
+ if (success) {
89
+ notificationToastManager.dismiss();
90
+ }
91
+ }),
92
+ [toast]
93
+ );
94
+
95
+ useEffect(() => {
96
+ if (toast) {
97
+ setNotificationOpacity(1);
98
+
99
+ Animated.timing(yPosition, {
100
+ toValue: 1,
101
+ useNativeDriver: true,
102
+ duration: 300,
103
+ }).start();
104
+ } else {
105
+ Animated.timing(yPosition, {
106
+ toValue: 0,
107
+ useNativeDriver: true,
108
+ duration: 300,
109
+ }).start(() => setNotificationOpacity(0));
110
+ }
111
+ }, [toast]);
112
+
113
+ return (
114
+ <View
115
+ testID="NotificationToastRenderer"
116
+ style={StyleSheet.absoluteFill}
117
+ pointerEvents="box-none"
118
+ >
119
+ {children}
120
+ <GestureDetector gesture={flingGesture}>
121
+ <Animated.View
122
+ testID="NotificationToastRenderer-fling"
123
+ pointerEvents={toast ? "auto" : "none"}
124
+ style={animatedViewStyles}
125
+ >
126
+ <View style={{ height: statusHeight, backgroundColor }} />
127
+ <Text testID="NotificationToastRenderer-message" style={textStyles}>
128
+ {toast?.message}
129
+ </Text>
130
+ </Animated.View>
131
+ </GestureDetector>
132
+ </View>
133
+ );
134
+ };
@@ -0,0 +1,131 @@
1
+ import React, { useCallback, useEffect, useRef, useState } from "react";
2
+ import { View, Text, Animated, StyleSheet, ViewStyle } from "react-native";
3
+ import {
4
+ Directions,
5
+ FlingGestureHandler,
6
+ State,
7
+ } from "react-native-gesture-handler";
8
+ import { useTheme } from "@applicaster/zapp-react-native-utils/theme";
9
+
10
+ import {
11
+ CONFIRMATION_TOAST_SOURCE,
12
+ notificationToastManager,
13
+ } from "./NotificationToastManager";
14
+ import { useNotificationToastState } from "./useNotificationToastState";
15
+ import { useNotificationHeight } from "./useNotificationHeight";
16
+ import { resolveConfirmationToastStyle } from "./resolveConfirmationToastStyle";
17
+
18
+ const DEFAULT_TOAST_BACKGROUND_COLOR = "#000";
19
+ const DEFAULT_TOAST_MESSAGE_COLOR = "#fff";
20
+
21
+ const styles = StyleSheet.create({
22
+ notificationView: {
23
+ flex: 1,
24
+ position: "absolute",
25
+ alignItems: "center",
26
+ justifyContent: "center",
27
+ top: 0,
28
+ left: 0,
29
+ right: 0,
30
+ },
31
+ });
32
+
33
+ type NumberBoolean = 0 | 1;
34
+
35
+ export const NotificationToastRenderer = ({ children }) => {
36
+ const { statusHeight, notificationHeight } = useNotificationHeight();
37
+ const theme = useTheme<BaseThemePropertiesMobile>();
38
+
39
+ const toast = useNotificationToastState();
40
+
41
+ const [notificationOpacity, setNotificationOpacity] =
42
+ useState<NumberBoolean>(0);
43
+
44
+ const yPosition = useRef(new Animated.Value(0)).current;
45
+
46
+ const resolvedStyle =
47
+ toast?.source === CONFIRMATION_TOAST_SOURCE
48
+ ? resolveConfirmationToastStyle(theme, toast.style)
49
+ : toast?.style;
50
+
51
+ const backgroundColor =
52
+ resolvedStyle?.backgroundColor ?? DEFAULT_TOAST_BACKGROUND_COLOR;
53
+
54
+ const color = resolvedStyle?.color ?? DEFAULT_TOAST_MESSAGE_COLOR;
55
+
56
+ const textStyles = {
57
+ color,
58
+ fontFamily: resolvedStyle?.fontFamily,
59
+ fontSize: resolvedStyle?.fontSize,
60
+ lineHeight: resolvedStyle?.lineHeight,
61
+ letterSpacing: resolvedStyle?.letterSpacing,
62
+ };
63
+
64
+ const animatedViewStyles: ViewStyle = {
65
+ ...styles.notificationView,
66
+ transform: [
67
+ {
68
+ translateY: yPosition.interpolate({
69
+ inputRange: [0, 1],
70
+ outputRange: [-notificationHeight, 0],
71
+ }),
72
+ },
73
+ ],
74
+ opacity: notificationOpacity,
75
+ height: notificationHeight,
76
+ width: "100%",
77
+
78
+ backgroundColor,
79
+ };
80
+
81
+ const onFlingStateChange = useCallback(({ nativeEvent }) => {
82
+ // Fling activates then ends; dismiss once the upward fling is recognized.
83
+ if (nativeEvent.oldState === State.ACTIVE) {
84
+ notificationToastManager.dismiss();
85
+ }
86
+ }, []);
87
+
88
+ useEffect(() => {
89
+ if (toast) {
90
+ setNotificationOpacity(1);
91
+
92
+ Animated.timing(yPosition, {
93
+ toValue: 1,
94
+ useNativeDriver: true,
95
+ duration: 300,
96
+ }).start();
97
+ } else {
98
+ Animated.timing(yPosition, {
99
+ toValue: 0,
100
+ useNativeDriver: true,
101
+ duration: 300,
102
+ }).start(() => setNotificationOpacity(0));
103
+ }
104
+ }, [toast]);
105
+
106
+ return (
107
+ <View
108
+ testID="NotificationToastRenderer"
109
+ style={StyleSheet.absoluteFill}
110
+ pointerEvents="box-none"
111
+ >
112
+ {children}
113
+ <FlingGestureHandler
114
+ enabled={!!toast}
115
+ direction={Directions.UP}
116
+ onHandlerStateChange={onFlingStateChange}
117
+ >
118
+ <Animated.View
119
+ testID="NotificationToastRenderer-fling"
120
+ pointerEvents={toast ? "auto" : "none"}
121
+ style={animatedViewStyles}
122
+ >
123
+ <View style={{ height: statusHeight, backgroundColor }} />
124
+ <Text testID="NotificationToastRenderer-message" style={textStyles}>
125
+ {toast?.message}
126
+ </Text>
127
+ </Animated.View>
128
+ </FlingGestureHandler>
129
+ </View>
130
+ );
131
+ };
@@ -0,0 +1,61 @@
1
+ import * as React from "react";
2
+
3
+ import { notificationToastManager } from "./NotificationToastManager";
4
+ import { useNotificationToastState } from "./useNotificationToastState";
5
+
6
+ const styles: Record<string, React.CSSProperties> = {
7
+ body: {
8
+ position: "absolute",
9
+ bottom: 0,
10
+ left: 0,
11
+ right: 0,
12
+ width: 1920,
13
+ height: 200,
14
+ background:
15
+ "linear-gradient(180deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,1) 49%, rgba(0,0,0,0.85) 100%)",
16
+ display: "flex",
17
+ alignItems: "center",
18
+ justifyContent: "center",
19
+ flexDirection: "column",
20
+ color: "#fff",
21
+ paddingBottom: 15,
22
+ },
23
+ title: {
24
+ fontSize: 28,
25
+ margin: 0,
26
+ padding: 0,
27
+ },
28
+ subtitle: {
29
+ fontSize: 20,
30
+ margin: 0,
31
+ padding: 0,
32
+ },
33
+ };
34
+
35
+ export const NotificationToastRenderer = ({ children }) => {
36
+ const toast = useNotificationToastState();
37
+
38
+ return (
39
+ <div
40
+ data-testid="NotificationToastRenderer"
41
+ onClick={() => notificationToastManager.dismiss()}
42
+ >
43
+ {children}
44
+ {toast ? (
45
+ <div
46
+ data-testid="NotificationToastRenderer-touchable"
47
+ style={styles.body}
48
+ >
49
+ <div style={styles.title}>
50
+ <h2 data-testid="NotificationToastRenderer-message">
51
+ {toast.message}
52
+ </h2>
53
+ </div>
54
+ {toast.extraMessage ? (
55
+ <h4 style={styles.subtitle}>{toast.extraMessage}</h4>
56
+ ) : null}
57
+ </div>
58
+ ) : null}
59
+ </div>
60
+ );
61
+ };
@@ -0,0 +1,237 @@
1
+ import {
2
+ notificationToastManager,
3
+ NOTIFICATION_TOAST_EVENTS,
4
+ DEFAULT_TOAST_TIMEOUT,
5
+ } from "../NotificationToastManager";
6
+ import { postEvent } from "@applicaster/zapp-react-native-utils/reactHooks/useSubscriberFor";
7
+
8
+ jest.useFakeTimers();
9
+
10
+ // notificationToastManager is a module-level singleton with a private
11
+ // queue/isShowing/nextId, so every test must register its handlers through
12
+ // `on()` (tracked below for cleanup) and fully drain the queue afterwards -
13
+ // otherwise state leaks into the next test.
14
+ describe("NotificationToastManager", () => {
15
+ let registered: Array<[string, (...args: any[]) => void]> = [];
16
+
17
+ const on = (event: string, handler: (...args: any[]) => void) => {
18
+ notificationToastManager.on(event, handler);
19
+ registered.push([event, handler]);
20
+ };
21
+
22
+ beforeAll(() => {
23
+ jest.spyOn(console, "log").mockImplementation(() => {});
24
+ });
25
+
26
+ afterAll(() => {
27
+ (console.log as jest.Mock).mockRestore();
28
+ });
29
+
30
+ afterEach(() => {
31
+ registered.forEach(([event, handler]) =>
32
+ notificationToastManager.removeHandler(event, handler)
33
+ );
34
+
35
+ registered = [];
36
+
37
+ // drain whatever is left showing/queued so the next test starts clean
38
+ notificationToastManager.reset();
39
+
40
+ jest.clearAllTimers();
41
+ jest.restoreAllMocks();
42
+ jest.spyOn(console, "log").mockImplementation(() => {});
43
+ });
44
+
45
+ it("emits SHOW with the toast payload when showToast is called", () => {
46
+ const onShow = jest.fn();
47
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
48
+
49
+ notificationToastManager.showToast({ id: "t1", message: "hello" });
50
+
51
+ expect(onShow).toHaveBeenCalledWith(
52
+ expect.objectContaining({ id: "t1", message: "hello" }),
53
+ expect.any(Function)
54
+ );
55
+ });
56
+
57
+ it("auto-generates distinct ids for payloads that don't provide one", () => {
58
+ const onShow = jest.fn();
59
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
60
+
61
+ notificationToastManager.showToast({ message: "first" });
62
+ const firstId = onShow.mock.calls[0][0].id;
63
+
64
+ notificationToastManager.dismiss();
65
+
66
+ notificationToastManager.showToast({ message: "second" });
67
+ const secondId = onShow.mock.calls[1][0].id;
68
+
69
+ expect(typeof firstId).toBe("string");
70
+ expect(firstId).not.toEqual(secondId);
71
+ });
72
+
73
+ it("keeps a caller-provided id instead of generating one", () => {
74
+ const onShow = jest.fn();
75
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
76
+
77
+ notificationToastManager.showToast({ id: "custom-id", message: "hi" });
78
+
79
+ expect(onShow).toHaveBeenCalledWith(
80
+ expect.objectContaining({ id: "custom-id" }),
81
+ expect.any(Function)
82
+ );
83
+ });
84
+
85
+ it("queues a second toast and shows it only after the first is dismissed", () => {
86
+ const onShow = jest.fn();
87
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
88
+
89
+ notificationToastManager.showToast({ id: "a", message: "first" });
90
+ notificationToastManager.showToast({ id: "b", message: "second" });
91
+
92
+ expect(onShow).toHaveBeenCalledTimes(1);
93
+
94
+ expect(onShow).toHaveBeenCalledWith(
95
+ expect.objectContaining({ id: "a" }),
96
+ expect.any(Function)
97
+ );
98
+
99
+ notificationToastManager.dismiss();
100
+
101
+ expect(onShow).toHaveBeenCalledTimes(2);
102
+
103
+ expect(onShow).toHaveBeenLastCalledWith(
104
+ expect.objectContaining({ id: "b" }),
105
+ expect.any(Function)
106
+ );
107
+ });
108
+
109
+ it("auto-hides after the timeout and advances to the next queued toast", () => {
110
+ const onShow = jest.fn();
111
+ const onHide = jest.fn();
112
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
113
+ on(NOTIFICATION_TOAST_EVENTS.HIDE, onHide);
114
+
115
+ notificationToastManager.showToast({
116
+ id: "a",
117
+ message: "first",
118
+ timeout: 1000,
119
+ });
120
+
121
+ notificationToastManager.showToast({ id: "b", message: "second" });
122
+
123
+ jest.advanceTimersByTime(1000);
124
+
125
+ expect(onHide).toHaveBeenCalledTimes(1);
126
+
127
+ expect(onShow).toHaveBeenLastCalledWith(
128
+ expect.objectContaining({ id: "b" }),
129
+ expect.any(Function)
130
+ );
131
+ });
132
+
133
+ it("does nothing when dismiss is called with no toast showing", () => {
134
+ const onHide = jest.fn();
135
+ on(NOTIFICATION_TOAST_EVENTS.HIDE, onHide);
136
+
137
+ notificationToastManager.dismiss();
138
+
139
+ expect(onHide).not.toHaveBeenCalled();
140
+ });
141
+
142
+ it("updates a still-queued (not yet shown) toast in place instead of duplicating it", () => {
143
+ const onShow = jest.fn();
144
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
145
+
146
+ notificationToastManager.showToast({ id: "a", message: "first" });
147
+ notificationToastManager.showToast({ id: "b", message: "second" });
148
+ notificationToastManager.showToast({ id: "b", message: "second updated" });
149
+
150
+ notificationToastManager.dismiss();
151
+
152
+ expect(onShow).toHaveBeenCalledTimes(2);
153
+
154
+ expect(onShow).toHaveBeenLastCalledWith(
155
+ expect.objectContaining({ id: "b", message: "second updated" }),
156
+ expect.any(Function)
157
+ );
158
+ });
159
+
160
+ it("swaps the content of the currently visible toast when re-shown with the same id", () => {
161
+ const onShow = jest.fn();
162
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
163
+
164
+ notificationToastManager.showToast({
165
+ id: "a",
166
+ message: "first",
167
+ timeout: 5000,
168
+ });
169
+
170
+ notificationToastManager.showToast({ id: "a", message: "first updated" });
171
+
172
+ expect(onShow).toHaveBeenCalledTimes(2);
173
+
174
+ expect(onShow).toHaveBeenLastCalledWith(
175
+ expect.objectContaining({ id: "a", message: "first updated" }),
176
+ expect.any(Function)
177
+ );
178
+
179
+ // old timer must have been cleared, not still pending
180
+ jest.advanceTimersByTime(5000);
181
+ expect(onShow).toHaveBeenCalledTimes(2);
182
+ });
183
+
184
+ it("routes cross-package showToast events via the shared event bus", () => {
185
+ const onShow = jest.fn();
186
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
187
+
188
+ postEvent(NOTIFICATION_TOAST_EVENTS.SHOW_TOAST, [
189
+ { id: "bus", message: "from event bus" },
190
+ ]);
191
+
192
+ expect(onShow).toHaveBeenCalledWith(
193
+ expect.objectContaining({ id: "bus", message: "from event bus" }),
194
+ expect.any(Function)
195
+ );
196
+ });
197
+
198
+ it("stops emitting to a handler after it has been removed", () => {
199
+ const onShow = jest.fn();
200
+ notificationToastManager.on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
201
+
202
+ notificationToastManager.removeHandler(
203
+ NOTIFICATION_TOAST_EVENTS.SHOW,
204
+ onShow
205
+ );
206
+
207
+ notificationToastManager.showToast({
208
+ id: "removed-handler",
209
+ message: "hello",
210
+ });
211
+
212
+ expect(onShow).not.toHaveBeenCalled();
213
+ });
214
+
215
+ it("defaults timeout to DEFAULT_TOAST_TIMEOUT (4000ms) when omitted and auto-hides", () => {
216
+ const onShow = jest.fn();
217
+ const onHide = jest.fn();
218
+ on(NOTIFICATION_TOAST_EVENTS.SHOW, onShow);
219
+ on(NOTIFICATION_TOAST_EVENTS.HIDE, onHide);
220
+
221
+ notificationToastManager.showToast({
222
+ message: "Added to queue",
223
+ });
224
+
225
+ expect(onShow).toHaveBeenCalledWith(
226
+ expect.objectContaining({
227
+ message: "Added to queue",
228
+ timeout: DEFAULT_TOAST_TIMEOUT,
229
+ }),
230
+ expect.any(Function)
231
+ );
232
+
233
+ jest.advanceTimersByTime(DEFAULT_TOAST_TIMEOUT);
234
+
235
+ expect(onHide).toHaveBeenCalledTimes(1);
236
+ });
237
+ });