deno.land / x / nano_jsx@v0.1.0 / components / router.ts

نووسراو ببینە
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
// inspired by https://codesandbox.io/s/build-own-react-router-v4-mpslz
import { Component } from '../component.ts'import { FC, _render, h, isSSR } from '../core.ts'
const instances: Switch[] = []
const register = (comp: Switch) => instances.push(comp)const unregister = (comp: Switch) => instances.splice(instances.indexOf(comp), 1)
const historyPush = (path: string) => { window.history.pushState({}, '', path) instances.forEach(instance => instance.handleChanges()) window.dispatchEvent(new Event('pushstate'))}
const historyReplace = (path: string) => { window.history.replaceState({}, '', path) instances.forEach(instance => instance.handleChanges()) window.dispatchEvent(new Event('replacestate'))}
export interface MatchPathOptions { exact?: boolean path: string regex?: { [param: string]: RegExp }}export type MatchPathResult = { path: string | null url: string isExact: boolean params: { [param: string]: string }} | null
export const matchPath = (pathname: string, options: MatchPathOptions): MatchPathResult => { const { exact = false, regex } = options let { path } = options
if (!path) { return { path: null, url: pathname, isExact: true, params: {} } }
let match let params: any = {}
// path with params if (path.includes('/:')) { const pathArr = path.split('/') const pathnameArr = pathname.split('/') pathArr.forEach((p, i) => { if (/^:/.test(p)) { const key = p.slice(1) const value = pathnameArr[i]
// if a regex is provided, check it it matches if (regex && regex[key]) { const regexMatch = regex[key].test(value) if (!regexMatch) return null }
params = { ...params, [key]: value }
pathArr[i] = pathnameArr[i] } }) path = pathArr.join('/') }
// catch all if (path === '*') match = [pathname]
// regular path if (!match) match = new RegExp(`^${path}`).exec(pathname)
if (!match) return null
const url = match[0] const isExact = pathname === url
if (exact && !isExact) return null
return { path, url, isExact, params }}
export class Switch extends Component<{ fallback?: any; children?: any }> { index: number = 0 path: string = '' match = { index: -1, path: '' }
didMount() { window.addEventListener('popstate', this.handleChanges.bind(this)) register(this) }
didUnmount() { window.removeEventListener('popstate', this.handleChanges.bind(this)) unregister(this) }
handleChanges() { this.findChild() if (this.shouldUpdate()) this.update() }
findChild() { this.match = { index: -1, path: '' }
// flatten children this.props.children = this.props.children.flat()
for (let i = 0; i < this.props.children.length; i++) { const child = this.props.children[i] const { path, exact, regex } = child.props const match = matchPath(isSSR() ? _nano.location.pathname : window.location.pathname, { path, exact, regex }) if (match) { this.match.index = i this.match.path = path return } } }
shouldUpdate() { return this.path !== this.match.path || this.index !== this.match.index }
render() { this.findChild()
const child = this.props.children[this.match.index]
if (this.match.index === -1) { this.path = '' this.index = 0 }
if (child) { const { path } = child.props this.path = path this.index = this.match.index const el = _render(child) return h('div', {}, _render(el)) } else if (this.props.fallback) { return h('div', {}, _render(this.props.fallback)) } else { return h('div', {}, 'not found') } }}
// alias for <Switch />export class Routes extends Switch {}
export interface RouteProps { path: string regex: { [param: string]: RegExp } pathname: string params: { [param: string]: string }}
export const Route: FC<{ path: string; exact?: boolean; regex?: { [param: string]: RegExp }; children?: any }> = ({ path, regex, children}) => { // lookup pathname and parameters const pathname = isSSR() ? _nano.location.pathname : window.location.pathname const params = parseParamsFromPath(path) // pass the route as props to the children children.forEach((child: any) => { if (child.props) child.props = { ...child.props, route: { path, regex, pathname, params } } }) return children}
export const to = (to: string, replace: boolean = false) => { replace ? historyReplace(to) : historyPush(to)}
interface LinkProps { to: string replace?: boolean children?: any [key: string]: any}export const Link: FC<LinkProps> = ({ to, replace, children, ...rest }) => { const handleClick = (event: Event) => { event.preventDefault() replace ? historyReplace(to) : historyPush(to) }
return h('a', { href: to, onClick: (e: Event) => handleClick(e), ...rest }, children)}
class CListener { private _route!: string private _listeners: Map<string, Function> = new Map()
constructor() { if (isSSR()) return
this._route = window.location.pathname
const event = () => { const newRoute = window.location.pathname this._listeners.forEach(fnc => { fnc(newRoute, this._route) }) this._route = newRoute }
window.addEventListener('pushstate', event) window.addEventListener('replacestate', event) }
public use() { const id = Math.random().toString(36).substring(2) return { subscribe: (fnc: (currPath: string, prevPath: string) => void) => { this._listeners.set(id, fnc) }, cancel: () => { if (this._listeners.has(id)) this._listeners.delete(id) } } }}
let listener: CListener | undefinedexport const Listener = () => { if (!listener) listener = new CListener() return listener}
/** Pass "this.props.route.path" to it. */export const parseParamsFromPath = (path: string): { [param: string]: string } => { let params = {} const _pathname = isSSR() ? _nano.location.pathname.split('/') : window.location.pathname.split('/') path.split('/').forEach((p, i) => { if (p.startsWith(':')) params = { ...params, [p.slice(1)]: _pathname[i] } }) return params}
nano_jsx

Version Info

Tagged at
8 months ago