@@ -229,33 +229,42 @@ export function createRouter({
229
229
}
230
230
}
231
231
232
+ function locationAsObject (
233
+ to : RouteLocationRaw | RouteLocationNormalized
234
+ ) : Exclude < RouteLocationRaw , string > | RouteLocationNormalized {
235
+ return typeof to === 'string' ? { path : to } : to
236
+ }
237
+
232
238
function push ( to : RouteLocationRaw | RouteLocation ) {
233
- return pushWithRedirect ( to , undefined )
239
+ return pushWithRedirect ( to )
234
240
}
235
241
236
242
function replace ( to : RouteLocationRaw | RouteLocationNormalized ) {
237
- const location = typeof to === 'string' ? { path : to } : to
238
- return push ( { ...location , replace : true } )
243
+ return push ( { ...locationAsObject ( to ) , replace : true } )
239
244
}
240
245
241
246
async function pushWithRedirect (
242
247
to : RouteLocationRaw | RouteLocation ,
243
- redirectedFrom : RouteLocation | undefined
248
+ redirectedFrom ? : RouteLocation
244
249
) : Promise < NavigationFailure | void > {
245
250
const targetLocation : RouteLocation = ( pendingLocation = resolve ( to ) )
246
251
const from = currentRoute . value
247
252
const data : HistoryState | undefined = ( to as any ) . state
248
- // @ts -ignore: no need to check the string as force do not exist on a string
249
- const force : boolean | undefined = to . force
253
+ const force : boolean | undefined = ( to as any ) . force
254
+ const replace : boolean | undefined = ( to as any ) . replace === true
250
255
251
256
if ( ! force && isSameRouteLocation ( from , targetLocation ) ) return
252
257
253
258
const lastMatched =
254
259
targetLocation . matched [ targetLocation . matched . length - 1 ]
255
260
if ( lastMatched && 'redirect' in lastMatched ) {
256
261
const { redirect } = lastMatched
262
+ // transform it into an object to pass the original RouteLocaleOptions
263
+ let newTargetLocation = locationAsObject (
264
+ typeof redirect === 'function' ? redirect ( targetLocation ) : redirect
265
+ )
257
266
return pushWithRedirect (
258
- typeof redirect === 'function' ? redirect ( targetLocation ) : redirect ,
267
+ { ... newTargetLocation , state : data , force , replace } ,
259
268
// keep original redirectedFrom if it exists
260
269
redirectedFrom || targetLocation
261
270
)
@@ -301,8 +310,7 @@ export function createRouter({
301
310
toLocation as RouteLocationNormalizedLoaded ,
302
311
from ,
303
312
true ,
304
- // RouteLocationNormalized will give undefined
305
- ( to as RouteLocationRaw ) . replace === true ,
313
+ replace ,
306
314
data
307
315
)
308
316
0 commit comments