@applicaster/zapp-react-native-app 14.0.0-rc.8 → 15.0.0-rc.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.
@@ -10,9 +10,46 @@ import { useNavigation } from "@applicaster/zapp-react-native-utils/reactHooks/n
10
10
  import { useAnalytics } from "@applicaster/zapp-react-native-utils/analyticsUtils";
11
11
  import { useRivers } from "@applicaster/zapp-react-native-utils/reactHooks/state";
12
12
  import { useErrorStore } from "@applicaster/quick-brick-core/App/ErrorBoundary/store";
13
+ import { isApplePlatform } from "@applicaster/zapp-react-native-utils/reactUtils";
13
14
 
14
15
  const getHome = R.compose(R.find(R.propEq("home", true)), R.values);
15
16
 
17
+ const isIOS = isApplePlatform();
18
+ /* Set to `false` in production, do not commit this change */
19
+ const IS_DEBUGGER_ENABLED = false;
20
+
21
+ /**
22
+ * This is a workaround to fix an error on start when debugger is connected.
23
+ * Update function body for this function `callNativeSyncHook`
24
+ * node_modules/react-native/Libraries/BatchedBridge/MessageQueue.js:167
25
+
26
+ this.processCallbacks(moduleID, methodID, params, onFail, onSucc);
27
+ if(global.nativeCallSyncHook) {
28
+ return global.nativeCallSyncHook(moduleID, methodID, params);
29
+ }
30
+ */
31
+
32
+ // Assign this to a dev-only button or useEffect call
33
+ const connectToRemoteDebugger = () => {
34
+ if (__DEV__ && isIOS) {
35
+ try {
36
+ const { DevSettings, NativeModules } = require("react-native");
37
+
38
+ // eslint-disable-next-line no-console
39
+ console.warn(`Debugger connected: ${IS_DEBUGGER_ENABLED}`);
40
+
41
+ if (DevSettings?.setIsDebuggingRemotely) {
42
+ DevSettings.setIsDebuggingRemotely(IS_DEBUGGER_ENABLED);
43
+ }
44
+
45
+ NativeModules?.DevSettings?.setIsDebuggingRemotely?.(IS_DEBUGGER_ENABLED);
46
+ } catch (error) {
47
+ // eslint-disable-next-line no-console
48
+ console.error(`connectToRemoteDebugger message: ${error.message}`);
49
+ }
50
+ }
51
+ };
52
+
16
53
  const InteractionManagerComponent = () => {
17
54
  const { sendHardwareBackButtonClickEvent } = useAnalytics();
18
55
  const rivers = useRivers();
@@ -66,10 +103,17 @@ const InteractionManagerComponent = () => {
66
103
  }, [navigator.currentRoute]);
67
104
 
68
105
  React.useEffect(() => {
69
- BackHandler.addEventListener("hardwareBackPress", onHardwareBackPress);
106
+ connectToRemoteDebugger();
107
+ }, []);
108
+
109
+ React.useEffect(() => {
110
+ const unsubscribe = BackHandler.addEventListener(
111
+ "hardwareBackPress",
112
+ onHardwareBackPress
113
+ );
70
114
 
71
115
  return () => {
72
- BackHandler.removeEventListener("hardwareBackPress", onHardwareBackPress);
116
+ unsubscribe.remove();
73
117
  };
74
118
  }, [onHardwareBackPress]);
75
119
 
@@ -138,6 +138,9 @@ jest.mock(
138
138
  );
139
139
 
140
140
  jest.mock("@applicaster/zapp-react-native-utils/navigationUtils", () => ({
141
+ ...(jest.requireActual(
142
+ "@applicaster/zapp-react-native-utils/navigationUtils"
143
+ ) as jest.Mock<any>),
141
144
  getNavigationProps: () => ({}),
142
145
  resolveNavigationPlugin: () => ({
143
146
  identifier: "quick-brick-bottom-tabs",
@@ -1,12 +1,9 @@
1
1
  import * as React from "react";
2
2
  import * as R from "ramda";
3
3
 
4
- import { View } from "react-native";
4
+ import { View, StyleSheet } from "react-native";
5
5
 
6
- import {
7
- getNavigationProps,
8
- resolveNavigationPlugin,
9
- } from "@applicaster/zapp-react-native-utils/navigationUtils";
6
+ import { getNavigationProps } from "@applicaster/zapp-react-native-utils/navigationUtils";
10
7
  import {
11
8
  useDimensions,
12
9
  useGetBottomTabBarHeight,
@@ -39,10 +36,13 @@ import {
39
36
  PushTopicManagerConsts,
40
37
  PushTopicManagerEvents,
41
38
  } from "@applicaster/zapp-react-native-bridge/PushNotifications/PushTopicManager";
39
+ import { useSafeAreaInsets } from "react-native-safe-area-context";
42
40
 
43
- const containerStyle = {
44
- height: "100%",
45
- };
41
+ const styles = StyleSheet.create({
42
+ container: {
43
+ height: "100%",
44
+ },
45
+ });
46
46
 
47
47
  const LayoutWithMenu = () => {
48
48
  const {
@@ -63,16 +63,11 @@ const LayoutWithMenu = () => {
63
63
  const isRTL = useIsRTL();
64
64
  const navigator = useNavigation();
65
65
  const bottomTabBarHeight = useGetBottomTabBarHeight();
66
+ const { bottom: safeAreaBottomInset } = useSafeAreaInsets();
66
67
  const { title } = useNavbarState();
67
68
 
68
69
  const { activeRiver, videoModalState, isVideoModalDocked } = navigator;
69
70
 
70
- const plugin = resolveNavigationPlugin({
71
- category: "menu",
72
- navigations: activeRiver?.navigations,
73
- plugins,
74
- });
75
-
76
71
  const Menu = React.useMemo(
77
72
  () =>
78
73
  getNavigationPluginModule(
@@ -94,34 +89,37 @@ const LayoutWithMenu = () => {
94
89
  * otherwise hidden if videoModalState - visible
95
90
  * also check isMenuVisible
96
91
  */
97
- const showMenu = React.useMemo(
98
- () =>
99
- ((videoModalState.visible &&
100
- (videoModalState.mode === "MINIMIZED" ||
101
- (videoModalState.mode === "MAXIMIZED" && isActiveGesture))) ||
102
- !videoModalState.visible) &&
103
- isMenuVisible(navigator.currentRoute, navigator.screenData),
104
- [
105
- videoModalState.visible,
106
- videoModalState.mode,
92
+ const showMenu = React.useMemo(() => {
93
+ const menuVisible = isMenuVisible(
107
94
  navigator.currentRoute,
108
- isActiveGesture,
109
- ]
110
- );
95
+ navigator.screenData,
96
+ plugins
97
+ );
111
98
 
112
- const isBottomTabsPlugin = plugin?.identifier === "quick-brick-bottom-tabs";
99
+ const shouldShowWithVideo =
100
+ videoModalState.visible &&
101
+ ["MINIMIZED", "MAXIMIZED"].includes(videoModalState.mode);
113
102
 
114
- const paddingBottom = React.useMemo(() => {
115
- return showMenu && isBottomTabsPlugin ? bottomTabBarHeight : 0; // if activeRiver?.navigations has quick-brick-bottom-tabs - append bottomTabBarHeight as padding
116
- }, [showMenu, isBottomTabsPlugin, bottomTabBarHeight]);
103
+ return menuVisible && (shouldShowWithVideo || !videoModalState.visible);
104
+ }, [
105
+ videoModalState.visible,
106
+ videoModalState.mode,
107
+ navigator.currentRoute,
108
+ isActiveGesture,
109
+ ]);
110
+
111
+ const paddingBottom = showMenu ? bottomTabBarHeight + safeAreaBottomInset : 0; // if activeRiver?.navigations has quick-brick-bottom-tabs - append bottomTabBarHeight as padding
117
112
 
118
113
  const contentStyle = React.useMemo(
119
- () => ({
120
- ...containerStyle,
121
- paddingBottom,
122
- opacity: videoModalState.visible && !isVideoModalDocked ? 0 : 1,
123
- }),
124
- [videoModalState.visible, isVideoModalDocked, paddingBottom]
114
+ () =>
115
+ StyleSheet.flatten([
116
+ styles.container,
117
+ {
118
+ paddingBottom,
119
+ opacity: videoModalState.visible && !isVideoModalDocked ? 0 : 1,
120
+ },
121
+ ]),
122
+ [videoModalState.visible, isVideoModalDocked]
125
123
  );
126
124
 
127
125
  const menuProps = React.useMemo(() => {
@@ -165,7 +163,7 @@ const LayoutWithMenu = () => {
165
163
  return (
166
164
  <>
167
165
  {appReady ? (
168
- <View style={containerStyle}>
166
+ <View style={styles.container}>
169
167
  <Transitioner
170
168
  transitionConfig={transitionConfig}
171
169
  contentStyle={contentStyle}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-app",
3
- "version": "14.0.0-rc.8",
3
+ "version": "15.0.0-rc.1",
4
4
  "description": "Zapp App Component for Applicaster's Quick Brick React Native App",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,11 +27,11 @@
27
27
  },
28
28
  "homepage": "https://github.com/applicaster/quickbrick#readme",
29
29
  "dependencies": {
30
- "@applicaster/quick-brick-core": "14.0.0-rc.8",
31
- "@applicaster/zapp-react-native-bridge": "14.0.0-rc.8",
32
- "@applicaster/zapp-react-native-redux": "14.0.0-rc.8",
33
- "@applicaster/zapp-react-native-ui-components": "14.0.0-rc.8",
34
- "@applicaster/zapp-react-native-utils": "14.0.0-rc.8",
30
+ "@applicaster/quick-brick-core": "15.0.0-rc.1",
31
+ "@applicaster/zapp-react-native-bridge": "15.0.0-rc.1",
32
+ "@applicaster/zapp-react-native-redux": "15.0.0-rc.1",
33
+ "@applicaster/zapp-react-native-ui-components": "15.0.0-rc.1",
34
+ "@applicaster/zapp-react-native-utils": "15.0.0-rc.1",
35
35
  "axios": "^0.28.0",
36
36
  "camelize": "^1.0.0",
37
37
  "query-string": "7.1.3",
@@ -46,23 +46,14 @@
46
46
  "@applicaster/zapp-react-native-tvos-ui-components": "*",
47
47
  "@babel/runtime": "*",
48
48
  "@react-native-community/netinfo": "*",
49
- "immer": "*",
50
49
  "react": "*",
51
50
  "react-native": "*",
52
51
  "react-native-fs": "*",
53
- "react-native-gesture-handler": "*",
54
52
  "react-native-linear-gradient": "*",
55
- "react-native-safe-area-context": "*",
56
53
  "react-native-svg": "*",
57
- "react-native-web": "*",
58
54
  "react-native-webview": "*",
59
55
  "uglify-js": "*",
60
56
  "validate-color": "*",
61
57
  "zustand": "*"
62
- },
63
- "devDependencies": {
64
- "nock": "^10.0.0",
65
- "redux-mock-store": "^1.5.3"
66
- },
67
- "gitHead": "a473487564142c55cdb50f02505cf0b60fe75658"
58
+ }
68
59
  }