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
|
import $ from 'jquery';
const assetAttributeNames = new Set( ['data', 'srcset', 'src', 'href'] );
export interface Route {
path: string,
component: Function,
wildcard: boolean
};
const routes: Route[] = [];
let err404page = "/";
let rootId = "moneyjsx-root";
let onprenavigate: Function = () => {};
let onpostnavigate: Function = () => {};
function routeForPath( route: string ) : Function | null {
if( !routes[route] ) {
for( let key of Object.keys( routes ) ) {
const r = routes[key];
if( r.wildcard ) {
if( route.slice( 0, r.path.length ) == r.path ) {
return r.component;
}
}
}
return null;
} else return routes[route].component;
}
/**
* sets the id of the element to be replaced by the navigator
**/
export function setRootId( rootId: string ) {
rootId = rootId;
}
/**
* adds a route component to the routes list
* the component function must return either a jquery or a DOM element
**/
export function addRoute( name: string, component: Function ) {
let path = name;
let wildcard = false;
if( path[path.length - 1] === "*" ) {
path = path.substring( 0, path.length - 1 );
wildcard = true;
}
routes[path] = { path, component, wildcard };
}
/**
* sets the route for a 404 page
**/
export function set404Route( name: string ) {
err404page = name;
}
/**
* sets the callback that will get called when a route changes
**/
export function onPreNavigate( callback: Function ) {
onprenavigate = callback;
}
/**
* sets the callback that will get called when a route changes
**/
export function onPostNavigate( callback: Function ) {
onpostnavigate = callback;
}
/**
* replaces the root element with the route component
**/
export function navigate( route: string ) {
let url = new URL( window.location.href );
let cb = routeForPath( route );
url.pathname = route;
if( !cb )
return navigate( err404page );
window.history.pushState( {}, null, url.href );
onprenavigate();
const el = $( cb() );
$( `#${rootId}` ).children().remove();
$( `#${rootId}` ).append( el );
onpostnavigate();
}
/**
* navigate with params. see: navigate
**/
export function navigateParams( route: string, params: any ) {
let url = new URL( window.location.href );
let uparams = new URLSearchParams( params );
url.pathname = route;
url.search = uparams.toString();
let cb = routeForPath( route );
if( !cb )
return navigate( err404page );
window.history.pushState( {}, null, url.href );
onprenavigate();
const el = $( cb() );
$( `#${rootId}` ).children().remove();
$( `#${rootId}` ).append( el );
onpostnavigate();
}
/**
* wrapper for history.pushState
**/
export function pushParams( params: any ) {
const url = new URL( window.location.href );
url.search = new URLSearchParams( params ).toString();
window.history.pushState( {}, null, url.href );
}
/**
* navigates without adding a history entry
* useful for e.g. re-rendering a page after waiting for a data callback
**/
export function navigateParamsSilent( route: string, params: any ) {
let url = new URL( window.location.href );
let uparams = new URLSearchParams( params );
url.pathname = route;
url.search = uparams.toString();
let cb = routeForPath( route );
if( !cb )
return navigateSilent( err404page );
onprenavigate();
const el = $( cb() );
$( `#${rootId}` ).children().remove();
$( `#${rootId}` ).append( el );
onpostnavigate();
}
/**
* see: navigateParamsSilent
**/
export function navigateSilent( route: string ) {
let url = new URL( window.location.href );
url.pathname = route;
let cb = routeForPath( route );
if( !cb )
return navigateSilent( err404page );
onprenavigate();
const el = $( cb() );
$( `#${rootId}` ).children().remove();
$( `#${rootId}` ).append( el );
onpostnavigate();
}
/**
* action when the back button is pressed
**/
export function onPopState() {
let url = new URL( window.location.href );
let uparams = new URLSearchParams( url.searchParams );
url.search = uparams.toString();
let cb = routeForPath( url.pathname );
if( !cb )
return navigateSilent( err404page );
onprenavigate();
const el = $( cb() );
$( `#${rootId}` ).children().remove();
$( `#${rootId}` ).append( el );
onpostnavigate();
}
export function getRoutes() : Route[] {
return routes;
}
// internal stuff below
const originalAppendChild = Element.prototype.appendChild;
Element.prototype.appendChild = function( child: any ) {
if( Array.isArray( child ) ) {
for( const childArrayMember of child )
this.appendChild( childArrayMember );
return child;
}
else if( typeof child === 'string' ) {
return originalAppendChild.call( this, document.createTextNode( child ) );
}
else if( child ) {
return originalAppendChild.call( this, child );
}
};
export function createElement( tag: any, props: any, ...children: any ) {
props = props || {};
if( typeof tag === "function" ) {
props.children = children;
return tag( props );
}
if( tag === 'raw-content' ) {
const dummy = document.createElement( 'div' );
dummy.innerHTML = props.content;
return [...dummy.children];
}
const element = document.createElement( tag );
for( const [name, value] of Object.entries( props ) ) {
if( name.startsWith( 'on' ) ) {
const lowercaseName = name.toLowerCase();
if( lowercaseName in window ) {
element.addEventListener( lowercaseName.substring(2 ), value );
continue;
}
}
if( name == 'ref' ) {
( value as any ).current = element;
continue;
}
if( value === false )
continue;
if( value === true ) {
element.setAttribute( name, '' );
continue;
}
if( assetAttributeNames.has( name ) ) {
if( typeof value === 'string' ) {
element.setAttribute( name, value );
}
continue;
}
element.setAttribute( name, value );
};
for( const child of children )
element.appendChild( child );
return element;
}
export function createFragment( props: any ) {
return props.children;
}
|