mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
f91b33db38
* change all icons to use iconify * fix minor UI elements * fix layout of table
49 lines
1.4 KiB
Vue
49 lines
1.4 KiB
Vue
<template>
|
|
<div class="card bg-base-100 shadow-xl sm:rounded-lg">
|
|
<div v-if="$slots.title" class="px-4 py-5 sm:px-6">
|
|
<component :is="collapsable ? 'button' : 'div'" v-on="collapsable ? { click: toggle } : {}">
|
|
<h3 class="text-lg font-medium leading-6 flex items-center">
|
|
<slot name="title"></slot>
|
|
<template v-if="collapsable">
|
|
<span class="ml-2 swap swap-rotate" :class="`${collapsed ? 'swap-active' : ''}`">
|
|
<MdiChevronRight class="h-6 w-6 swap-on" />
|
|
<MdiChevronDown class="h-6 w-6 swap-off" />
|
|
</span>
|
|
</template>
|
|
</h3>
|
|
</component>
|
|
<div>
|
|
<p v-if="$slots.subtitle" class="mt-1 max-w-2xl text-sm text-gray-500">
|
|
<slot name="subtitle"></slot>
|
|
</p>
|
|
<template v-if="$slots['title-actions']">
|
|
<slot name="title-actions"></slot>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
<div
|
|
:class="{
|
|
'max-h-[9000px]': collapsable && !collapsed,
|
|
'max-h-0 overflow-hidden': collapsed,
|
|
}"
|
|
class="transition-[max-height] duration-200"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import MdiChevronDown from "~icons/mdi/chevron-down";
|
|
import MdiChevronRight from "~icons/mdi/chevron-right";
|
|
|
|
defineProps<{
|
|
collapsable?: boolean;
|
|
}>();
|
|
|
|
function toggle() {
|
|
collapsed.value = !collapsed.value;
|
|
}
|
|
|
|
const collapsed = ref(false);
|
|
</script>
|