2018-02-04 21:49:43 +00:00
|
|
|
<div class="dialog-wrapper" ref:node>
|
|
|
|
<div class="close-dialog-button-wrapper">
|
2018-02-04 23:04:20 +00:00
|
|
|
<button class="close-dialog-button" aria-label="Close dialog" on:click="close()">
|
2018-02-04 21:49:43 +00:00
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
<style>
|
|
|
|
:global(.modal-dialog) {
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
|
|
|
padding: 0;
|
|
|
|
border: 3px solid var(--main-border);
|
|
|
|
}
|
|
|
|
:global(.modal-dialog-wrapper) {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
max-width: calc(100vw - 40px);
|
|
|
|
}
|
|
|
|
.close-dialog-button-wrapper {
|
|
|
|
text-align: right;
|
|
|
|
width: 100%;
|
|
|
|
background: var(--nav-bg)
|
|
|
|
}
|
|
|
|
.close-dialog-button {
|
2018-02-04 23:59:42 +00:00
|
|
|
padding: 0 0 7px;
|
2018-02-04 21:49:43 +00:00
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.close-dialog-button span {
|
|
|
|
padding: 0 15px;
|
|
|
|
font-size: 48px;
|
|
|
|
color: var(--button-primary-text);
|
|
|
|
}
|
2018-02-04 23:04:20 +00:00
|
|
|
:global(dialog::backdrop, .backdrop) {
|
|
|
|
background: rgba(51, 51, 51, 0.9) !important; /* TODO: hack for Safari */
|
2018-02-04 21:49:43 +00:00
|
|
|
}
|
2018-02-04 23:59:42 +00:00
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.close-dialog-button span {
|
|
|
|
padding: 0 10px 4px;
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 21:49:43 +00:00
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
import { importDialogPolyfill } from '../_utils/asyncModules'
|
|
|
|
import { registerFocusRestoreDialog } from '../_utils/dialogs'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
oncreate() {
|
2018-02-04 23:59:42 +00:00
|
|
|
this.getDialogElement().style.background = this.get('background') || '#000'
|
2018-02-04 21:49:43 +00:00
|
|
|
this.observe('shown', shown => {
|
|
|
|
if (shown) {
|
|
|
|
this.show()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
this.registration = this.register()
|
2018-02-04 23:04:20 +00:00
|
|
|
this.onDocumentClick = (e) => {
|
|
|
|
let dialog = this.getDialogElement()
|
|
|
|
if (!dialog.open) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (e.target !== dialog) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.close() // close when clicked outside of dialog
|
|
|
|
}
|
|
|
|
document.body.addEventListener('click', this.onDocumentClick);
|
2018-02-04 21:49:43 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async register() {
|
|
|
|
if (typeof HTMLDialogElement === 'undefined') {
|
|
|
|
let dialogPolyfill = await importDialogPolyfill()
|
|
|
|
dialogPolyfill.registerDialog(this.getDialogElement())
|
|
|
|
}
|
|
|
|
registerFocusRestoreDialog(this.getDialogElement())
|
|
|
|
},
|
|
|
|
async show() {
|
|
|
|
await this.registration
|
|
|
|
this.getDialogElement().showModal()
|
|
|
|
},
|
2018-02-04 23:04:20 +00:00
|
|
|
close() {
|
2018-02-04 21:49:43 +00:00
|
|
|
this.getDialogElement().close()
|
|
|
|
document.body.removeChild(this.getDialogElement())
|
2018-02-04 23:04:20 +00:00
|
|
|
document.body.removeEventListener('click', this.onDocumentClick);
|
2018-02-04 21:49:43 +00:00
|
|
|
},
|
|
|
|
getDialogElement() {
|
|
|
|
return this.refs.node.parentElement
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|