259 lines
4.8 KiB
Vue
259 lines
4.8 KiB
Vue
<template>
|
|
<Teleport to="body">
|
|
<!-- FIXME: transition should not be included in the modal -->
|
|
<CustomTransition
|
|
:name="transitionName"
|
|
appear
|
|
>
|
|
<section
|
|
v-if="enabled"
|
|
ref="modal"
|
|
class="modal-mask"
|
|
:class="[
|
|
{ 'has-overflow': overflow },
|
|
variant,
|
|
]"
|
|
v-bind="attrs"
|
|
>
|
|
<div
|
|
v-shortcut="'Escape'"
|
|
class="modal-container"
|
|
@mousedown.self.prevent.stop="$emit('close')"
|
|
>
|
|
<BaseButton
|
|
class="close"
|
|
@click="$emit('close')"
|
|
>
|
|
<Icon icon="times" />
|
|
</BaseButton>
|
|
<div
|
|
class="modal-content"
|
|
:class="{
|
|
'has-overflow': overflow,
|
|
'is-wide': wide
|
|
}"
|
|
>
|
|
<slot>
|
|
<div class="header">
|
|
<slot name="header" />
|
|
</div>
|
|
<div class="content">
|
|
<slot name="text" />
|
|
</div>
|
|
<div class="actions">
|
|
<x-button
|
|
variant="tertiary"
|
|
class="has-text-danger"
|
|
@click="$emit('close')"
|
|
>
|
|
{{ $t('misc.cancel') }}
|
|
</x-button>
|
|
<x-button
|
|
v-cy="'modalPrimary'"
|
|
variant="primary"
|
|
:shadow="false"
|
|
@click="$emit('submit')"
|
|
>
|
|
{{ $t('misc.doit') }}
|
|
</x-button>
|
|
</div>
|
|
</slot>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</CustomTransition>
|
|
</Teleport>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import CustomTransition from '@/components/misc/CustomTransition.vue'
|
|
import BaseButton from '@/components/base/BaseButton.vue'
|
|
import {ref, useAttrs, watchEffect} from 'vue'
|
|
import {useScrollLock} from '@vueuse/core'
|
|
|
|
const props = withDefaults(defineProps<{
|
|
enabled?: boolean,
|
|
overflow?: boolean,
|
|
wide?: boolean,
|
|
transitionName?: 'modal' | 'fade',
|
|
variant?: 'default' | 'hint-modal' | 'scrolling',
|
|
}>(), {
|
|
enabled: true,
|
|
overflow: false,
|
|
wide: false,
|
|
transitionName: 'modal',
|
|
variant: 'default',
|
|
})
|
|
|
|
defineEmits(['close', 'submit'])
|
|
|
|
defineOptions({
|
|
inheritAttrs: false,
|
|
})
|
|
|
|
const attrs = useAttrs()
|
|
|
|
const modal = ref<HTMLElement | null>(null)
|
|
const scrollLock = useScrollLock(modal)
|
|
|
|
watchEffect(() => {
|
|
scrollLock.value = props.enabled
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
$modal-margin: 4rem;
|
|
$modal-width: 1024px;
|
|
|
|
.modal-mask {
|
|
position: fixed;
|
|
z-index: 4000;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, .8);
|
|
transition: opacity 150ms ease;
|
|
color: #fff;
|
|
}
|
|
|
|
.modal-container {
|
|
transition: all 150ms ease;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 100vh;
|
|
overflow: auto;
|
|
}
|
|
|
|
.default .modal-content,
|
|
.hint-modal .modal-content {
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
@media screen and (max-width: $tablet) {
|
|
margin: 0;
|
|
position: static;
|
|
transform: none;
|
|
}
|
|
|
|
.header {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.button {
|
|
margin: 0 0.5rem;
|
|
}
|
|
}
|
|
|
|
// scrolling-content
|
|
// used e.g. for <TaskDetailViewModal>
|
|
.scrolling .modal-content {
|
|
width: 100%;
|
|
margin: $modal-margin auto;
|
|
|
|
max-height: none; // reset bulma
|
|
overflow: visible; // reset bulma
|
|
|
|
@media not print {
|
|
max-width: $modal-width;
|
|
}
|
|
|
|
@media screen and (min-width: $tablet) {
|
|
max-height: none; // reset bulma
|
|
margin: $modal-margin auto; // reset bulma
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (max-width: $desktop), print {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.is-wide {
|
|
max-width: $desktop;
|
|
width: calc(100% - 2rem);
|
|
}
|
|
|
|
.hint-modal {
|
|
z-index: 4600;
|
|
|
|
:deep(.card-content) {
|
|
text-align: left;
|
|
|
|
.info {
|
|
font-style: italic;
|
|
}
|
|
}
|
|
}
|
|
|
|
.close {
|
|
$close-button-padding: 26px;
|
|
position: fixed;
|
|
top: .5rem;
|
|
right: $close-button-padding;
|
|
color: var(--white);
|
|
font-size: 2rem;
|
|
|
|
@media screen and (min-width: $desktop) and (max-width: calc(#{$desktop } + #{$close-button-min-space})) {
|
|
top: calc(5px + $modal-margin);
|
|
right: 50%;
|
|
// we align the close button to the modal until there is enough space outside for it
|
|
transform: translateX(calc((#{$modal-width} / 2) - #{$close-button-padding}));
|
|
}
|
|
|
|
@media screen and (min-width: $tablet) and (max-width: #{$desktop + $close-button-min-space}) {
|
|
top: .75rem;
|
|
}
|
|
}
|
|
|
|
@media print, screen and (max-width: $tablet) {
|
|
.modal-mask {
|
|
position: static;
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.modal-container {
|
|
height: auto;
|
|
overflow: visible;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.modal-content {
|
|
position: static;
|
|
max-height: none;
|
|
}
|
|
|
|
.close {
|
|
display: none;
|
|
}
|
|
|
|
:deep(.card) {
|
|
border: none !important;
|
|
border-radius: 0 !important;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
margin-bottom: 0 !important;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style lang="scss">
|
|
// Close icon SVG uses currentColor, change the color to keep it visible
|
|
.dark .close {
|
|
color: var(--grey-900);
|
|
}
|
|
|
|
@media print, screen and (max-width: $tablet) {
|
|
body:has(.modal-mask) #app {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|