fox-send/app/routes/index.js

66 lines
1.9 KiB
JavaScript
Raw Normal View History

const choo = require('choo');
const html = require('choo/html');
const nanotiming = require('nanotiming');
const download = require('./download');
const footer = require('../templates/footer');
const fxPromo = require('../templates/fxPromo');
2018-09-07 17:53:40 +00:00
const modal = require('../templates/modal');
2018-09-28 14:54:23 +00:00
const header = require('../templates/header');
nanotiming.disabled = true;
module.exports = function() {
const app = choo();
function banner(state, emit) {
if (state.promo && !state.route.startsWith('/unsupported/')) {
return fxPromo(state, emit);
}
2018-01-24 18:23:13 +00:00
}
function modalDialog(state, emit) {
if (state.modal) {
return modal(state, emit);
}
2018-09-07 17:53:40 +00:00
}
2018-10-01 21:20:26 +00:00
function body(page) {
return function(state, emit) {
2018-09-25 20:39:45 +00:00
const b = html`<body>
2018-09-07 17:53:40 +00:00
${modalDialog(state, emit)}
2018-01-24 18:23:13 +00:00
${banner(state, emit)}
2018-10-01 21:20:26 +00:00
${header(state, emit)}
2018-10-16 23:53:33 +00:00
${page(state, emit)}
${footer(state)}
2018-10-16 23:53:33 +00:00
</body>`;
if (state.layout) {
// server side only
return state.layout(state, b);
}
return b;
};
}
app.route('/', body(require('../pages/welcome')));
app.route('/share/:id', body(require('../pages/share')));
2018-10-16 23:53:33 +00:00
app.route('/uploads', body(require('../pages/uploads')));
app.route('/download/:id', body(download));
app.route('/download/:id/:key', body(download));
app.route('/unsupported/:reason', body(require('../pages/unsupported')));
app.route('/legal', body(require('../pages/legal')));
app.route('/error', body(require('../pages/error')));
app.route('/blank', body(require('../pages/blank')));
app.route('/signin', body(require('../pages/signin')));
2018-09-26 19:22:04 +00:00
app.route('/oauth', async function(state, emit) {
try {
2018-09-21 21:16:56 +00:00
await state.user.finishLogin(state.query.code, state.query.state);
emit('replaceState', '/');
} catch (e) {
emit('replaceState', '/error');
setTimeout(() => emit('render'));
}
});
app.route('*', body(require('../pages/notFound')));
return app;
};