-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
115 lines (93 loc) · 2.35 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
import {h, Component} from 'preact';
import enroute from 'enroute';
function assert(e, msg) {
if (!e) {
throw new Error(`preact-enroute: ${msg}`);
}
}
/**
* Router routes things.
*/
export class Router extends Component {
/**
* Initialize the router.
*/
constructor(props) {
super(props);
this.routes = {};
this.addRoutes(props.children);
this.router = enroute(this.routes);
}
/**
* Add routes.
*/
addRoutes(routes, parent) {
routes.forEach(r => this.addRoute(r, parent));
}
/**
* Add route.
*/
addRoute(el, parent) {
const {location, ...props} = this.props;
const {path, component} = el.attributes;
const children = el.children;
assert(typeof path === 'string', `Route ${context(el.attributes)}is missing the "path" property`);
assert(component, `Route ${context(el.attributes)}is missing the "component" property`);
function render(params, renderProps) {
const finalProps = {...props, ...renderProps, location, params};
const children = h(component, finalProps);
return parent ? parent.render(params, {children}) : children;
}
const route = normalizeRoute(path, parent);
if (children) {
this.addRoutes(children, {route, render});
}
this.routes[cleanPath(route)] = render;
}
/**
* Render the matching route.
*/
render() {
const {location} = this.props;
assert(location, `Router "location" property is missing`);
return this.router(location, {children: null});
}
}
/**
* Route does absolutely nothing :).
*/
export function Route() {
assert(false, 'Route should not be rendered');
}
/**
* Context string for route errors based on the props available.
*/
function context({path, component}) {
if (path) {
return `with path "${path}" `;
}
if (component) {
return `with component ${component.name} `;
}
return '';
}
/**
* Normalize route based on the parent.
*/
function normalizeRoute(path, parent) {
if (path[0] === '/' || path[0] === '') {
return path; // absolute route
}
if (!parent) {
return path; // no need for a join
}
return `${parent.route}/${path}`; // join
}
/**
* Clean path by stripping subsequent "//"'s. Without this
* the user must be careful when to use "/" or not, which leads
* to bad UX.
*/
function cleanPath(path) {
return path.replace(/\/\//g, '/');
}