Skip to content

Commit 5d68a29

Browse files
committed
feat(devtools): better search
1 parent b792d9f commit 5d68a29

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

e2e/webpack.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ fs.readdirSync(__dirname).forEach(dir => {
1616

1717
const globalCss = resolve(__dirname, 'global.css')
1818

19+
/** @type {import('webpack').ConfigurationFactory} */
1920
const config = (env = {}) => ({
2021
// Expose __dirname to allow automatically setting basename.
2122
context: __dirname,
@@ -74,7 +75,7 @@ const config = (env = {}) => ({
7475
},
7576
plugins: [
7677
new webpack.DefinePlugin({
77-
__DEV__: JSON.stringify(process.env.NODE_ENV !== 'production'),
78+
__DEV__: JSON.stringify(!env.prod),
7879
__CI__: JSON.stringify(process.env.CI || false),
7980
__BROWSER__: 'true',
8081
'process.env': {

playground/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"include": ["./**/*.ts"],
2+
"include": ["*.ts", "api", "../src/global.d.ts", "shim.d.ts"],
33
"compilerOptions": {
44
"target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */,
55
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,

src/devtools.ts

+19-8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
TimelineEvent,
88
} from '@vue/devtools-api'
99
import { watch } from 'vue'
10+
import { decode } from './encoding'
1011
import { RouterMatcher } from './matcher'
1112
import { RouteRecordMatcher } from './matcher/pathMatcher'
1213
import { PathParser } from './matcher/pathParserRanker'
@@ -107,7 +108,7 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
107108

108109
router.beforeEach((to, from) => {
109110
const data: TimelineEvent<any, any>['data'] = {
110-
guard: formatDisplay('beforEach'),
111+
guard: formatDisplay('beforeEach'),
111112
from: formatRouteLocation(
112113
from,
113114
'Current Location during this navigation'
@@ -175,13 +176,15 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) {
175176

176177
api.on.getInspectorTree(payload => {
177178
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 &&
182184
// save isActive state
183-
isRouteMatching(route, payload.filter))
184-
)
185+
isRouteMatching(route, payload.filter.toLowerCase())
186+
)
187+
}
185188
// reset match state if no filter is provided
186189
if (!payload.filter) {
187190
routes.forEach(route => {
@@ -355,8 +358,16 @@ function isRouteMatching(route: RouteRecordMatcher, filter: string): boolean {
355358
return false
356359
}
357360

361+
const path = route.record.path.toLowerCase()
362+
const decodedPath = decode(path)
363+
358364
// 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
360371
if (route.record.name && String(route.record.name).includes(filter))
361372
return true
362373

0 commit comments

Comments
 (0)