2019-10-18 11:04:24 +00:00
|
|
|
<template>
|
2019-10-18 16:22:12 +00:00
|
|
|
<div
|
|
|
|
v-show="isOpen"
|
2020-05-23 23:06:55 +00:00
|
|
|
v-body-scroll-lock="isOpen && !noBackground"
|
2019-10-21 19:36:03 +00:00
|
|
|
class="modal-view"
|
2020-05-23 23:06:55 +00:00
|
|
|
:class="classes"
|
2019-10-22 00:52:31 +00:00
|
|
|
@click.self="$emit('backdropClicked')"
|
2019-10-18 16:22:12 +00:00
|
|
|
>
|
|
|
|
<slot />
|
|
|
|
</div>
|
2019-10-18 11:04:24 +00:00
|
|
|
</template>
|
|
|
|
|
2019-10-22 00:53:34 +00:00
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
isOpen: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
2020-05-10 03:46:06 +00:00
|
|
|
},
|
|
|
|
noBackground: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2019-10-22 00:53:34 +00:00
|
|
|
}
|
2020-05-23 23:06:55 +00:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
classes () {
|
|
|
|
return {
|
|
|
|
'modal-background': !this.noBackground,
|
|
|
|
'open': this.isOpen
|
|
|
|
}
|
|
|
|
}
|
2019-10-22 00:53:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2019-10-18 11:04:24 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.modal-view {
|
2019-10-18 11:07:16 +00:00
|
|
|
z-index: 1000;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
overflow: auto;
|
2020-05-10 03:46:06 +00:00
|
|
|
pointer-events: none;
|
2019-10-18 11:07:16 +00:00
|
|
|
animation-duration: 0.2s;
|
|
|
|
animation-name: modal-background-fadein;
|
2020-05-23 23:06:55 +00:00
|
|
|
opacity: 0;
|
2019-10-18 11:07:16 +00:00
|
|
|
|
2020-05-10 03:46:06 +00:00
|
|
|
> * {
|
|
|
|
pointer-events: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.modal-background {
|
|
|
|
pointer-events: initial;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
2020-05-23 23:06:55 +00:00
|
|
|
&.open {
|
|
|
|
opacity: 1;
|
2019-10-18 11:04:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-21 19:37:14 +00:00
|
|
|
|
|
|
|
@keyframes modal-background-fadein {
|
|
|
|
from {
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
}
|
2019-10-18 11:04:24 +00:00
|
|
|
</style>
|