File tree 4 files changed +22
-10
lines changed
4 files changed +22
-10
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ describe('History Hash', () => {
101
101
it ( 'should use a correct base' , ( ) => {
102
102
createWebHashHistory ( )
103
103
// both, a trailing / and none work
104
- expect ( createWebHistory ) . toHaveBeenCalledWith ( '/usr/some-file.html #' )
104
+ expect ( createWebHistory ) . toHaveBeenCalledWith ( '#' )
105
105
} )
106
106
} )
107
107
} )
Original file line number Diff line number Diff line change @@ -93,15 +93,28 @@ describe('History HTMl5', () => {
93
93
spy . mockRestore ( )
94
94
} )
95
95
96
- it ( 'works with file:/// urls and a base' , ( ) => {
96
+ it ( 'calls push with hash part of the url with a base' , ( ) => {
97
97
dom . reconfigure ( { url : 'file:///usr/etc/index.html' } )
98
98
let history = createWebHistory ( '/usr/etc/index.html#/' )
99
99
let spy = jest . spyOn ( window . history , 'pushState' )
100
100
history . push ( '/foo' )
101
101
expect ( spy ) . toHaveBeenCalledWith (
102
102
expect . anything ( ) ,
103
103
expect . any ( String ) ,
104
- 'file:///usr/etc/index.html#/foo'
104
+ '#/foo'
105
+ )
106
+ spy . mockRestore ( )
107
+ } )
108
+
109
+ it ( 'works with something after the hash in the base' , ( ) => {
110
+ dom . reconfigure ( { url : 'file:///usr/etc/index.html' } )
111
+ let history = createWebHistory ( '#something' )
112
+ let spy = jest . spyOn ( window . history , 'pushState' )
113
+ history . push ( '/foo' )
114
+ expect ( spy ) . toHaveBeenCalledWith (
115
+ expect . anything ( ) ,
116
+ expect . any ( String ) ,
117
+ '#something/foo'
105
118
)
106
119
spy . mockRestore ( )
107
120
} )
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export function createWebHashHistory(base?: string): RouterHistory {
29
29
// Make sure this implementation is fine in terms of encoding, specially for IE11
30
30
// for `file://`, directly use the pathname and ignore the base
31
31
// location.pathname contains an initial `/` even at the root: `https://example.com`
32
- base = location . host ? base || location . pathname : location . pathname
32
+ base = location . host ? base || location . pathname : ''
33
33
// allow the user to provide a `#` in the middle: `/base/#/app`
34
34
if ( base . indexOf ( '#' ) < 0 ) base += '#'
35
35
Original file line number Diff line number Diff line change @@ -202,13 +202,12 @@ function useHistoryStateNavigation(base: string) {
202
202
state : StateEntry ,
203
203
replace : boolean
204
204
) : void {
205
+ // when the base has a `#`, only use that for the URL
206
+ const hashIndex = base . indexOf ( '#' )
205
207
const url =
206
- createBaseLocation ( ) +
207
- // preserve any existing query when base has a hash
208
- ( base . indexOf ( '#' ) > - 1 && location . search
209
- ? location . pathname + location . search + '#'
210
- : base ) +
211
- to
208
+ hashIndex > - 1
209
+ ? base . slice ( hashIndex ) + to
210
+ : createBaseLocation ( ) + base + to
212
211
try {
213
212
// BROWSER QUIRK
214
213
// NOTE: Safari throws a SecurityError when calling this function 100 times in 30 seconds
You can’t perform that action at this time.
0 commit comments