-
Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathindex.js
673 lines (591 loc) · 16.6 KB
/
index.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
/* eslint-disable jsx-a11y/anchor-has-content */
import React, { useContext } from "react";
import PropTypes from "prop-types";
import invariant from "invariant";
import createContext from "create-react-context";
import { polyfill } from "react-lifecycles-compat";
import {
startsWith,
pick,
resolve,
match,
insertParams,
validateRedirect,
shallowCompare
} from "./lib/utils";
import {
globalHistory,
navigate,
createHistory,
createMemorySource
} from "./lib/history";
////////////////////////////////////////////////////////////////////////////////
const createNamedContext = (name, defaultValue) => {
const Ctx = createContext(defaultValue);
Ctx.displayName = name;
return Ctx;
};
////////////////////////////////////////////////////////////////////////////////
// Location Context/Provider
let LocationContext = createNamedContext("Location");
// sets up a listener if there isn't one already so apps don't need to be
// wrapped in some top level provider
let Location = ({ children }) => (
<LocationContext.Consumer>
{context =>
context ? (
children(context)
) : (
<LocationProvider>{children}</LocationProvider>
)
}
</LocationContext.Consumer>
);
class LocationProvider extends React.Component {
static propTypes = {
history: PropTypes.object.isRequired
};
static defaultProps = {
history: globalHistory
};
state = {
context: this.getContext(),
refs: { unlisten: null }
};
getContext() {
let {
props: {
history: { navigate, location }
}
} = this;
return { navigate, location };
}
componentDidCatch(error, info) {
if (isRedirect(error)) {
let {
props: {
history: { navigate }
}
} = this;
navigate(error.uri, { replace: true });
} else {
throw error;
}
}
componentDidUpdate(prevProps, prevState) {
if (prevState.context.location !== this.state.context.location) {
this.props.history._onTransitionComplete();
}
}
componentDidMount() {
let {
state: { refs },
props: { history }
} = this;
history._onTransitionComplete();
refs.unlisten = history.listen(() => {
Promise.resolve().then(() => {
// TODO: replace rAF with react deferred update API when it's ready https://github.com/facebook/react/issues/13306
requestAnimationFrame(() => {
if (!this.unmounted) {
this.setState(() => ({ context: this.getContext() }));
}
});
});
});
}
componentWillUnmount() {
let {
state: { refs }
} = this;
this.unmounted = true;
refs.unlisten();
}
render() {
let {
state: { context },
props: { children }
} = this;
return (
<LocationContext.Provider value={context}>
{typeof children === "function" ? children(context) : children || null}
</LocationContext.Provider>
);
}
}
////////////////////////////////////////////////////////////////////////////////
let ServerLocation = ({ url, children }) => {
let searchIndex = url.indexOf("?");
let searchExists = searchIndex > -1;
let pathname;
let search = "";
let hash = "";
if (searchExists) {
pathname = url.substring(0, searchIndex);
search = url.substring(searchIndex);
} else {
pathname = url;
}
return (
<LocationContext.Provider
value={{
location: {
pathname,
search,
hash
},
navigate: () => {
throw new Error("You can't call navigate on the server.");
}
}}
>
{children}
</LocationContext.Provider>
);
};
////////////////////////////////////////////////////////////////////////////////
// Sets baseuri and basepath for nested routers and links
let BaseContext = createNamedContext("Base", {
baseuri: "/",
basepath: "/",
navigate: globalHistory.navigate
});
////////////////////////////////////////////////////////////////////////////////
// The main event, welcome to the show everybody.
let Router = props => (
<BaseContext.Consumer>
{baseContext => (
<Location>
{locationContext => (
<RouterImpl {...baseContext} {...locationContext} {...props} />
)}
</Location>
)}
</BaseContext.Consumer>
);
class RouterImpl extends React.PureComponent {
static defaultProps = {
primary: true
};
render() {
let {
location,
navigate,
basepath,
primary,
children,
baseuri,
component = "div",
...domProps
} = this.props;
let routes = React.Children.toArray(children).reduce((array, child) => {
const routes = createRoute(basepath)(child);
return array.concat(routes);
}, []);
let { pathname } = location;
let match = pick(routes, pathname);
if (match) {
let {
params,
uri,
route,
route: { value: element }
} = match;
// remove the /* from the end for child routes relative paths
basepath = route.default ? basepath : route.path.replace(/\*$/, "");
let props = {
...params,
uri,
location,
navigate: (to, options) => navigate(resolve(to, uri), options)
};
let clone = React.cloneElement(
element,
props,
element.props.children ? (
<Router location={location} primary={primary}>
{element.props.children}
</Router>
) : (
undefined
)
);
// using 'div' for < 16.3 support
let FocusWrapper = primary ? FocusHandler : component;
// don't pass any props to 'div'
let wrapperProps = primary
? { uri, location, component, ...domProps }
: domProps;
return (
<BaseContext.Provider
value={{ baseuri: uri, basepath, navigate: props.navigate }}
>
<FocusWrapper {...wrapperProps}>{clone}</FocusWrapper>
</BaseContext.Provider>
);
} else {
// Not sure if we want this, would require index routes at every level
// warning(
// false,
// `<Router basepath="${basepath}">\n\nNothing matched:\n\t${
// location.pathname
// }\n\nPaths checked: \n\t${routes
// .map(route => route.path)
// .join(
// "\n\t"
// )}\n\nTo get rid of this warning, add a default NotFound component as child of Router:
// \n\tlet NotFound = () => <div>Not Found!</div>
// \n\t<Router>\n\t <NotFound default/>\n\t {/* ... */}\n\t</Router>`
// );
return null;
}
}
}
let FocusContext = createNamedContext("Focus");
let FocusHandler = ({ uri, location, component, ...domProps }) => (
<FocusContext.Consumer>
{requestFocus => (
<FocusHandlerImpl
{...domProps}
component={component}
requestFocus={requestFocus}
uri={uri}
location={location}
/>
)}
</FocusContext.Consumer>
);
// don't focus on initial render
let initialRender = true;
let focusHandlerCount = 0;
class FocusHandlerImpl extends React.Component {
state = {};
static getDerivedStateFromProps(nextProps, prevState) {
let initial = prevState.uri == null;
if (initial) {
return {
shouldFocus: true,
...nextProps
};
} else {
let myURIChanged = nextProps.uri !== prevState.uri;
let navigatedUpToMe =
prevState.location.pathname !== nextProps.location.pathname &&
nextProps.location.pathname === nextProps.uri;
return {
shouldFocus: myURIChanged || navigatedUpToMe,
...nextProps
};
}
}
componentDidMount() {
focusHandlerCount++;
this.focus();
}
componentWillUnmount() {
focusHandlerCount--;
if (focusHandlerCount === 0) {
initialRender = true;
}
}
componentDidUpdate(prevProps, prevState) {
if (prevProps.location !== this.props.location && this.state.shouldFocus) {
this.focus();
}
}
focus() {
if (process.env.NODE_ENV === "test") {
// getting cannot read property focus of null in the tests
// and that bit of global `initialRender` state causes problems
// should probably figure it out!
return;
}
let { requestFocus } = this.props;
if (requestFocus) {
requestFocus(this.node);
} else {
if (initialRender) {
initialRender = false;
} else if (this.node) {
// React polyfills [autofocus] and it fires earlier than cDM,
// so we were stealing focus away, this line prevents that.
if (!this.node.contains(document.activeElement)) {
this.node.focus();
}
}
}
}
requestFocus = node => {
if (!this.state.shouldFocus && node) {
node.focus();
}
};
render() {
let {
children,
style,
requestFocus,
component: Comp = "div",
uri,
location,
...domProps
} = this.props;
return (
<Comp
style={{ outline: "none", ...style }}
tabIndex="-1"
ref={n => (this.node = n)}
{...domProps}
>
<FocusContext.Provider value={this.requestFocus}>
{this.props.children}
</FocusContext.Provider>
</Comp>
);
}
}
polyfill(FocusHandlerImpl);
let k = () => {};
////////////////////////////////////////////////////////////////////////////////
let { forwardRef } = React;
if (typeof forwardRef === "undefined") {
forwardRef = C => C;
}
let Link = forwardRef(({ innerRef, ...props }, ref) => (
<BaseContext.Consumer>
{({ basepath, baseuri }) => (
<Location>
{({ location, navigate }) => {
let { to, state, replace, getProps = k, ...anchorProps } = props;
let href = resolve(to, baseuri);
let encodedHref = encodeURI(href);
let isCurrent = location.pathname === encodedHref;
let isPartiallyCurrent = startsWith(location.pathname, encodedHref);
return (
<a
ref={ref || innerRef}
aria-current={isCurrent ? "page" : undefined}
{...anchorProps}
{...getProps({ isCurrent, isPartiallyCurrent, href, location })}
href={href}
onClick={event => {
if (anchorProps.onClick) anchorProps.onClick(event);
if (shouldNavigate(event)) {
event.preventDefault();
let shouldReplace = replace;
if (typeof replace !== "boolean" && isCurrent) {
const { key, ...restState } = { ...location.state };
shouldReplace = shallowCompare({ ...state }, restState);
}
navigate(href, {
state,
replace: shouldReplace
});
}
}}
/>
);
}}
</Location>
)}
</BaseContext.Consumer>
));
Link.displayName = "Link";
Link.propTypes = {
to: PropTypes.string.isRequired
};
////////////////////////////////////////////////////////////////////////////////
function RedirectRequest(uri) {
this.uri = uri;
}
let isRedirect = o => o instanceof RedirectRequest;
let redirectTo = to => {
throw new RedirectRequest(to);
};
class RedirectImpl extends React.Component {
// Support React < 16 with this hook
componentDidMount() {
let {
props: {
navigate,
to,
from,
replace = true,
state,
noThrow,
baseuri,
...props
}
} = this;
Promise.resolve().then(() => {
let resolvedTo = resolve(to, baseuri);
navigate(insertParams(resolvedTo, props), { replace, state });
});
}
render() {
let {
props: { navigate, to, from, replace, state, noThrow, baseuri, ...props }
} = this;
let resolvedTo = resolve(to, baseuri);
if (!noThrow) redirectTo(insertParams(resolvedTo, props));
return null;
}
}
let Redirect = props => (
<BaseContext.Consumer>
{({ baseuri }) => (
<Location>
{locationContext => (
<RedirectImpl {...locationContext} baseuri={baseuri} {...props} />
)}
</Location>
)}
</BaseContext.Consumer>
);
Redirect.propTypes = {
from: PropTypes.string,
to: PropTypes.string.isRequired
};
////////////////////////////////////////////////////////////////////////////////
let Match = ({ path, children }) => (
<BaseContext.Consumer>
{({ baseuri }) => (
<Location>
{({ navigate, location }) => {
let resolvedPath = resolve(path, baseuri);
let result = match(resolvedPath, location.pathname);
return children({
navigate,
location,
match: result
? {
...result.params,
uri: result.uri,
path
}
: null
});
}}
</Location>
)}
</BaseContext.Consumer>
);
////////////////////////////////////////////////////////////////////////////////
// Hooks
const useLocation = () => {
const context = useContext(LocationContext);
if (!context) {
throw new Error(
"useLocation hook was used but a LocationContext.Provider was not found in the parent tree. Make sure this is used in a component that is a child of Router"
);
}
return context.location;
};
const useNavigate = () => {
const context = useContext(BaseContext);
if (!context) {
throw new Error(
"useNavigate hook was used but a BaseContext.Provider was not found in the parent tree. Make sure this is used in a component that is a child of Router"
);
}
return context.navigate;
};
const useParams = () => {
const context = useContext(BaseContext);
if (!context) {
throw new Error(
"useParams hook was used but a LocationContext.Provider was not found in the parent tree. Make sure this is used in a component that is a child of Router"
);
}
const location = useLocation();
const results = match(context.basepath, location.pathname);
return results ? results.params : null;
};
const useMatch = path => {
if (!path) {
throw new Error(
"useMatch(path: string) requires an argument of a string to match against"
);
}
const context = useContext(BaseContext);
if (!context) {
throw new Error(
"useMatch hook was used but a LocationContext.Provider was not found in the parent tree. Make sure this is used in a component that is a child of Router"
);
}
const location = useLocation();
const resolvedPath = resolve(path, context.baseuri);
const result = match(resolvedPath, location.pathname);
return result
? {
...result.params,
uri: result.uri,
path
}
: null;
};
////////////////////////////////////////////////////////////////////////////////
// Junk
let stripSlashes = str => str.replace(/(^\/+|\/+$)/g, "");
let createRoute = basepath => element => {
if (!element) {
return null;
}
if (element.type === React.Fragment && element.props.children) {
return React.Children.map(element.props.children, createRoute(basepath));
}
invariant(
element.props.path || element.props.default || element.type === Redirect,
`<Router>: Children of <Router> must have a \`path\` or \`default\` prop, or be a \`<Redirect>\`. None found on element type \`${element.type}\``
);
invariant(
!(element.type === Redirect && (!element.props.from || !element.props.to)),
`<Redirect from="${element.props.from}" to="${element.props.to}"/> requires both "from" and "to" props when inside a <Router>.`
);
invariant(
!(
element.type === Redirect &&
!validateRedirect(element.props.from, element.props.to)
),
`<Redirect from="${element.props.from} to="${element.props.to}"/> has mismatched dynamic segments, ensure both paths have the exact same dynamic segments.`
);
if (element.props.default) {
return { value: element, default: true };
}
let elementPath =
element.type === Redirect ? element.props.from : element.props.path;
let path =
elementPath === "/"
? basepath
: `${stripSlashes(basepath)}/${stripSlashes(elementPath)}`;
return {
value: element,
default: element.props.default,
path: element.props.children ? `${stripSlashes(path)}/*` : path
};
};
let shouldNavigate = event =>
!event.defaultPrevented &&
event.button === 0 &&
!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);
////////////////////////////////////////////////////////////////////////
export {
Link,
Location,
LocationProvider,
Match,
Redirect,
Router,
ServerLocation,
createHistory,
createMemorySource,
isRedirect,
navigate,
redirectTo,
globalHistory,
match as matchPath,
useLocation,
useNavigate,
useParams,
useMatch
};