Skip to content

Commit 0b57f13

Browse files
authoredJun 11, 2024··
fix(client): fix mismatching on regex route path (#433)
1 parent db21dd8 commit 0b57f13

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed
 

‎packages/client/src/components/pages/RoutePathItem.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const emit = defineEmits<{
1111
}>()
1212
1313
function parseExpressRoute(route: string) {
14-
return route.split(/(:\w+[?*]?)/).filter(Boolean)
14+
return route.split(/(:\w+[?*+]?(?:\([^)]*\))?[?*+]?)/).filter(Boolean)
1515
}
1616
1717
const partsInput = ref<string[]>([])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import type { RouteRecordNormalized } from 'vue-router'
2+
import { mount } from '@vue/test-utils'
3+
import RoutePathItem from '../RoutePathItem.vue'
4+
5+
describe('component: RoutePathItem', () => {
6+
it('parseExpressRoute can correctly split the route string', () => {
7+
const component = mount(RoutePathItem, {
8+
props: {
9+
route: {
10+
path: '/hey/',
11+
name: 'heya',
12+
} as RouteRecordNormalized,
13+
},
14+
})
15+
const parseExpressRoute = (component.vm as any).parseExpressRoute
16+
expect(parseExpressRoute('/foo/:id(\\d+)/bar')).toEqual(['/foo/', ':id(\\d+)', '/bar'])
17+
expect(parseExpressRoute('/foo/:id*')).toEqual(['/foo/', ':id*'])
18+
expect(parseExpressRoute('/foo/:id+')).toEqual(['/foo/', ':id+'])
19+
expect(parseExpressRoute('/foo/:id/bar')).toEqual(['/foo/', ':id', '/bar'])
20+
expect(parseExpressRoute('/foo/:id')).toEqual(['/foo/', ':id'])
21+
expect(parseExpressRoute('/:id(\\d+)+')).toEqual(['/', ':id(\\d+)+'])
22+
expect(parseExpressRoute('/:id(\\d+)*')).toEqual(['/', ':id(\\d+)*'])
23+
expect(parseExpressRoute('/:id(\\d+)*/:name+')).toEqual(['/', ':id(\\d+)*', '/', ':name+'])
24+
// Example from Vue Router documentation
25+
// https://router.vuejs.org/guide/essentials/dynamic-matching.html#Catch-all-404-Not-found-Route
26+
expect(parseExpressRoute('/foo-:bar(.*)')).toEqual(['/foo-', ':bar(.*)'])
27+
})
28+
})

‎vitest.config.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
import { defineConfig } from 'vitest/config'
22
import Vue from '@vitejs/plugin-vue'
3+
import AutoImport from 'unplugin-auto-import/vite'
34

45
export default defineConfig({
5-
plugins: [Vue()],
6+
plugins: [Vue(), AutoImport({
7+
imports: [
8+
'vue',
9+
'vue-router',
10+
'@vueuse/core',
11+
],
12+
dts: true,
13+
})],
614
define: {
715
__DEV__: true,
816
__FEATURE_PROD_DEVTOOLS__: true,

0 commit comments

Comments
 (0)
Please sign in to comment.