fox-send/app/templates/selectbox/index.js

27 lines
591 B
JavaScript
Raw Normal View History

2017-11-30 21:41:09 +00:00
const html = require('choo/html');
module.exports = function(selected, options, translate, changed) {
const id = `select-${Math.random()}`;
let x = selected;
2018-02-16 20:56:53 +00:00
return html`
2018-07-31 18:09:18 +00:00
<select class="selectBox" id="${id}" onchange=${choose}>
2018-02-16 20:56:53 +00:00
${options.map(
i =>
html`<option value="${i}" ${
i === selected ? 'selected' : ''
}>${translate(i)}</option>`
2018-02-16 20:56:53 +00:00
)}
2018-07-31 18:09:18 +00:00
</select>`;
2017-11-30 21:41:09 +00:00
function choose(event) {
const target = event.target;
const value = +target.value;
2017-11-30 21:41:09 +00:00
if (x !== value) {
x = value;
changed(value);
}
}
};