-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
144 lines (124 loc) · 4.49 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import React from "react";
import { Linking, Platform } from "react-native";
import AsyncStorage from "@react-native-async-storage/async-storage";
import {
NavigationContainer,
NavigationState,
NavigationContainerRef,
NavigationContainerProps,
Theme,
LinkingOptions,
DocumentTitleOptions,
InitialState,
} from "@react-navigation/native";
export const PERSISTENCE_KEY = "NAVIGATION_STATE";
// Taken from https://reactnavigation.org/docs/state-persistence
export const useLiveReloadOnScreen = (): {
waitForLiveReload: boolean;
props: Partial<NavigationContainerProps>;
} => {
const [isReady, setIsReady] = React.useState(false);
const [initialState, setInitialState] = React.useState();
React.useEffect(() => {
const restoreState = async () => {
try {
const initialUrl = await Linking.getInitialURL();
/* $FlowFixMe[incompatible-type] $FlowFixMe This comment suppresses an
* error found when upgrading Flow to v0.142.0 To view the error,
* delete this comment and run Flow. */
if (Platform.OS !== "web" && initialUrl == null) {
// Only restore state if there's no deep link and we're not on web
const savedStateString = await AsyncStorage.getItem(PERSISTENCE_KEY);
const state = savedStateString
? JSON.parse(savedStateString)
: undefined;
if (state !== undefined) {
setInitialState(state);
}
}
} finally {
setIsReady(true);
}
};
if (!isReady) {
restoreState();
}
}, [isReady]);
return {
waitForLiveReload: !isReady,
props: {
initialState,
onStateChange: (state: NavigationState | undefined) =>
AsyncStorage.setItem(PERSISTENCE_KEY, JSON.stringify(state)),
},
};
};
// Taken directly from react-navigation definitions to type the HOC below
declare type NavigationContainerType<Params extends {}> = (
props: NavigationContainerProps & {
theme?: Theme | undefined;
linking?: LinkingOptions<Params> | undefined;
fallback?: React.ReactNode;
documentTitle?: DocumentTitleOptions | undefined;
onReady?: (() => void) | undefined;
} & {
ref?: React.Ref<NavigationContainerRef<Params>> | undefined;
}
) => React.ReactElement;
export const enableLiveReloadOnScreen =
(enable: boolean, logs: boolean = true) =>
<Params extends {} = {}>(
NavigationContainerComponent: NavigationContainerType<Params>
) => {
if (enable) {
const LiveReloadNavigationContainer = (
props: React.ComponentProps<NavigationContainerType<Params>>,
ref: React.Ref<NavigationContainerRef<Params>> | undefined
) => {
const { waitForLiveReload, props: liveReloadProps } =
useLiveReloadOnScreen();
React.useEffect(() => {
if (logs && !waitForLiveReload) {
const activeRouteName = getActiveRouteName(liveReloadProps.initialState);
if (activeRouteName) {
console.log("[Live Reload on Screen] App reloaded on", activeRouteName);
} else {
console.log("[Live Reload on Screen] No reload, either because the app was opened with a deep link or because this is the first time the app has been launched");
}
}
}, [waitForLiveReload]);
if (waitForLiveReload) return null;
const onStateChange = (state: NavigationState | undefined) => {
if (liveReloadProps.onStateChange)
liveReloadProps.onStateChange(state);
if (props.onStateChange) props.onStateChange(state);
};
return (
<NavigationContainerComponent
ref={ref}
{...liveReloadProps}
{...props}
onStateChange={onStateChange}
/>
);
};
return React.forwardRef<
NavigationContainerRef<Params>,
React.ComponentProps<NavigationContainerType<Params>>
>(LiveReloadNavigationContainer);
}
return NavigationContainerComponent;
};
export const clearNavigationState = (): Promise<void> =>
AsyncStorage.removeItem(PERSISTENCE_KEY);
const getActiveRouteName = (navigationState?: InitialState): string | null => {
if (!navigationState) return null;
const { index, routes } = navigationState;
if (index === undefined || index >= routes.length) return null;
const activeRoute = routes[index];
// If the active route has a nested state, recurse
if (activeRoute.state) {
return getActiveRouteName(activeRoute.state);
}
return activeRoute.name;
};