1
- import { createRouter , createWebHistory } from '../../src'
1
+ import { createRouter , createWebHistory , onBeforeRouteUpdate } from '../../src'
2
2
import { RouteComponent } from '../../src/types'
3
- import { createApp , ref , watchEffect , App } from 'vue'
3
+ import { createApp , ref , watchEffect , App , inject } from 'vue'
4
4
5
5
const Home : RouteComponent = {
6
6
template : `<div class="home">Home</div>` ,
7
7
}
8
8
9
9
const User : RouteComponent = {
10
- template : `<div class="user">User {{ $route.params.id }}</div>` ,
10
+ template : `<div class="user">User {{ $route.params.id }}. Updated <span class="count">{{ count }}</span></div>` ,
11
+ data : ( ) => ( { count : 0 } ) ,
12
+
13
+ beforeRouteEnter ( to , from , next ) {
14
+ next ( vm => {
15
+ // @ts -ignore
16
+ console . log ( 'enter from ' , vm . id )
17
+ // @ts -ignore
18
+ } )
19
+ } ,
20
+
21
+ beforeRouteUpdate ( to , from , next ) {
22
+ // this.count++
23
+ next ( )
24
+ } ,
25
+
26
+ setup ( ) {
27
+ const id = inject ( 'id' ) !
28
+
29
+ if ( id !== 1 )
30
+ onBeforeRouteUpdate ( function ( to , from , next ) {
31
+ // @ts -ignore
32
+ console . log ( 'update from ' , id , this . id )
33
+ // @ts -ignore
34
+ // this.count++
35
+ next ( )
36
+ } )
37
+
38
+ return { id }
39
+ } ,
11
40
}
12
41
42
+ let looper = [ 1 , 2 , 3 ]
43
+
44
+ const NamedViews : RouteComponent [ ] = looper . map ( i => ( {
45
+ name : 'part-' + i ,
46
+
47
+ template : `<div class="named part-${ i } ">Part ${ i } . Updated <span class="count">{{ count }}</span></div>` ,
48
+
49
+ data : ( ) => ( { count : 0 } ) ,
50
+
51
+ beforeRouteUpdate ( to , from , next ) {
52
+ // @ts -ignore
53
+ // this.count++
54
+ next ( )
55
+ } ,
56
+ } ) )
57
+
13
58
// path popstate listeners to track the call count
14
59
let activePopStateListeners = ref ( 0 )
15
60
let guardCallCount = ref ( 0 )
@@ -43,7 +88,19 @@ const router = createRouter({
43
88
history : createWebHistory ( '/' + __dirname ) ,
44
89
routes : [
45
90
{ path : '/' , component : Home } ,
46
- { path : '/users/:id' , component : User } ,
91
+ {
92
+ path : '/users/:id' ,
93
+ components : {
94
+ default : User ,
95
+ ...NamedViews . reduce (
96
+ ( routeComponents , component ) => ( {
97
+ ...routeComponents ,
98
+ [ component . name ! ] : component ,
99
+ } ) ,
100
+ { } as Record < string , RouteComponent >
101
+ ) ,
102
+ } ,
103
+ } ,
47
104
] ,
48
105
} )
49
106
@@ -52,8 +109,6 @@ router.beforeEach((to, from, next) => {
52
109
next ( )
53
110
} )
54
111
55
- let looper = [ 1 , 2 , 3 ]
56
-
57
112
let apps : Array < App | null > = [ null , null , null ]
58
113
59
114
looper . forEach ( ( n , i ) => {
@@ -71,10 +126,12 @@ looper.forEach((n, i) => {
71
126
</ul>
72
127
73
128
<router-view></router-view>
129
+ <router-view name="part-${ n } "></router-view>
74
130
</div>
75
131
` ,
76
132
} ) )
77
133
app . use ( router )
134
+ app . provide ( 'id' , n )
78
135
app . mount ( '#app-' + n )
79
136
} )
80
137
0 commit comments