Skip to content

Commit 9d188aa

Browse files
committed
fix(history): proper destroy in memory history
1 parent 8e6ebdf commit 9d188aa

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

__tests__/history/memory.spec.ts

+19
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,29 @@ describe('Memory history', () => {
152152
const spy = jest.fn()
153153
history.listen(spy)
154154
history.destroy()
155+
history.push('/2')
155156
history.go(-1)
156157
expect(spy).not.toHaveBeenCalled()
157158
})
158159

160+
it('can be reused after destroy', () => {
161+
const history = createMemoryHistory()
162+
history.push('/1')
163+
history.push('/2')
164+
history.push('/3')
165+
history.go(-1)
166+
167+
expect(history.location).toBe('/2')
168+
history.destroy()
169+
history.go(-1)
170+
expect(history.location).toBe(START)
171+
history.push('/4')
172+
history.push('/5')
173+
expect(history.location).toBe('/5')
174+
history.go(-1)
175+
expect(history.location).toBe('/4')
176+
})
177+
159178
it('can avoid listeners with back and forward', () => {
160179
const history = createMemoryHistory()
161180
const spy = jest.fn()

src/history/memory.ts

+3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ export function createMemoryHistory(base: string = ''): RouterHistory {
5252
const routerHistory: RouterHistory = {
5353
// rewritten by Object.defineProperty
5454
location: START,
55+
// TODO: should be kept in queue
5556
state: {},
5657
base,
5758
createHref: createHref.bind(null, base),
@@ -75,6 +76,8 @@ export function createMemoryHistory(base: string = ''): RouterHistory {
7576
},
7677
destroy() {
7778
listeners = []
79+
queue = [START]
80+
position = 0
7881
},
7982

8083
go(delta, shouldTrigger = true) {

0 commit comments

Comments
 (0)