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

15 lines
393 B
JavaScript
Raw Normal View History

2018-06-19 21:58:42 +02:00
const html = require('choo/html');
const assets = require('../../../common/assets');
2018-06-21 00:23:15 +02:00
module.exports = function(state) {
if (!state.backgroundUrl) {
const backgrounds = assets.match(/background/);
state.backgroundUrl =
backgrounds[Math.floor(Math.random() * backgrounds.length)];
}
2018-06-19 21:58:42 +02:00
return html`<div class="background">
2018-06-21 00:23:15 +02:00
<img src="${state.backgroundUrl}">
2018-06-19 21:58:42 +02:00
</div>`;
};