Skip to content

Commit add447b

Browse files
committed
feat: pass state in guards and redirect
Close #1472
1 parent a73edd1 commit add447b

File tree

2 files changed

+56
-2
lines changed

2 files changed

+56
-2
lines changed

packages/router/__tests__/guards/beforeEach.spec.ts

+48
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ const routes: RouteRecordRaw[] = [
1919
{ path: 'home', name: 'nested-home', component: Home },
2020
],
2121
},
22+
{
23+
path: '/redirect',
24+
redirect: { path: '/other', state: { fromRecord: true } },
25+
},
2226
]
2327

2428
describe('router.beforeEach', () => {
@@ -106,6 +110,50 @@ describe('router.beforeEach', () => {
106110
expect(router.currentRoute.value.fullPath).toBe('/other')
107111
})
108112

113+
it('can add state when redirecting', async () => {
114+
const router = createRouter({ routes })
115+
await router.push('/foo')
116+
router.beforeEach((to, from) => {
117+
// only allow going to /other
118+
if (to.fullPath !== '/other') {
119+
return {
120+
path: '/other',
121+
state: { added: 'state' },
122+
}
123+
}
124+
return
125+
})
126+
127+
const spy = jest.spyOn(history, 'pushState')
128+
await router.push({ path: '/', state: { a: 'a' } })
129+
expect(spy).toHaveBeenCalledTimes(1)
130+
// called before redirect
131+
expect(spy).toHaveBeenNthCalledWith(
132+
1,
133+
expect.objectContaining({ added: 'state', a: 'a' }),
134+
'',
135+
expect.stringMatching(/\/other$/)
136+
)
137+
spy.mockClear()
138+
})
139+
140+
it('can add state to a redirect route', async () => {
141+
const router = createRouter({ routes })
142+
await router.push('/foo')
143+
144+
const spy = jest.spyOn(history, 'pushState')
145+
await router.push({ path: '/redirect', state: { a: 'a' } })
146+
expect(spy).toHaveBeenCalledTimes(1)
147+
// called before redirect
148+
expect(spy).toHaveBeenNthCalledWith(
149+
1,
150+
expect.objectContaining({ fromRecord: true, a: 'a' }),
151+
'',
152+
expect.stringMatching(/\/other$/)
153+
)
154+
spy.mockClear()
155+
})
156+
109157
async function assertRedirect(redirectFn: (i: string) => RouteLocationRaw) {
110158
const spy = jest.fn()
111159
const router = createRouter({ routes })

packages/router/src/router.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,10 @@ export function createRouter(options: RouterOptions): Router {
655655
if (shouldRedirect)
656656
return pushWithRedirect(
657657
assign(locationAsObject(shouldRedirect), {
658-
state: data,
658+
state:
659+
typeof shouldRedirect === 'object'
660+
? assign({}, data, shouldRedirect.state)
661+
: data,
659662
force,
660663
replace,
661664
}),
@@ -735,7 +738,10 @@ export function createRouter(options: RouterOptions): Router {
735738
},
736739
locationAsObject(failure.to),
737740
{
738-
state: data,
741+
state:
742+
typeof failure.to === 'object'
743+
? assign({}, data, failure.to.state)
744+
: data,
739745
force,
740746
}
741747
),

0 commit comments

Comments
 (0)