2024-11-30 00:58:04 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { cn } from "@/lib/utils";
|
2025-03-28 01:16:24 +01:00
|
|
|
import { Primitive, type PrimitiveProps } from "reka-ui";
|
2024-11-30 00:58:04 +01:00
|
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
|
|
|
|
|
|
const props = withDefaults(
|
|
|
|
|
defineProps<
|
|
|
|
|
PrimitiveProps & {
|
|
|
|
|
showOnHover?: boolean;
|
|
|
|
|
class?: HTMLAttributes["class"];
|
|
|
|
|
}
|
|
|
|
|
>(),
|
|
|
|
|
{
|
|
|
|
|
as: "button",
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<Primitive
|
2025-04-10 13:55:56 +02:00
|
|
|
data-slot="sidebar-menu-action"
|
2024-11-30 00:58:04 +01:00
|
|
|
data-sidebar="menu-action"
|
|
|
|
|
:class="cn(
|
2025-04-10 13:55:56 +02:00
|
|
|
'text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground peer-hover/menu-button:text-sidebar-accent-foreground absolute top-1.5 right-1 flex aspect-square w-5 items-center justify-center rounded-md p-0 outline-hidden transition-transform focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
|
|
|
'after:absolute after:-inset-2 md:after:hidden',
|
2024-11-30 00:58:04 +01:00
|
|
|
'peer-data-[size=sm]/menu-button:top-1',
|
|
|
|
|
'peer-data-[size=default]/menu-button:top-1.5',
|
|
|
|
|
'peer-data-[size=lg]/menu-button:top-2.5',
|
|
|
|
|
'group-data-[collapsible=icon]:hidden',
|
|
|
|
|
showOnHover
|
2025-04-10 13:55:56 +02:00
|
|
|
&& 'peer-data-[active=true]/menu-button:text-sidebar-accent-foreground group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 md:opacity-0',
|
2024-11-30 00:58:04 +01:00
|
|
|
props.class,
|
|
|
|
|
)"
|
|
|
|
|
:as="as"
|
|
|
|
|
:as-child="asChild"
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</Primitive>
|
|
|
|
|
</template>
|