const html = require('choo/html'); const raw = require('choo/html/raw'); const selectbox = require('../selectbox'); const timeLimitText = require('../timeLimitText'); module.exports = function(state, emit) { const el = html`
${raw( state.translate('frontPageExpireInfo', { downloadCount: '', timespan: '' }) )}
`; if (el.__encoded) { // we're rendering on the server return el; } const dlCountSelect = el.querySelector('#dlCount'); el.replaceChild( selectbox( state.downloadCount || 1, [1, 2, 3, 4, 5, 20, 50, 100, 200], num => state.translate('downloadCount', { num }), value => { const max = state.user.maxDownloads; if (value > max) { alert('todo: this setting requires an account'); value = max; } state.downloadCount = value; emit('render'); } ), dlCountSelect ); const timeSelect = el.querySelector('#timespan'); el.replaceChild( selectbox( state.timeLimit || 86400, [300, 3600, 86400, 604800], num => timeLimitText(state.translate, num), value => { const max = state.user.maxExpireSeconds; if (value > max) { alert('todo: this setting requires an account'); value = max; } state.timeLimit = value; emit('render'); } ), timeSelect ); return el; };