|
7 | 7 | TimelineEvent,
|
8 | 8 | } from '@vue/devtools-api'
|
9 | 9 | import { watch } from 'vue'
|
| 10 | +import { decode } from './encoding' |
10 | 11 | import { RouterMatcher } from './matcher'
|
11 | 12 | import { RouteRecordMatcher } from './matcher/pathMatcher'
|
12 | 13 | import { PathParser } from './matcher/pathParserRanker'
|
@@ -107,7 +108,7 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
|
107 | 108 |
|
108 | 109 | router.beforeEach((to, from) => {
|
109 | 110 | const data: TimelineEvent<any, any>['data'] = {
|
110 |
| - guard: formatDisplay('beforEach'), |
| 111 | + guard: formatDisplay('beforeEach'), |
111 | 112 | from: formatRouteLocation(
|
112 | 113 | from,
|
113 | 114 | 'Current Location during this navigation'
|
@@ -175,13 +176,15 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
|
175 | 176 |
|
176 | 177 | api.on.getInspectorTree(payload => {
|
177 | 178 | if (payload.app === app && payload.inspectorId === routerInspectorId) {
|
178 |
| - const routes = matcher.getRoutes().filter( |
179 |
| - route => |
180 |
| - !route.parent && |
181 |
| - (!payload.filter || |
| 179 | + let routes = matcher.getRoutes() |
| 180 | + if (payload.filter) { |
| 181 | + routes = routes.filter( |
| 182 | + route => |
| 183 | + !route.parent && |
182 | 184 | // save isActive state
|
183 |
| - isRouteMatching(route, payload.filter)) |
184 |
| - ) |
| 185 | + isRouteMatching(route, payload.filter.toLowerCase()) |
| 186 | + ) |
| 187 | + } |
185 | 188 | // reset match state if no filter is provided
|
186 | 189 | if (!payload.filter) {
|
187 | 190 | routes.forEach(route => {
|
@@ -355,8 +358,16 @@ function isRouteMatching(route: RouteRecordMatcher, filter: string): boolean {
|
355 | 358 | return false
|
356 | 359 | }
|
357 | 360 |
|
| 361 | + const path = route.record.path.toLowerCase() |
| 362 | + const decodedPath = decode(path) |
| 363 | + |
358 | 364 | // also allow partial matching on the path
|
359 |
| - if (route.record.path.startsWith(filter)) return true |
| 365 | + if ( |
| 366 | + !filter.startsWith('/') && |
| 367 | + (decodedPath.includes(filter) || path.includes(filter)) |
| 368 | + ) |
| 369 | + return true |
| 370 | + if (decodedPath.startsWith(filter) || path.startsWith(filter)) return true |
360 | 371 | if (route.record.name && String(route.record.name).includes(filter))
|
361 | 372 | return true
|
362 | 373 |
|
|
0 commit comments