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
|
<template>
<div :style="styles">
<div class="hover:cursor-pointer" @click="onClick">
<slot name="summary" :open="open">(Summary)</slot>
</div>
<transition @enter="onEnter" @after-enter="onAfterEnter" @leave="onLeave" @before-leave="onBeforeLeave">
<div v-show="open" :style="contentStyles" class="max-h-0" ref="content">
<slot name="content">(Content)</slot>
</div>
</transition>
</div>
</template>
<script setup lang="ts">
import {ref, computed, watch} from 'vue';
const props = defineProps({
modelValue: {type: Boolean, default: false}, // For using v-model on the component
});
const emit = defineEmits(['update:modelValue', 'open']);
// ========== For open status ==========
const open = ref(false);
watch(() => props.modelValue, (newVal) => {open.value = newVal})
function onClick(){
open.value = !open.value;
emit('update:modelValue', open.value);
if (open.value){
emit('open');
}
}
// ========== For styles ==========
const styles = computed(() => ({
overflow: open.value ? 'visible' : 'hidden',
}));
const contentStyles = computed(() => ({
overflow: 'hidden',
opacity: open.value ? '1' : '0',
transitionProperty: 'max-height, opacity',
transitionDuration: '300ms',
transitionTimingFunction: 'ease-in-out',
}));
// ========== Open/close transitions ==========
function onEnter(el: HTMLDivElement){
el.style.maxHeight = el.scrollHeight + 'px';
}
function onAfterEnter(el: HTMLDivElement){
el.style.maxHeight = 'none';
// Allows the content to grow after the transition ends, as the scrollHeight sometimes is too short
}
function onBeforeLeave(el: HTMLDivElement){
el.style.maxHeight = el.scrollHeight + 'px';
el.offsetWidth; // Triggers reflow
}
function onLeave(el: HTMLDivElement){
el.style.maxHeight = '0';
}
</script>
|