2017-08-24 23:54:02 +02:00
|
|
|
const choo = require('choo');
|
2017-11-08 00:54:42 +01:00
|
|
|
const html = require('choo/html');
|
2017-08-24 23:54:02 +02:00
|
|
|
const download = require('./download');
|
2017-11-08 00:54:42 +01:00
|
|
|
const header = require('../templates/header');
|
|
|
|
const footer = require('../templates/footer');
|
|
|
|
const fxPromo = require('../templates/fxPromo');
|
2017-08-24 23:54:02 +02:00
|
|
|
|
|
|
|
const app = choo();
|
|
|
|
|
2017-11-08 00:54:42 +01:00
|
|
|
function body(template) {
|
|
|
|
return function(state, emit) {
|
|
|
|
const b = html`<body>
|
|
|
|
${state.promo === 'header' ? fxPromo(state, emit) : ''}
|
|
|
|
${header(state)}
|
|
|
|
<div class="all">
|
|
|
|
<noscript>
|
|
|
|
<h2>Firefox Send requires JavaScript</h2>
|
|
|
|
<p><a href="https://github.com/mozilla/send/blob/master/docs/faq.md#why-does-firefox-send-require-javascript">Why does Firefox Send require JavaScript?</a></p>
|
|
|
|
<p>Please enable JavaScript and try again.</p>
|
|
|
|
</noscript>
|
|
|
|
${template(state, emit)}
|
|
|
|
</div>
|
|
|
|
${footer(state)}
|
|
|
|
</body>`;
|
|
|
|
if (state.layout) {
|
|
|
|
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')));
|
2017-08-24 23:54:02 +02:00
|
|
|
|
|
|
|
module.exports = app;
|