drop.chapril.org-firefoxsend/app/ui/modal.js

29 lines
679 B
JavaScript
Raw Normal View History

2018-10-25 04:07:10 +02:00
const html = require('choo/html');
module.exports = function(state, emit) {
return html`
<send-modal
2018-11-16 21:39:36 +01:00
class="absolute pin flex items-center justify-center overflow-hidden z-40 bg-cloud md:my-8"
onclick="${close}"
>
<div class="h-full max-h-screen absolute pin-t flex items-center">
<div
class="shadow-cloud bg-white"
onclick="${e => e.stopPropagation()}"
>
${state.modal(state, emit, close)}
</div>
2018-11-02 10:27:59 +01:00
</div>
</send-modal>
2018-11-16 21:39:36 +01:00
`;
2018-10-25 04:07:10 +02:00
function close(event) {
2018-10-29 17:52:24 +01:00
if (event) {
event.preventDefault();
event.stopPropagation();
}
2018-10-25 04:07:10 +02:00
state.modal = null;
emit('render');
}
};