2018-10-25 04:07:10 +02:00
|
|
|
const choo = require('choo');
|
|
|
|
const html = require('choo/html');
|
|
|
|
const nanotiming = require('nanotiming');
|
|
|
|
const download = require('./ui/download');
|
|
|
|
const footer = require('./ui/footer');
|
|
|
|
const fxPromo = require('./ui/fxPromo');
|
|
|
|
const header = require('./ui/header');
|
|
|
|
|
|
|
|
nanotiming.disabled = true;
|
|
|
|
|
|
|
|
function banner(state, emit) {
|
|
|
|
if (state.promo && !state.route.startsWith('/unsupported/')) {
|
|
|
|
return fxPromo(state, emit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function body(main) {
|
|
|
|
return function(state, emit) {
|
2018-11-05 23:19:26 +01:00
|
|
|
const b = html`<body class="flex flex-col items-center font-sans bg-blue-lightest md:h-screen md:bg-grey-lightest">
|
2018-10-25 04:07:10 +02:00
|
|
|
${banner(state, emit)}
|
|
|
|
${header(state, emit)}
|
|
|
|
${main(state, emit)}
|
|
|
|
${footer(state)}
|
|
|
|
</body>`;
|
|
|
|
if (state.layout) {
|
|
|
|
// server side only
|
|
|
|
return state.layout(state, b);
|
|
|
|
}
|
|
|
|
return b;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = function() {
|
|
|
|
const app = choo();
|
2018-10-30 19:37:33 +01:00
|
|
|
app.route('/', body(require('./ui/home')));
|
2018-10-25 04:07:10 +02:00
|
|
|
app.route('/download/:id', body(download));
|
|
|
|
app.route('/download/:id/:key', body(download));
|
|
|
|
app.route('/unsupported/:reason', body(require('./ui/unsupported')));
|
|
|
|
app.route('/legal', body(require('./ui/legal')));
|
|
|
|
app.route('/error', body(require('./ui/error')));
|
|
|
|
app.route('/blank', body(require('./ui/blank')));
|
|
|
|
app.route('/oauth', async function(state, emit) {
|
|
|
|
try {
|
|
|
|
await state.user.finishLogin(state.query.code, state.query.state);
|
|
|
|
emit('replaceState', '/');
|
|
|
|
} catch (e) {
|
|
|
|
emit('replaceState', '/error');
|
|
|
|
setTimeout(() => emit('render'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
app.route('*', body(require('./ui/notFound')));
|
|
|
|
return app;
|
|
|
|
};
|