2020-06-01 20:51:36 +00:00
|
|
|
import * as plugins from './smartrouter.plugins';
|
|
|
|
|
2020-06-03 14:08:08 +00:00
|
|
|
const routeLog = message => {
|
2020-06-01 20:51:36 +00:00
|
|
|
console.log(`%c[Router]%c ${message}`, 'color: rgb(255, 105, 100);', 'color: inherit');
|
|
|
|
};
|
|
|
|
|
|
|
|
export interface IRouterOptions {
|
|
|
|
debug?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Router
|
|
|
|
*/
|
|
|
|
export class SmartRouter {
|
|
|
|
public options: IRouterOptions = {
|
2020-06-03 14:08:08 +00:00
|
|
|
debug: false
|
2020-06-01 20:51:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* the routes we are handling
|
|
|
|
*/
|
2020-06-03 14:08:08 +00:00
|
|
|
public routes: Array<{
|
|
|
|
matchFunction: plugins.pathToRegExp.MatchFunction;
|
|
|
|
handler: <T extends object>(matchArg: plugins.pathToRegExp.Match<T>) => Promise<any>;
|
|
|
|
}> = [];
|
2020-06-01 20:51:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an instance of Router.
|
|
|
|
*/
|
|
|
|
constructor(optionsArg: IRouterOptions) {
|
|
|
|
// lets set the router options
|
|
|
|
this.options = {
|
|
|
|
...this.options,
|
2020-06-03 14:08:08 +00:00
|
|
|
...optionsArg
|
2020-06-01 20:51:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// lets subscribe to route changes
|
2020-06-03 14:08:08 +00:00
|
|
|
window.addEventListener('popstate', popStateEventArg => {
|
2020-06-01 20:51:36 +00:00
|
|
|
popStateEventArg.preventDefault();
|
|
|
|
this._handleRouteState();
|
|
|
|
});
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
|
|
this._handleRouteState();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Push route state to history stack
|
|
|
|
*/
|
|
|
|
public async pushUrl(url: string = '/', state: any = {}) {
|
|
|
|
if (url !== window.location.pathname) {
|
|
|
|
window.history.pushState(state, window.document.title, url);
|
|
|
|
} else {
|
|
|
|
window.history.replaceState(state, window.document.title, url);
|
|
|
|
}
|
|
|
|
await this._handleRouteState();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attach route with handler
|
|
|
|
* @param {string|RegExp} routeArg
|
|
|
|
* @param {function} handlerArg
|
|
|
|
*/
|
|
|
|
public on(routeArg: string, handlerArg: () => Promise<any>) {
|
|
|
|
this.routes.push({
|
|
|
|
matchFunction: plugins.pathToRegExp.match(routeArg),
|
2020-06-03 14:08:08 +00:00
|
|
|
handler: handlerArg
|
2020-06-01 20:51:36 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Apply routes handler to current route
|
|
|
|
*/
|
|
|
|
async _handleRouteState() {
|
|
|
|
const currentLocation = window.location.pathname;
|
|
|
|
const wantedRoute = this.routes.find(routeArg => {
|
|
|
|
return !!routeArg.matchFunction(currentLocation);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (wantedRoute) {
|
|
|
|
const routeResult = wantedRoute.matchFunction(currentLocation);
|
|
|
|
await wantedRoute.handler(routeResult);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|