Newer
Older
<script setup lang="ts">
import { useVModel } from '@vueuse/core';
import { computed } from 'vue';
interface Props {
isVisible: boolean;
theme?:
| 'white'
| 'slate'
| 'blue'
| 'sky'
| 'teal'
| 'lime'
| 'green'
| 'yellow'
| 'orange'
| 'pink'
| 'fuchsia'
| 'purple'
| 'indigo'
| 'rose'
| 'red'
| 'black';
}
const props = defineProps<Props>();
const themeColor = computed(() => {
if (!props?.theme) return '#ffffff';
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
switch (props?.theme) {
case 'white':
return '#ffffff';
case 'slate':
return '#64748b';
case 'blue':
return '#3b82f6';
case 'sky':
return '#0ea5e9';
case 'teal':
return '#14b8a6';
case 'lime':
return '#84cc16';
case 'green':
return '#22c55e';
case 'yellow':
return '#eab308';
case 'orange':
return '#f97316';
case 'pink':
return '#ec4899';
case 'fuchsia':
return '#d946ef';
case 'purple':
return '#a855f7';
case 'indigo':
return '#6366f1';
case 'rose':
return '#f43f5e';
case 'red':
return '#ef4444';
case 'black':
return '#000000';
}
return '#ffffff';
});
const textColor = computed(() => {
if (!props.theme) return '#000000';
if (props.theme === 'white') return '#000000';
return '#ffffff';
});
const emit = defineEmits(['update:isVisible']);
const isVisible = useVModel(props, 'isVisible', emit);
</script>
<template>
<article>
<section
:class="[
'modalBackground',
{
openedModalBackground: isVisible
}
]"
></section>
<section
:style="`color: ${textColor}; background-color: ${themeColor}`"
:class="[
'modal',
{
openedModal: isVisible
}
]"
>
<header class="modalHeader">
<slot name="header" />
<div class="buttonClose" @click.prevent="isVisible = false">
<svg
width="40px"
height="40px"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM8.96963 8.96965C9.26252 8.67676 9.73739 8.67676 10.0303 8.96965L12 10.9393L13.9696 8.96967C14.2625 8.67678 14.7374 8.67678 15.0303 8.96967C15.3232 9.26256 15.3232 9.73744 15.0303 10.0303L13.0606 12L15.0303 13.9696C15.3232 14.2625 15.3232 14.7374 15.0303 15.0303C14.7374 15.3232 14.2625 15.3232 13.9696 15.0303L12 13.0607L10.0303 15.0303C9.73742 15.3232 9.26254 15.3232 8.96965 15.0303C8.67676 14.7374 8.67676 14.2625 8.96965 13.9697L10.9393 12L8.96963 10.0303C8.67673 9.73742 8.67673 9.26254 8.96963 8.96965Z"
:fill="textColor ?? '#ffffff'"
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/>
</svg>
</div>
</header>
<slot />
</section>
</article>
</template>
<style scoped>
.modalBackground {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
z-index: -50;
opacity: 0;
}
.openedModalBackground {
z-index: 60;
opacity: 1;
}
.modal {
position: fixed;
top: 50%;
left: 50%;
z-index: -50;
min-width: 250px;
min-height: 100px;
padding: 20px;
border: 2px solid gray;
border-radius: 10px;
opacity: 0;
transform: translate(-50%, -50%) scale(0.5);
transition: all ease-in-out 0.2s;
user-select: none;
}
.openedModal {
user-select: auto;
z-index: 9999;
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.modalHeader {
font-weight: bold;
font-size: 1.5rem;
padding-right: 50px;
margin-bottom: 20px;
min-height: 1rem;
}
.buttonClose {
position: absolute;
top: 20px;
right: 20px;
width: 30px;
cursor: pointer;
}
</style>