blob: 42ba070b26b6fba42829b03ea6d78ae1736ac1c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<script setup lang="ts">
import { ref } from 'vue';
const visible = ref(false);
const refDialog = ref<HTMLDialogElement | null>(null);
const props = defineProps<{
kind?: 'normal' | 'error';
fitContents?: boolean;
}>();
const showModal = () => {
refDialog.value?.showModal();
visible.value = true;
};
const closeModal = () => {
refDialog.value?.close();
};
const emit = defineEmits(['close']);
defineExpose({
show: showModal,
close: closeModal,
visible,
});
const onClose = () => {
visible.value = false;
emit('close');
};
const onDivClick = (e: MouseEvent) => {
e.stopPropagation()
};
const onDialogClick = (e: MouseEvent) => {
if (e.target === refDialog.value) {
refDialog.value?.close();
}
};
</script>
<template>
<dialog ref="refDialog" @click="onDialogClick" @close="onClose" :class="[props.kind, { fit: props.fitContents }]">
<div @click="onDivClick">
<form v-if="visible" method="dialog">
<slot />
</form>
</div>
</dialog>
</template>
<style scoped>
dialog {
outline: none;
border-radius: 0.5rem;
padding: 1rem;
width: 1000px;
margin: 0;
top: 80px;
max-height: calc(100vh - 160px);
left: 50%;
transform: translateX(-50%);
}
dialog.normal {
border: 2px solid var(--color-border);
background-color: var(--color-background);
}
dialog.error {
border: 2px solid var(--color-background-error-dark);
background-color: var(--color-background-error);
color: white;
}
dialog.fit {
width: fit-content;
max-width: 1000px;
}
dialog::backdrop {
backdrop-filter: blur(4px);
background-color: rgba(0, 0, 0, 0.3);
}
div.actions {
display: flex;
margin-top: 12px;
gap: 8px;
justify-content: flex-end;
}
</style>
|