This repository was archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRouter.js
252 lines (206 loc) · 7.2 KB
/
Router.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
import React from 'react'
import { Router, Switch, Route, Redirect } from 'react-router-dom'
import { ModalRoute } from 'react-router-modal'
import createBrowserHistory from 'history/createBrowserHistory'
import createMemoryHistory from 'history/createMemoryHistory'
import { compile } from 'path-to-regexp'
import { parse, stringify } from 'qs'
import { ScrollToTop } from './components'
import RouterBase from './RouterBase'
// Remove warnings
export const NavigationStyles = {}
export function NavigationReducer() {}
export function createNavigationEnabledStore() {}
export default class TipsiRouter extends RouterBase {
constructor(initialRoute, routes, useMemoryHistory = false, defaultRouteConfig = {}) {
super(initialRoute, routes, useMemoryHistory, defaultRouteConfig)
this.defaultRouteConfig = defaultRouteConfig
this.basename = defaultRouteConfig.basename || '/'
this.title = defaultRouteConfig.title || ''
this.history = useMemoryHistory
? this.createMemoryHistory(initialRoute, routes)
: createBrowserHistory({ basename: this.basename })
this.navigationProvider = this.createRouter(initialRoute, routes)
this.routes = routes
this.stack = 0
this.syncSearchWithState = defaultRouteConfig.syncSearchWithState
}
/* eslint-disable class-methods-use-this */
/* eslint-disable react/no-this-in-sfc */
createMemoryHistory(initialRoute, routes) {
const initialEntries = Object.values(routes).map(route => route.path)
const initialIndex = initialEntries.indexOf(initialRoute)
// filter out all Redirects (items with 'path' prop equal to undefined)
const entriesWithoutRedirects = initialEntries.filter(entry => !!entry)
return createMemoryHistory({ initialEntries: entriesWithoutRedirects, initialIndex })
}
filterSyncedState(state, filterFields) {
if (filterFields) {
return Object.keys(state)
.filter(key => filterFields.includes(key))
.reduce((tmp, key) => {
tmp[key] = state[key] // eslint-disable-line
return tmp
}, {})
}
return state
}
createRouter(initialRoute, routes) {
const shouldScrollToTop = this.defaultRouteConfig.shouldScrollToTop || true
const elements = Object.entries(routes).reduce((memo, [key, route]) => {
// "to" is only required property for Redirect
if (route.redirectTo) {
const { redirectFrom, redirectTo, exact } = route
// only allow "to", "from", or "exact" props to be passed to <Redirect />
const redirectParams = {
to: redirectTo,
}
if (redirectFrom) redirectParams.from = redirectFrom
if (exact) redirectParams.exact = exact
return memo.concat(<Redirect key={key} {...redirectParams} />)
}
const RouteContainer = route.modal ? ModalRoute : Route
const RouteComponent = route.component
const render = (props) => {
const paramsToState = (this.syncSearchWithState) ?
parse(props.location.search, { ignoreQueryPrefix: true }) :
{}
if (this.syncSearchWithState) {
Object.keys(paramsToState).forEach((paramToStateKey) => {
if (this.syncSearchWithState.parseInt) {
const toInt = +(paramsToState[paramToStateKey])
if (paramsToState[paramToStateKey] === `${toInt}`) {
paramsToState[paramToStateKey] = toInt
}
}
try {
const toObject = JSON.parse(paramsToState[paramToStateKey])
paramsToState[paramToStateKey] = toObject
} catch (e) {
// Don't do anything
}
})
}
const state = Object.assign({}, props.location.state, paramsToState)
return (
<RouteComponent isFocused {...props} {...state} /> // eslint-disable-line
)
}
const renderProps = route.modal ? { component: render } : { render }
return memo.concat(
<RouteContainer
key={key}
exact={route.exact || route.path === '/'}
path={route.path}
{...renderProps}
/>
)
}, [])
return (
<Router history={this.history} {...this.defaultRouteConfig}>
<ScrollToTop shouldScrollToTop={shouldScrollToTop}>
<Switch>
{elements}
</Switch>
</ScrollToTop>
</Router>
)
}
setTitle(title) {
super.setTitle(title)
document.title = title
}
updateTitle(title) {
this.setTitle(title)
}
getCurrentRoute = () => this.history.location.pathname
getCurrentQuery = () => {
const query = this.history.location.search
if (query) {
return parse(query, { ignoreQueryPrefix: true })
}
return {}
}
callHistoryMethodWithArguments(methodName, e, route, paramsOrOptions = {}) {
if (e) {
e.preventDefault()
}
const { path, query, whiteListParams } = route
const { config, ...params } = paramsOrOptions
let searchQuery = query && stringify(query, { addQueryPrefix: true })
let stateObject = params
const keys = Object.keys(params)
if (whiteListParams && keys.length > 0) {
keys
.filter(item => !whiteListParams.includes(item))
.forEach(key => delete params[key])
}
if (this.syncSearchWithState) {
const parsedSearchQuery = parse(searchQuery, { ignoreQueryPrefix: true })
const syncStateObject = Object.assign(
{},
parse(searchQuery, { ignoreQueryPrefix: true }),
params
)
const syncSearchObject = Object.assign({}, parsedSearchQuery, params)
if (this.syncSearchWithState.parseInt) {
Object.keys(syncStateObject).forEach((key) => {
const toInt = +(syncStateObject[key])
if (parsedSearchQuery[key] && syncStateObject[key] === `${toInt}`) {
syncStateObject[key] = toInt
}
})
}
searchQuery = stringify(
this.filterSyncedState(syncSearchObject, route.syncFilterFields),
{ addQueryPrefix: true }
)
stateObject = syncStateObject
}
const location = {
pathname: compile(path)(params),
search: searchQuery,
state: stateObject,
}
this.history[methodName](location)
}
push(e, route, paramsOrOptions = {}) {
this.callHistoryMethodWithArguments('push', e, route, paramsOrOptions)
this.stack += 1
}
pop(e) {
if (e) {
e.preventDefault()
}
this.history.goBack()
this.stack = this.stack === 0 ? 0 : this.stack - 1
}
popToTop(e) {
if (e) {
e.preventDefault()
}
if (this.stack !== 0) {
this.history.go(-this.stack)
} else if (this.history.location.pathname !== this.basename) {
this.replace(e, { path: this.basename })
}
this.stack = 0
}
replace(e, route, paramsOrOptions = {}) {
this.callHistoryMethodWithArguments('replace', e, route, paramsOrOptions)
}
showModal(e, route, paramsOrOptions = {}) {
this.callHistoryMethodWithArguments('push', e, route, paramsOrOptions)
}
redirect(url) {
window.location.replace(url)
}
async dismissModal(e) {
if (e) {
e.preventDefault()
}
this.history.goBack()
// Avoid incorrect push-transition after dismiss
await new Promise(resolve => setTimeout(resolve, 0))
}
}