pleroma-fe/src/components/modal/modal.vue

79 lines
1.2 KiB
Vue
Raw Normal View History

2019-10-18 13:04:24 +02:00
<template>
<div
v-show="isOpen"
v-body-scroll-lock="isOpen && !noBackground"
class="modal-view"
:class="classes"
2019-10-22 02:52:31 +02:00
@click.self="$emit('backdropClicked')"
>
<slot />
</div>
2019-10-18 13:04:24 +02:00
</template>
2019-10-22 02:53:34 +02:00
<script>
export default {
2022-07-31 11:35:48 +02:00
provide: {
popoversZLayer: 'modals'
},
2019-10-22 02:53:34 +02:00
props: {
isOpen: {
type: Boolean,
default: true
},
noBackground: {
type: Boolean,
default: false
2019-10-22 02:53:34 +02:00
}
},
computed: {
classes () {
return {
'modal-background': !this.noBackground,
2022-07-31 11:35:48 +02:00
open: this.isOpen
}
}
2019-10-22 02:53:34 +02:00
}
}
</script>
2019-10-18 13:04:24 +02:00
<style lang="scss">
.modal-view {
z-index: var(--ZI_modals);
2019-10-18 13:07:16 +02:00
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
overflow: auto;
pointer-events: none;
2019-10-18 13:07:16 +02:00
animation-duration: 0.2s;
animation-name: modal-background-fadein;
opacity: 0;
2019-10-18 13:07:16 +02:00
> * {
pointer-events: initial;
}
&.modal-background {
pointer-events: initial;
background-color: rgba(0, 0, 0, 0.5);
}
&.open {
opacity: 1;
2019-10-18 13:04:24 +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>