forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransitionUtils.js
111 lines (98 loc) · 3.18 KB
/
TransitionUtils.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
import { loopAsync } from './AsyncUtils'
import warning from './routerWarning'
function createTransitionHook(hook, route, asyncArity) {
return function (...args) {
hook.apply(route, args)
if (hook.length < asyncArity) {
let callback = args[args.length - 1]
// Assume hook executes synchronously and
// automatically call the callback.
callback()
}
}
}
function getEnterHooks(routes) {
return routes.reduce(function (hooks, route) {
if (route.onEnter)
hooks.push(createTransitionHook(route.onEnter, route, 3))
return hooks
}, [])
}
function getChangeHooks(routes) {
return routes.reduce(function (hooks, route) {
if (route.onChange)
hooks.push(createTransitionHook(route.onChange, route, 4))
return hooks
}, [])
}
function runTransitionHooks(length, iter, callback) {
if (!length) {
callback()
return
}
let redirectInfo
function replace(location, deprecatedPathname, deprecatedQuery) {
if (deprecatedPathname) {
warning(
false,
'`replaceState(state, pathname, query) is deprecated; use `replace(location)` with a location descriptor instead. http://tiny.cc/router-isActivedeprecated'
)
redirectInfo = {
pathname: deprecatedPathname,
query: deprecatedQuery,
state: location
}
return
}
redirectInfo = location
}
loopAsync(length, function (index, next, done) {
iter(index, replace, function (error) {
if (error || redirectInfo) {
done(error, redirectInfo) // No need to continue.
} else {
next()
}
})
}, callback)
}
/**
* Runs all onEnter hooks in the given array of routes in order
* with onEnter(nextState, replace, callback) and calls
* callback(error, redirectInfo) when finished. The first hook
* to use replace short-circuits the loop.
*
* If a hook needs to run asynchronously, it may use the callback
* function. However, doing so will cause the transition to pause,
* which could lead to a non-responsive UI if the hook is slow.
*/
export function runEnterHooks(routes, nextState, callback) {
const hooks = getEnterHooks(routes)
return runTransitionHooks(hooks.length, (index, replace, next) => {
hooks[index](nextState, replace, next)
}, callback)
}
/**
* Runs all onChange hooks in the given array of routes in order
* with onChange(prevState, nextState, replace, callback) and calls
* callback(error, redirectInfo) when finished. The first hook
* to use replace short-circuits the loop.
*
* If a hook needs to run asynchronously, it may use the callback
* function. However, doing so will cause the transition to pause,
* which could lead to a non-responsive UI if the hook is slow.
*/
export function runChangeHooks(routes, state, nextState, callback) {
const hooks = getChangeHooks(routes)
return runTransitionHooks(hooks.length, (index, replace, next) => {
hooks[index](state, nextState, replace, next)
}, callback)
}
/**
* Runs all onLeave hooks in the given array of routes in order.
*/
export function runLeaveHooks(routes, prevState) {
for (let i = 0, len = routes.length; i < len; ++i)
if (routes[i].onLeave)
routes[i].onLeave.call(routes[i], prevState)
}