-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRouter.js
140 lines (110 loc) · 2.72 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
/**
* @author Aaron Clinger - https://github.com/aaronclinger/router.js
*/
(function(window, document) {
'use strict';
function Router(options) {
var pub = {};
var routes = [];
var history = window.history;
var location = window.location;
var path = location.pathname;
var currentRoute;
var useHash;
pub.addRoute = function(settings) {
var route = settings.route;
route.replace(/(?:([^\\])\/)|^\//g, '$1\\\/');
routes.push({
id: settings.id || settings.route,
route: '^' + route + '$',
callback: settings.callback
});
return pub;
};
pub.requestRoute = function(route) {
if (route) {
if (useHash) {
location.hash = route;
} else {
path = route;
matchRoute(path);
history.pushState({}, '', path);
}
} else {
if (useHash) {
matchHash();
} else {
matchRoute(location.pathname);
}
}
};
var matchRoute = function(route) {
var i = -1;
var l = routes.length;
var matches;
var regex;
var item;
while (++i < l) {
item = routes[i];
regex = new RegExp(item.route, 'i');
matches = route.match(regex);
if (matches !== null) {
currentRoute = route;
item.callback.apply(null, [{id: item.id, matches: matches.slice(1)}]);
break;
}
}
};
var matchHash = function() {
var hash = location.hash;
if ( ! hash) {
hash = '#';
}
matchRoute(hash.slice(1));
};
var addDataRouteListeners = function() {
document.addEventListener('click', function(e) {
var element = e.target;
var route = element.getAttribute('data-route');
if (route) {
if (e.which === 2 || e.metaKey || e.ctrlKey) {
return;
}
if (route === 'href') {
route = element.getAttribute('href');
}
if (route !== currentRoute) {
pub.requestRoute(route);
}
e.preventDefault();
}
});
};
var init = function(options) {
options = options || {};
useHash = options.useHash || ! (history && 'pushState' in history);
if (useHash) {
window.addEventListener('hashchange', matchHash);
} else {
window.addEventListener('popstate', function() {
var newPath = location.pathname;
if (path === newPath) {
return;
}
path = newPath;
matchRoute(path);
});
}
if ( ! options.disableListeners) {
if (document.readyState === 'interactive' || document.readyState === 'complete') {
addDataRouteListeners();
} else {
document.addEventListener('DOMContentLoaded', addDataRouteListeners);
}
}
};
init(options);
return pub;
}
window.Router = Router;
}(window, document));