expo-router 2.0.10 → 2.0.11

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 +1 @@
1
- {"version":3,"file":"routing.d.ts","sourceRoot":"","sources":["../../src/global-state/routing.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,IAAI,EAAe,MAAM,cAAc,CAAC;AAGjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAUlD,wBAAgB,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE,IAAI,QAEhD;AAED,wBAAgB,OAAO,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE,IAAI,QAEnD;AAED,wBAAgB,MAAM,CAAC,IAAI,EAAE,WAAW,QAGvC;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,WAAW,GAAG,OAAO,CAUpD;AAED,wBAAgB,SAAS,CACvB,IAAI,EAAE,WAAW,EACjB,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAM,OAI7C;AAED,wBAAgB,MAAM,CAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,QAsDrE"}
1
+ {"version":3,"file":"routing.d.ts","sourceRoot":"","sources":["../../src/global-state/routing.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,IAAI,EAAe,MAAM,cAAc,CAAC;AAGjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAUlD,wBAAgB,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE,IAAI,QAEhD;AAED,wBAAgB,OAAO,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE,IAAI,QAEnD;AAED,wBAAgB,MAAM,CAAC,IAAI,EAAE,WAAW,QAGvC;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,WAAW,GAAG,OAAO,CAUpD;AAED,wBAAgB,SAAS,CACvB,IAAI,EAAE,WAAW,EACjB,MAAM,GAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAM,OAI7C;AAED,wBAAgB,MAAM,CAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,QAkErE"}
@@ -1,5 +1,3 @@
1
1
  import "@testing-library/jest-native/extend-expect";
2
- export declare const initialUrlRef: {
3
- value: string | Promise<string>;
4
- };
2
+ export declare function setInitialUrl(value: string): void;
5
3
  //# sourceMappingURL=mocks.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mocks.d.ts","sourceRoot":"","sources":["../../src/testing-library/mocks.ts"],"names":[],"mappings":"AAAA,OAAO,4CAA4C,CAAC;AAgBpD,eAAO,MAAM,aAAa,EAAE;IAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;CAE5D,CAAC"}
1
+ {"version":3,"file":"mocks.d.ts","sourceRoot":"","sources":["../../src/testing-library/mocks.ts"],"names":[],"mappings":"AAAA,OAAO,4CAA4C,CAAC;AAkBpD,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,QAE1C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-router",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
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.12",
108
+ "@expo/metro-runtime": "2.2.13",
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.16",
113
+ "expo-head": "0.0.17",
114
114
  "expo-splash-screen": "~0.20.2",
115
115
  "query-string": "7.1.3",
116
116
  "react-helmet-async": "^1.3.0",
@@ -78,16 +78,28 @@ export function linkTo(this: RouterStore, href: string, event?: string) {
78
78
  const rootState = navigationRef.getRootState();
79
79
 
80
80
  if (href.startsWith(".")) {
81
- let base =
82
- this.linking.getPathFromState?.(rootState, {
83
- screens: [],
84
- preserveGroups: true,
85
- }) ?? "";
86
-
87
- if (base && !base.endsWith("/")) {
88
- base += "/..";
89
- }
90
- href = resolve(base, href);
81
+ const base =
82
+ this.routeInfo?.segments
83
+ ?.map((segment) => {
84
+ if (!segment.startsWith("[")) return segment;
85
+
86
+ if (segment.startsWith("[...")) {
87
+ segment = segment.slice(4, -1);
88
+ const params = this.routeInfo?.params?.[segment];
89
+ if (Array.isArray(params)) {
90
+ return params.join("/");
91
+ } else {
92
+ return params?.split(",")?.join("/") ?? "";
93
+ }
94
+ } else {
95
+ segment = segment.slice(1, -1);
96
+ return this.routeInfo?.params?.[segment];
97
+ }
98
+ })
99
+ .filter(Boolean)
100
+ .join("/") ?? "/";
101
+
102
+ href = resolve(base + "/..", href);
91
103
  }
92
104
 
93
105
  const state = this.linking.getStateFromPath!(href, this.linking.config);
@@ -15,7 +15,7 @@ import {
15
15
  requireContext,
16
16
  requireContextWithOverrides,
17
17
  } from "./context-stubs";
18
- import { initialUrlRef } from "./mocks";
18
+ import { setInitialUrl } from "./mocks";
19
19
 
20
20
  // re-export everything
21
21
  export * from "@testing-library/react-native";
@@ -60,7 +60,8 @@ export function renderRouter(
60
60
  let ctx: RequireContext;
61
61
 
62
62
  // Reset the initial URL
63
- initialUrlRef.value = initialUrl as any;
63
+
64
+ setInitialUrl(initialUrl);
64
65
 
65
66
  // Force the render to be synchronous
66
67
  process.env.EXPO_ROUTER_IMPORT_MODE_WEB = "sync";
@@ -14,9 +14,11 @@ jest.mock("react-native-reanimated", () => {
14
14
  // Silence the warning: Animated: `useNativeDriver` is not supported because the native animated module is missing
15
15
  jest.mock("react-native/Libraries/Animated/NativeAnimatedHelper");
16
16
 
17
- export const initialUrlRef: { value: string | Promise<string> } = {
18
- value: "",
19
- };
17
+ let mockInitialUrl: string | Promise<string> = "";
18
+
19
+ export function setInitialUrl(value: string) {
20
+ mockInitialUrl = value;
21
+ }
20
22
 
21
23
  jest.mock("expo-linking", () => {
22
24
  const module: typeof import("expo-linking") = {
@@ -31,7 +33,7 @@ jest.mock("expo-linking", () => {
31
33
  return { remove() {} } as any;
32
34
  },
33
35
  async getInitialURL() {
34
- return initialUrlRef.value;
36
+ return mockInitialUrl;
35
37
  },
36
38
  };
37
39