expo-router 2.0.8 → 2.0.9

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.
@@ -1,3 +1,9 @@
1
1
  export declare function useWarnOnce(message: string, guard?: unknown, key?: string): void;
2
- export declare function useDeprecated(message: string, guard?: unknown, key?: string): void;
2
+ export declare function useDeprecated(
3
+ /** The deprecated message to display */
4
+ message: string,
5
+ /** The guard to cause the warning to being displayed */
6
+ guard?: unknown,
7
+ /** The key to use for the warning. Used to detect if the warning has already been shown. */
8
+ key?: string): void;
3
9
  //# sourceMappingURL=useDeprecated.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useDeprecated.d.ts","sourceRoot":"","sources":["../src/useDeprecated.ts"],"names":[],"mappings":"AAaA,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,EACf,KAAK,GAAE,OAAc,EACrB,GAAG,SAAU,QAUd;AAED,wBAAgB,aAAa,CAC3B,OAAO,EAAE,MAAM,EACf,KAAK,GAAE,OAAc,EACrB,GAAG,SAAU,QAGd"}
1
+ {"version":3,"file":"useDeprecated.d.ts","sourceRoot":"","sources":["../src/useDeprecated.ts"],"names":[],"mappings":"AAaA,wBAAgB,WAAW,CACzB,OAAO,EAAE,MAAM,EACf,KAAK,GAAE,OAAc,EACrB,GAAG,SAAU,QAUd;AAED,wBAAgB,aAAa;AAC3B,wCAAwC;AACxC,OAAO,EAAE,MAAM;AACf,wDAAwD;AACxD,KAAK,GAAE,OAAc;AACrB,4FAA4F;AAC5F,GAAG,SAAU,QAGd"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-router",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "main": "src/index.tsx",
5
5
  "types": "build/index.d.ts",
6
6
  "files": [
@@ -105,12 +105,12 @@
105
105
  },
106
106
  "dependencies": {
107
107
  "@bacons/react-views": "^1.1.3",
108
- "@expo/metro-runtime": "2.2.10",
108
+ "@expo/metro-runtime": "2.2.11",
109
109
  "@radix-ui/react-slot": "1.0.1",
110
110
  "@react-navigation/bottom-tabs": "~6.5.7",
111
111
  "@react-navigation/native": "~6.1.6",
112
112
  "@react-navigation/native-stack": "~6.9.12",
113
- "expo-head": "0.0.14",
113
+ "expo-head": "0.0.15",
114
114
  "expo-splash-screen": "~0.20.2",
115
115
  "query-string": "7.1.3",
116
116
  "react-helmet-async": "^1.3.0",
@@ -75,9 +75,11 @@ export function linkTo(this: RouterStore, href: string, event?: string) {
75
75
  return;
76
76
  }
77
77
 
78
+ const rootState = navigationRef.getRootState();
79
+
78
80
  if (href.startsWith(".")) {
79
81
  let base =
80
- this.linking.getPathFromState?.(navigationRef.getRootState(), {
82
+ this.linking.getPathFromState?.(rootState, {
81
83
  screens: [],
82
84
  preserveGroups: true,
83
85
  }) ?? "";
@@ -99,11 +101,9 @@ export function linkTo(this: RouterStore, href: string, event?: string) {
99
101
 
100
102
  switch (event) {
101
103
  case "REPLACE":
102
- return navigationRef.dispatch(
103
- getNavigateReplaceAction(state, navigationRef.getRootState())
104
- );
104
+ return navigationRef.dispatch(getNavigateReplaceAction(state, rootState));
105
105
  default:
106
- return navigationRef.dispatch(getNavigatePushAction(state));
106
+ return navigationRef.dispatch(getNavigatePushAction(state, rootState));
107
107
  }
108
108
  }
109
109
 
@@ -132,10 +132,11 @@ function rewriteNavigationStateToParams(
132
132
  return JSON.parse(JSON.stringify(params));
133
133
  }
134
134
 
135
- function getNavigatePushAction(state: ResultState) {
135
+ function getNavigatePushAction(state: ResultState, rootState: NavigationState) {
136
136
  const { screen, params } = rewriteNavigationStateToParams(state);
137
137
  return {
138
138
  type: "NAVIGATE",
139
+ target: rootState.key,
139
140
  payload: {
140
141
  name: screen,
141
142
  params,
@@ -144,12 +145,12 @@ function getNavigatePushAction(state: ResultState) {
144
145
  }
145
146
 
146
147
  function getNavigateReplaceAction(
147
- previousState: ResultState,
148
+ state: ResultState,
148
149
  parentState: NavigationState,
149
150
  lastNavigatorSupportingReplace: NavigationState = parentState
150
151
  ): NavigationAction {
151
152
  // We should always have at least one route in the state
152
- const state = previousState.routes.at(-1)!;
153
+ const route = state.routes.at(-1)!;
153
154
 
154
155
  // Only these navigators support replace
155
156
  if (parentState.type === "stack" || parentState.type === "tab") {
@@ -157,29 +158,29 @@ function getNavigateReplaceAction(
157
158
  }
158
159
 
159
160
  const currentRoute = parentState.routes.find(
160
- (route) => route.name === state.name
161
+ (parentRoute) => parentRoute.name === route.name
161
162
  );
162
163
  const routesAreEqual = parentState.routes[parentState.index] === currentRoute;
163
164
 
164
165
  // If there is nested state and the routes are equal, we should keep going down the tree
165
- if (state.state && routesAreEqual && currentRoute.state) {
166
+ if (route.state && routesAreEqual && currentRoute.state) {
166
167
  return getNavigateReplaceAction(
167
- state.state,
168
+ route.state,
168
169
  currentRoute.state as any,
169
170
  lastNavigatorSupportingReplace
170
171
  );
171
172
  }
172
173
 
173
174
  // Either we reached the bottom of the state or the point where the routes diverged
174
- const { screen, params } = rewriteNavigationStateToParams(previousState);
175
+ const { screen, params } = rewriteNavigationStateToParams(state);
176
+
175
177
  return {
176
178
  type:
177
179
  lastNavigatorSupportingReplace.type === "stack" ? "REPLACE" : "JUMP_TO",
180
+ target: lastNavigatorSupportingReplace?.key,
178
181
  payload: {
179
182
  name: screen,
180
183
  params,
181
- // Ensure that the last navigator supporting replace is the one that handles the action
182
- source: lastNavigatorSupportingReplace?.key,
183
184
  },
184
185
  };
185
186
  }
@@ -17,7 +17,7 @@ export function useWarnOnce(
17
17
  key = message
18
18
  ) {
19
19
  // useLayoutEffect typically doesn't run in node environments.
20
- // Combined with skipWarn, this should prevent unwanted warnings
20
+ // Combined with skipWarn, this should prevent unwanted warnings during SSR rendering
21
21
  useLayoutEffect(() => {
22
22
  if (guard && canWarn && !warned.has(key)) {
23
23
  warned.add(key);
@@ -27,8 +27,11 @@ export function useWarnOnce(
27
27
  }
28
28
 
29
29
  export function useDeprecated(
30
+ /** The deprecated message to display */
30
31
  message: string,
32
+ /** The guard to cause the warning to being displayed */
31
33
  guard: unknown = true,
34
+ /** The key to use for the warning. Used to detect if the warning has already been shown. */
32
35
  key = message
33
36
  ) {
34
37
  return useWarnOnce(key, guard, `Expo Router: ${message}`);
@@ -48,7 +48,7 @@ export function Screen<TOptions extends object = object>({
48
48
  // eslint-disable-next-line react-hooks/rules-of-hooks
49
49
  useDeprecated(
50
50
  "The `redirect` prop on <Screen /> is deprecated and will be removed. Please use `router.redirect` instead",
51
- redirect
51
+ Boolean(redirect)
52
52
  );
53
53
  }
54
54