Sharkey/src/web/app/ch/router.ts

33 lines
658 B
TypeScript
Raw Normal View History

2017-10-31 20:17:14 +02:00
import * as riot from 'riot';
2017-11-13 11:05:35 +02:00
import * as route from 'page';
2017-10-31 20:17:14 +02:00
let page = null;
export default me => {
route('/', index);
route('/:channel', channel);
route('*', notFound);
function index() {
mount(document.createElement('mk-index'));
}
function channel(ctx) {
const el = document.createElement('mk-channel');
el.setAttribute('id', ctx.params.channel);
mount(el);
}
function notFound() {
mount(document.createElement('mk-not-found'));
}
// EXEC
2017-11-13 11:05:35 +02:00
(route as any)();
2017-10-31 20:17:14 +02:00
};
function mount(content) {
if (page) page.unmount();
const body = document.getElementById('app');
page = riot.mount(body.appendChild(content))[0];
}