mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
39 lines
1.4 KiB
Vue
39 lines
1.4 KiB
Vue
|
|
<template>
|
||
|
|
<aside v-bind="$props" class="overflow-hidden">
|
||
|
|
<div
|
||
|
|
:class="['flex max-h-dvh overflow-hidden w-full duration-200', open ? enterClass : leaveClass, direction === 'left' ? 'flex-row' : 'flex-row-reverse']">
|
||
|
|
<div class="bg-dark-900 ring-1 ring-white/10 h-full overflow-y-auto w-full">
|
||
|
|
<slot />
|
||
|
|
</div>
|
||
|
|
<button @click="open = !open"
|
||
|
|
class="h-full bg-dark-700/50 hover:bg-dark-400/50 hover:cursor-pointer duration-200 py-4 px-0.5 flex items-center justify-center w-4 shrink-0">
|
||
|
|
<Icon name="tabler:chevron-right"
|
||
|
|
:class="['text-gray-200 duration-200', direction === 'left' ? open ? 'rotate-180' : 'rotate-0' : open ? 'rotate-0' : 'rotate-180']"
|
||
|
|
aria-hidden="true" />
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</aside>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
// slides in and out from the left or right
|
||
|
|
import type { HTMLAttributes } from "vue";
|
||
|
|
|
||
|
|
interface Props extends /* @vue-ignore */ HTMLAttributes {
|
||
|
|
direction?: "left" | "right";
|
||
|
|
initial?: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
const props = withDefaults(defineProps<Props>(), {
|
||
|
|
direction: "left",
|
||
|
|
initial: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
const leaveClass = computed(() =>
|
||
|
|
props.direction === "left"
|
||
|
|
? "-translate-x-[calc(100%-1rem)]"
|
||
|
|
: "translate-x-[calc(100%-1rem)]",
|
||
|
|
);
|
||
|
|
const enterClass = "translate-x-0";
|
||
|
|
const open = ref(props.initial);
|
||
|
|
</script>
|