-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
86 lines (74 loc) · 1.48 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
/**
* Module dependencies.
*/
try {
var Route = require('route-component');
} catch (err) {
var Route = require('route');
}
/**
* Expose `Router`.
*/
module.exports = Router;
/**
* Initialize a new Router.
*
* @api public
*/
function Router() {
this.routes = [];
}
/**
* Create route `path` with optional `before`
* and `after` callbacks. If you omit these
* they may be added later with the `Route` returned.
*
* router.get('/user/:id', showUser, hideUser);
*
* router.get('/user/:id')
* .before(showUser)
* .after(hideUser)
*
* @param {String} path
* @param {Function} before
* @param {Function} after
* @return {Route}
* @api public
*/
Router.prototype.get = function(path, before, after){
var route = new Route(path);
this.routes.push(route);
if (before) route.before(before);
if (after) route.after(after);
return route;
};
/**
* Dispatch the given `path`, matching routes
* sequentially.
*
* @param {String} path
* @api public
*/
Router.prototype.dispatch = function(path){
var ret;
this.teardown();
for (var i = 0; i < this.routes.length; i++) {
var route = this.routes[i];
if (ret = route.match(path)) {
this.route = route;
this.args = ret.args;
route.call('before', ret.args);
break;
}
}
};
/**
* Invoke teardown callbacks of previous route.
*
* @api private
*/
Router.prototype.teardown = function(){
var route = this.route;
if (!route) return;
route.call('after', this.args);
};