Skip to content

Commit 5dce7bc

Browse files
authored
feat(router): support custom parseQuery and stringifyQuery (#136)
1 parent c6c2b6f commit 5dce7bc

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

__tests__/router.spec.ts

+19-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
RouteLocation,
88
START_LOCATION_NORMALIZED,
99
} from '../src/types'
10-
import { RouterHistory } from '../src/history/common'
1110

1211
const routes: RouteRecord[] = [
1312
{ path: '/', component: components.Home, name: 'home' },
@@ -56,9 +55,12 @@ const routes: RouteRecord[] = [
5655
},
5756
]
5857

59-
async function newRouter({ history }: { history?: RouterHistory } = {}) {
58+
async function newRouter({
59+
history,
60+
...args
61+
}: Partial<Parameters<typeof createRouter>[0]> = {}) {
6062
history = history || createMemoryHistory()
61-
const router = createRouter({ history, routes })
63+
const router = createRouter({ history, routes, ...args })
6264
await router.push('/')
6365

6466
return { history, router }
@@ -90,6 +92,20 @@ describe('Router', () => {
9092
)
9193
})
9294

95+
it('can allows the end user to override parseQuery', async () => {
96+
const parseQuery = jest.fn()
97+
const { router } = await newRouter({ parseQuery: parseQuery })
98+
router.resolve('/foo?bar=baz')
99+
expect(parseQuery).toHaveBeenCalled()
100+
})
101+
102+
it('can allows the end user to stringify the query', async () => {
103+
const stringifyQuery = jest.fn()
104+
const { router } = await newRouter({ stringifyQuery: stringifyQuery })
105+
router.resolve({ query: { foo: 'bar' } })
106+
expect(stringifyQuery).toHaveBeenCalled()
107+
})
108+
93109
it('can do initial navigation to /', async () => {
94110
const router = createRouter({
95111
history: createMemoryHistory(),

src/router.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ import {
3333
} from './utils'
3434
import { useCallbacks } from './utils/callbacks'
3535
import { encodeParam, decode } from './utils/encoding'
36-
import { normalizeQuery, parseQuery, stringifyQuery } from './utils/query'
36+
import {
37+
normalizeQuery,
38+
parseQuery as originalParseQuery,
39+
stringifyQuery as originalStringifyQuery,
40+
} from './utils/query'
3741
import { ref, Ref, markNonReactive, nextTick, App, warn } from 'vue'
3842
import { RouteRecordNormalized } from './matcher/types'
3943
import { Link } from './components/Link'
@@ -55,6 +59,8 @@ export interface RouterOptions {
5559
history: RouterHistory
5660
routes: RouteRecord[]
5761
scrollBehavior?: ScrollBehavior
62+
parseQuery?: typeof originalParseQuery
63+
stringifyQuery?: typeof originalStringifyQuery
5864
// TODO: allow customizing encoding functions
5965
}
6066

@@ -87,6 +93,8 @@ export function createRouter({
8793
history,
8894
routes,
8995
scrollBehavior,
96+
parseQuery = originalParseQuery,
97+
stringifyQuery = originalStringifyQuery,
9098
}: RouterOptions): Router {
9199
const matcher = createRouterMatcher(routes, {})
92100

0 commit comments

Comments
 (0)