181 lines
3.2 KiB
Vue
181 lines
3.2 KiB
Vue
<template>
|
|
<div v-if="shown">
|
|
<div
|
|
:class="{ shown: actuallyShown }"
|
|
class="tauri-overlay"
|
|
data-tauri-drag-region
|
|
@click="() => (closable ? hide() : {})"
|
|
/>
|
|
<div
|
|
:class="{
|
|
shown: actuallyShown,
|
|
noblur: props.noblur,
|
|
}"
|
|
class="modal-overlay"
|
|
@click="() => (closable ? hide() : {})"
|
|
/>
|
|
<div class="modal-container" :class="{ shown: actuallyShown }">
|
|
<div class="modal-body">
|
|
<div v-if="props.header" class="header">
|
|
<h1>{{ props.header }}</h1>
|
|
<button v-if="closable" class="btn icon-only transparent" @click="hide">
|
|
<XIcon />
|
|
</button>
|
|
</div>
|
|
<div class="content">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-else></div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { XIcon } from '@'
|
|
import { ref } from 'vue'
|
|
|
|
const props = defineProps({
|
|
header: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
noblur: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
closable: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
})
|
|
|
|
const shown = ref(false)
|
|
const actuallyShown = ref(false)
|
|
|
|
function show() {
|
|
shown.value = true
|
|
setTimeout(() => {
|
|
actuallyShown.value = true
|
|
}, 50)
|
|
}
|
|
|
|
function hide() {
|
|
actuallyShown.value = false
|
|
setTimeout(() => {
|
|
shown.value = false
|
|
}, 300)
|
|
}
|
|
|
|
defineExpose({
|
|
show,
|
|
hide,
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.tauri-overlay {
|
|
position: fixed;
|
|
visibility: hidden;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100px;
|
|
z-index: 20;
|
|
|
|
&.shown {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
.modal-overlay {
|
|
visibility: hidden;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 19;
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
@media (prefers-reduced-motion) {
|
|
transition: none !important;
|
|
}
|
|
|
|
&.shown {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
background: hsla(0, 0%, 0%, 0.5);
|
|
backdrop-filter: blur(3px);
|
|
}
|
|
|
|
&.noblur {
|
|
backdrop-filter: none;
|
|
}
|
|
}
|
|
|
|
.modal-container {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 21;
|
|
visibility: hidden;
|
|
pointer-events: none;
|
|
|
|
&.shown {
|
|
visibility: visible;
|
|
.modal-body {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.modal-body {
|
|
position: fixed;
|
|
box-shadow: var(--shadow-raised), var(--shadow-inset);
|
|
border-radius: var(--radius-lg);
|
|
max-height: calc(100% - 2 * var(--gap-lg));
|
|
overflow-y: auto;
|
|
width: 600px;
|
|
pointer-events: auto;
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: var(--color-bg);
|
|
padding: var(--gap-md) var(--gap-lg);
|
|
|
|
h1 {
|
|
font-weight: bold;
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
background-color: var(--color-raised-bg);
|
|
}
|
|
|
|
transform: translateY(50vh);
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: all 0.25s ease-in-out;
|
|
|
|
@media (prefers-reduced-motion) {
|
|
transition: none !important;
|
|
}
|
|
|
|
@media screen and (max-width: 650px) {
|
|
width: calc(100% - 2 * var(--gap-lg));
|
|
}
|
|
}
|
|
}
|
|
</style>
|