@@ -14,7 +14,7 @@ import { RouterMatcher } from './matcher'
14
14
import { RouteRecordMatcher } from './matcher/pathMatcher'
15
15
import { PathParser } from './matcher/pathParserRanker'
16
16
import { Router } from './router'
17
- import { RouteLocationNormalized } from './types'
17
+ import { RouteLocation , RouteLocationNormalized } from './types'
18
18
import { assign } from './utils'
19
19
20
20
function formatRouteLocation (
@@ -53,15 +53,24 @@ let routerId = 0
53
53
export function addDevtools ( app : App , router : Router , matcher : RouterMatcher ) {
54
54
// Take over router.beforeEach and afterEach
55
55
56
+ // make sure we are not registering the devtool twice
57
+ if ( ( router as any ) . __hasDevtools ) return
58
+ ; ( router as any ) . __hasDevtools = true
59
+
56
60
// increment to support multiple router instances
57
61
const id = routerId ++
58
62
setupDevtoolsPlugin (
59
63
{
60
- id : 'Router ' + ( id ? ' ' + id : '' ) ,
64
+ id : 'org.vuejs.router ' + ( id ? '. ' + id : '' ) ,
61
65
label : 'Vue Router' ,
66
+ packageName : 'vue-router' ,
67
+ homepage : 'https://next.router.vuejs.org/' ,
68
+ logo : 'https://vuejs.org/images/icons/favicon-96x96.png' ,
69
+ componentStateTypes : [ 'Routing' ] ,
62
70
app,
63
71
} ,
64
72
api => {
73
+ // display state added by the router
65
74
api . on . inspectComponent ( ( payload , ctx ) => {
66
75
if ( payload . instanceData ) {
67
76
payload . instanceData . state . push ( {
@@ -76,10 +85,38 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
76
85
}
77
86
} )
78
87
88
+ // mark router-link as active
89
+ api . on . visitComponentTree ( ( { treeNode : node , componentInstance } ) => {
90
+ if ( node . name === 'RouterLink' ) {
91
+ if ( componentInstance . __vrl_route ) {
92
+ node . tags . push ( {
93
+ label : ( componentInstance . __vrl_route as RouteLocation ) . path ,
94
+ textColor : 0 ,
95
+ backgroundColor : ORANGE_400 ,
96
+ } )
97
+ }
98
+
99
+ if ( componentInstance . __vrl_exactActive ) {
100
+ node . tags . push ( {
101
+ label : 'exact' ,
102
+ textColor : 0 ,
103
+ backgroundColor : LIME_500 ,
104
+ } )
105
+ }
106
+
107
+ if ( componentInstance . __vrl_active ) {
108
+ node . tags . push ( {
109
+ label : 'active' ,
110
+ textColor : 0 ,
111
+ backgroundColor : BLUE_600 ,
112
+ } )
113
+ }
114
+ }
115
+ } )
116
+
79
117
watch ( router . currentRoute , ( ) => {
80
118
// refresh active state
81
119
refreshRoutesView ( )
82
- // @ts -ignore
83
120
api . notifyComponentUpdate ( )
84
121
api . sendInspectorTree ( routerInspectorId )
85
122
} )
@@ -103,14 +140,18 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
103
140
api . addTimelineEvent ( {
104
141
layerId : navigationsLayerId ,
105
142
event : {
106
- // @ts -ignore
143
+ title : 'Error' ,
144
+ subtitle : 'An uncaught error happened during navigation' ,
107
145
logType : 'error' ,
108
146
time : Date . now ( ) ,
109
147
data : { error } ,
110
148
} ,
111
149
} )
112
150
} )
113
151
152
+ // attached to `meta` and used to group events
153
+ let navigationId = 0
154
+
114
155
router . beforeEach ( ( to , from ) => {
115
156
const data : TimelineEvent < any , any > [ 'data' ] = {
116
157
guard : formatDisplay ( 'beforeEach' ) ,
@@ -121,12 +162,18 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
121
162
to : formatRouteLocation ( to , 'Target location' ) ,
122
163
}
123
164
165
+ // Used to group navigations together, hide from devtools
166
+ Object . defineProperty ( to . meta , '__navigationId' , {
167
+ value : navigationId ++ ,
168
+ } )
169
+
124
170
api . addTimelineEvent ( {
125
171
layerId : navigationsLayerId ,
126
172
event : {
127
173
time : Date . now ( ) ,
128
- meta : { } ,
174
+ title : 'Start of navigation' ,
129
175
data,
176
+ groupId : ( to . meta as any ) . __navigationId ,
130
177
} ,
131
178
} )
132
179
} )
@@ -161,11 +208,11 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
161
208
api . addTimelineEvent ( {
162
209
layerId : navigationsLayerId ,
163
210
event : {
211
+ title : 'End of navigation' ,
164
212
time : Date . now ( ) ,
165
213
data,
166
- // @ts -ignore
167
214
logType : failure ? 'warning' : 'default' ,
168
- meta : { } ,
215
+ groupId : ( to . meta as any ) . __navigationId ,
169
216
} ,
170
217
} )
171
218
} )
@@ -395,7 +442,6 @@ function formatRouteRecordForInspector(
395
442
id,
396
443
label : record . path ,
397
444
tags,
398
- // @ts -ignore
399
445
children : route . children . map ( formatRouteRecordForInspector ) ,
400
446
}
401
447
}
0 commit comments