@@ -24,21 +24,23 @@ import { RouteRecordNormalized } from './matcher/types'
24
24
import { isESModule } from './utils'
25
25
import { warn } from './warning'
26
26
27
- function registerGuard ( list : NavigationGuard [ ] , guard : NavigationGuard ) {
27
+ function registerGuard (
28
+ record : RouteRecordNormalized ,
29
+ name : 'leaveGuards' | 'updateGuards' ,
30
+ guard : NavigationGuard
31
+ ) {
28
32
const removeFromList = ( ) => {
29
- const index = list . indexOf ( guard )
30
- if ( index > - 1 ) list . splice ( index , 1 )
33
+ record [ name ] . delete ( guard )
31
34
}
32
35
33
36
onUnmounted ( removeFromList )
34
37
onDeactivated ( removeFromList )
35
38
36
39
onActivated ( ( ) => {
37
- const index = list . indexOf ( guard )
38
- if ( index < 0 ) list . push ( guard )
40
+ record [ name ] . add ( guard )
39
41
} )
40
42
41
- list . push ( guard )
43
+ record [ name ] . add ( guard )
42
44
}
43
45
44
46
/**
@@ -65,7 +67,7 @@ export function onBeforeRouteLeave(leaveGuard: NavigationGuard) {
65
67
return
66
68
}
67
69
68
- registerGuard ( activeRecord . leaveGuards , leaveGuard )
70
+ registerGuard ( activeRecord , ' leaveGuards' , leaveGuard )
69
71
}
70
72
71
73
/**
@@ -92,7 +94,7 @@ export function onBeforeRouteUpdate(updateGuard: NavigationGuard) {
92
94
return
93
95
}
94
96
95
- registerGuard ( activeRecord . updateGuards , updateGuard )
97
+ registerGuard ( activeRecord , ' updateGuards' , updateGuard )
96
98
}
97
99
98
100
export function guardToPromiseFn (
0 commit comments