Files
flotilla/src/lib/components/PrimaryNavItem.svelte
T
2024-11-14 12:16:44 -08:00

40 lines
1.2 KiB
Svelte

<script lang="ts">
import {page} from "$app/stores"
import Button from "@lib/components/Button.svelte"
export let title = ""
export let href = ""
export let prefix = ""
export let notification = false
$: active = $page.url?.pathname?.startsWith(prefix || href || "bogus")
</script>
{#if href}
<a {href} class="relative z-nav-item flex h-14 w-14 items-center justify-center">
<div
class="avatar cursor-pointer rounded-full p-1 {$$props.class} transition-colors hover:bg-base-300"
class:bg-base-300={active}
class:tooltip={title}
data-tip={title}>
<slot />
{#if !active && notification}
<div class="absolute right-2 top-2 h-2 w-2 rounded-full bg-primary" />
{/if}
</div>
</a>
{:else}
<Button on:click class="relative z-nav-item flex h-14 w-14 items-center justify-center">
<div
class="avatar cursor-pointer rounded-full p-1 {$$props.class} transition-colors hover:bg-base-300"
class:bg-base-300={active}
class:tooltip={title}
data-tip={title}>
<slot />
{#if !active && notification}
<div class="absolute right-2 top-2 h-2 w-2 rounded-full bg-primary" />
{/if}
</div>
</Button>
{/if}