drop.chapril.org-firefoxsend/app/templates/selectbox/index.js

27 lines
591 B
JavaScript
Raw Normal View History

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