2019-10-18 13:04:24 +02:00
|
|
|
<template>
|
2019-10-18 18:22:12 +02:00
|
|
|
<div
|
|
|
|
v-show="isOpen"
|
|
|
|
v-body-scroll-lock="isOpen"
|
2019-10-21 21:36:03 +02:00
|
|
|
class="modal-view"
|
2019-10-22 02:52:31 +02:00
|
|
|
@click.self="$emit('backdropClicked')"
|
2019-10-18 18:22:12 +02:00
|
|
|
>
|
|
|
|
<slot />
|
|
|
|
</div>
|
2019-10-18 13:04:24 +02:00
|
|
|
</template>
|
|
|
|
|
2019-10-22 02:53:34 +02:00
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
isOpen: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2019-10-18 13:04:24 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.modal-view {
|
2019-10-18 13:07:16 +02:00
|
|
|
z-index: 1000;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
overflow: auto;
|
|
|
|
animation-duration: 0.2s;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
animation-name: modal-background-fadein;
|
|
|
|
|
2019-10-18 13:04:24 +02:00
|
|
|
body:not(.scroll-locked) & {
|
2019-10-18 18:24:03 +02:00
|
|
|
opacity: 0;
|
2019-10-18 13:04:24 +02:00
|
|
|
}
|
|
|
|
}
|
2019-10-21 21:37:14 +02: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 13:04:24 +02:00
|
|
|
</style>
|