const choo = require('choo'); const html = require('choo/html'); const download = require('./download'); const header = require('../templates/header'); const footer = require('../templates/footer'); const fxPromo = require('../templates/fxPromo'); const app = choo(); function banner(state, emit) { if (state.promo && !state.route.startsWith('/unsupported/')) { return fxPromo(state, emit); } } function body(template) { return function(state, emit) { const b = html` ${banner(state, emit)} ${header(state)}
${template(state, emit)}
${footer(state)} `; if (state.layout) { // server side only return state.layout(state, b); } return b; }; } app.route('/', body(require('./home'))); app.route('/share/:id', body(require('../templates/share'))); app.route('/download/:id', body(download)); app.route('/download/:id/:key', body(download)); app.route('/completed', body(require('../templates/completed'))); app.route('/unsupported/:reason', body(require('../templates/unsupported'))); app.route('/legal', body(require('../templates/legal'))); app.route('/error', body(require('../templates/error'))); app.route('/blank', body(require('../templates/blank'))); app.route('*', body(require('../templates/notFound'))); module.exports = app;