-
Notifications
You must be signed in to change notification settings - Fork 960
/
createBrowserHistory.js
316 lines (248 loc) · 7.49 KB
/
createBrowserHistory.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
import warning from 'warning'
import invariant from 'invariant'
import { createLocation } from './LocationUtils'
import {
addLeadingSlash,
stripTrailingSlash,
stripPrefix,
parsePath,
createPath
} from './PathUtils'
import createTransitionManager from './createTransitionManager'
import {
canUseDOM,
addEventListener,
removeEventListener,
getConfirmation,
supportsHistory,
supportsPopStateOnHashChange,
isExtraneousPopstateEvent
} from './DOMUtils'
const PopStateEvent = 'popstate'
const HashChangeEvent = 'hashchange'
const getHistoryState = () => {
try {
return window.history.state || {}
} catch (e) {
// IE 11 sometimes throws when accessing window.history.state
// See https://github.com/ReactTraining/history/pull/289
return {}
}
}
/**
* Creates a history object that uses the HTML5 history API including
* pushState, replaceState, and the popstate event.
*/
const createBrowserHistory = (props = {}) => {
invariant(
canUseDOM,
'Browser history needs a DOM'
)
const globalHistory = window.history
const canUseHistory = supportsHistory()
const needsHashChangeListener = !supportsPopStateOnHashChange()
const {
forceRefresh = false,
getUserConfirmation = getConfirmation,
keyLength = 6
} = props
const basename = props.basename ? stripTrailingSlash(addLeadingSlash(props.basename)) : ''
const getDOMLocation = (historyState) => {
const { key, state } = (historyState || {})
const { pathname, search, hash } = window.location
let path = pathname + search + hash
warning(
!(basename && path.indexOf(basename) !== 0),
'You are attempting to use a basename on a page whose URL path does not begin ' +
'with the basename. Expected path "' + path + '" to begin with "' + basename + '".'
)
if (basename)
path = stripPrefix(path, basename)
return {
...parsePath(path),
state,
key
}
}
const createKey = () =>
Math.random().toString(36).substr(2, keyLength)
const transitionManager = createTransitionManager()
const setState = (nextState) => {
Object.assign(history, nextState)
history.length = globalHistory.length
transitionManager.notifyListeners(
history.location,
history.action
)
}
const handlePopState = (event) => {
// Ignore extraneous popstate events in WebKit.
if (isExtraneousPopstateEvent(event))
return
handlePop(getDOMLocation(event.state))
}
const handleHashChange = () => {
handlePop(getDOMLocation(getHistoryState()))
}
let forceNextPop = false
const handlePop = (location) => {
if (forceNextPop) {
forceNextPop = false
setState()
} else {
const action = 'POP'
transitionManager.confirmTransitionTo(location, action, getUserConfirmation, (ok) => {
if (ok) {
setState({ action, location })
} else {
revertPop(location)
}
})
}
}
const revertPop = (fromLocation) => {
const toLocation = history.location
// TODO: We could probably make this more reliable by
// keeping a list of keys we've seen in sessionStorage.
// Instead, we just default to 0 for keys we don't know.
let toIndex = allKeys.indexOf(toLocation.key)
if (toIndex === -1)
toIndex = 0
let fromIndex = allKeys.indexOf(fromLocation.key)
if (fromIndex === -1)
fromIndex = 0
const delta = toIndex - fromIndex
if (delta) {
forceNextPop = true
go(delta)
}
}
const initialLocation = getDOMLocation(getHistoryState())
let allKeys = [ initialLocation.key ]
// Public interface
const createHref = (location) =>
basename + createPath(location)
const push = (path, state) => {
warning(
!(typeof path === 'object' && path.state !== undefined && state !== undefined),
'You should avoid providing a 2nd state argument to push when the 1st ' +
'argument is a location-like object that already has state; it is ignored'
)
const action = 'PUSH'
const location = createLocation(path, state, createKey(), history.location)
transitionManager.confirmTransitionTo(location, action, getUserConfirmation, (ok) => {
if (!ok)
return
const href = createHref(location)
const { key, state } = location
if (canUseHistory) {
globalHistory.pushState({ key, state }, null, href)
if (forceRefresh) {
window.location.href = href
} else {
const prevIndex = allKeys.indexOf(history.location.key)
const nextKeys = allKeys.slice(0, prevIndex === -1 ? 0 : prevIndex + 1)
nextKeys.push(location.key)
allKeys = nextKeys
setState({ action, location })
}
} else {
warning(
state === undefined,
'Browser history cannot push state in browsers that do not support HTML5 history'
)
window.location.href = href
}
})
}
const replace = (path, state) => {
warning(
!(typeof path === 'object' && path.state !== undefined && state !== undefined),
'You should avoid providing a 2nd state argument to replace when the 1st ' +
'argument is a location-like object that already has state; it is ignored'
)
const action = 'REPLACE'
const location = createLocation(path, state, createKey(), history.location)
transitionManager.confirmTransitionTo(location, action, getUserConfirmation, (ok) => {
if (!ok)
return
const href = createHref(location)
const { key, state } = location
if (canUseHistory) {
globalHistory.replaceState({ key, state }, null, href)
if (forceRefresh) {
window.location.replace(href)
} else {
const prevIndex = allKeys.indexOf(history.location.key)
if (prevIndex !== -1)
allKeys[prevIndex] = location.key
setState({ action, location })
}
} else {
warning(
state === undefined,
'Browser history cannot replace state in browsers that do not support HTML5 history'
)
window.location.replace(href)
}
})
}
const go = (n) => {
globalHistory.go(n)
}
const goBack = () =>
go(-1)
const goForward = () =>
go(1)
let listenerCount = 0
const checkDOMListeners = (delta) => {
listenerCount += delta
if (listenerCount === 1) {
addEventListener(window, PopStateEvent, handlePopState)
if (needsHashChangeListener)
addEventListener(window, HashChangeEvent, handleHashChange)
} else if (listenerCount === 0) {
removeEventListener(window, PopStateEvent, handlePopState)
if (needsHashChangeListener)
removeEventListener(window, HashChangeEvent, handleHashChange)
}
}
let isBlocked = false
const block = (prompt = false) => {
const unblock = transitionManager.setPrompt(prompt)
if (!isBlocked) {
checkDOMListeners(1)
isBlocked = true
}
return () => {
if (isBlocked) {
isBlocked = false
checkDOMListeners(-1)
}
return unblock()
}
}
const listen = (listener) => {
const unlisten = transitionManager.appendListener(listener)
checkDOMListeners(1)
return () => {
checkDOMListeners(-1)
unlisten()
}
}
const history = {
length: globalHistory.length,
action: 'POP',
location: initialLocation,
createHref,
push,
replace,
go,
goBack,
goForward,
block,
listen
}
return history
}
export default createBrowserHistory