Skip to content

Commit 2a14c19

Browse files
committed
fix(hash): only pushState the hash part
Fix #495
1 parent b8c7ec4 commit 2a14c19

File tree

4 files changed

+22
-10
lines changed

4 files changed

+22
-10
lines changed

__tests__/history/hash.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ describe('History Hash', () => {
101101
it('should use a correct base', () => {
102102
createWebHashHistory()
103103
// both, a trailing / and none work
104-
expect(createWebHistory).toHaveBeenCalledWith('/usr/some-file.html#')
104+
expect(createWebHistory).toHaveBeenCalledWith('#')
105105
})
106106
})
107107
})

__tests__/history/html5.spec.ts

+15-2
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,28 @@ describe('History HTMl5', () => {
9393
spy.mockRestore()
9494
})
9595

96-
it('works with file:/// urls and a base', () => {
96+
it('calls push with hash part of the url with a base', () => {
9797
dom.reconfigure({ url: 'file:///usr/etc/index.html' })
9898
let history = createWebHistory('/usr/etc/index.html#/')
9999
let spy = jest.spyOn(window.history, 'pushState')
100100
history.push('/foo')
101101
expect(spy).toHaveBeenCalledWith(
102102
expect.anything(),
103103
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'
105118
)
106119
spy.mockRestore()
107120
})

src/history/hash.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function createWebHashHistory(base?: string): RouterHistory {
2929
// Make sure this implementation is fine in terms of encoding, specially for IE11
3030
// for `file://`, directly use the pathname and ignore the base
3131
// 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 : ''
3333
// allow the user to provide a `#` in the middle: `/base/#/app`
3434
if (base.indexOf('#') < 0) base += '#'
3535

src/history/html5.ts

+5-6
Original file line numberDiff line numberDiff line change
@@ -202,13 +202,12 @@ function useHistoryStateNavigation(base: string) {
202202
state: StateEntry,
203203
replace: boolean
204204
): void {
205+
// when the base has a `#`, only use that for the URL
206+
const hashIndex = base.indexOf('#')
205207
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
212211
try {
213212
// BROWSER QUIRK
214213
// NOTE: Safari throws a SecurityError when calling this function 100 times in 30 seconds

0 commit comments

Comments
 (0)