-
Notifications
You must be signed in to change notification settings - Fork 124
/
FwbModal.vue
128 lines (121 loc) · 3.79 KB
/
FwbModal.vue
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<template>
<div>
<div class="bg-gray-900 bg-opacity-50 dark:bg-opacity-80 fixed inset-0 z-40" />
<div
ref="modalRef"
class="overflow-y-auto overflow-x-hidden fixed top-0 right-0 left-0 z-50 w-full md:inset-0 h-modal md:h-full grid"
tabindex="0"
@click.self="clickOutside"
@keyup.esc="closeWithEsc"
>
<div
:class="`${modalSizeClasses[size]} ${modalPositionClasses[position]}`"
class="relative p-4 w-full"
>
<!-- Modal content -->
<div class="relative bg-white rounded-lg shadow dark:bg-gray-700">
<!-- Modal header -->
<div
:class="$slots.header ? 'border-b border-gray-200 dark:border-gray-600' : ''"
class="p-4 rounded-t flex justify-between items-center"
>
<slot name="header" />
<button
v-if="!persistent"
aria-label="close"
class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm p-1.5 ms-auto inline-flex items-center dark:hover:bg-gray-600 dark:hover:text-white"
type="button"
@click="closeModal"
>
<slot name="close-icon">
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
><path
clip-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
fill-rule="evenodd"
/></svg>
</slot>
</button>
</div>
<!-- Modal body -->
<div
:class="$slots.header ? '' : 'pt-0'"
class="p-6"
>
<slot name="body" />
</div>
<!-- Modal footer -->
<div
v-if="$slots.footer"
class="p-6 rounded-b border-gray-200 border-t dark:border-gray-600"
>
<slot name="footer" />
</div>
</div>
</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { onMounted, ref, type Ref } from 'vue'
import type { ModalPosition, ModalSize } from './types'
interface ModalProps {
notEscapable?: boolean,
persistent?: boolean
size?: ModalSize,
position?: ModalPosition
}
const props = withDefaults(defineProps<ModalProps>(), {
notEscapable: false,
persistent: false,
size: '2xl',
position: 'center',
})
const emit = defineEmits(['close', 'click:outside'])
const modalSizeClasses: Record<ModalSize, string> = {
xs: 'max-w-xs',
sm: 'max-w-sm',
md: 'max-w-md',
lg: 'max-w-lg',
xl: 'max-w-xl',
'2xl': 'max-w-2xl',
'3xl': 'max-w-3xl',
'4xl': 'max-w-4xl',
'5xl': 'max-w-5xl',
'6xl': 'max-w-6xl',
'7xl': 'max-w-7xl',
}
const modalPositionClasses: Record<ModalPosition, string> = {
'top-start': 'self-start justify-self-start',
'top-center': 'self-start justify-self-center',
'top-end': 'self-start justify-self-end',
'center-start': 'self-center justify-self-start',
center: 'self-center justify-self-center',
'center-end': 'self-center justify-self-end',
'bottom-start': 'self-end justify-self-start',
'bottom-center': 'self-end justify-self-center',
'bottom-end': 'self-end justify-self-end',
}
function closeModal () {
emit('close')
}
function clickOutside () {
if (!props.persistent) {
emit('click:outside')
closeModal()
}
}
function closeWithEsc () {
if (!props.notEscapable && !props.persistent) closeModal()
}
const modalRef: Ref<HTMLElement | null> = ref(null)
onMounted(() => {
if (modalRef.value) {
modalRef.value.focus()
}
})
</script>