forked from coracle/flotilla
57 lines
1.6 KiB
Svelte
57 lines
1.6 KiB
Svelte
<style>
|
|
a,
|
|
button {
|
|
padding: 12px 16px;
|
|
display: flex;
|
|
border-radius: var(--rounded-btn, 0.5rem);
|
|
cursor: pointer;
|
|
animation: nav-button-pop 200ms ease-out;
|
|
transition-property: all;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 150ms;
|
|
}
|
|
|
|
a:active:hover,
|
|
a:active:focus,
|
|
button:active:hover,
|
|
button:active:focus {
|
|
animation: button-pop 0s ease-out;
|
|
transform: scale(var(--btn-focus-scale, 0.97));
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import {fade} from "@lib/transition"
|
|
import {page} from "$app/stores"
|
|
|
|
const {children, href = "", notification = false, replaceState = false, ...restProps} = $props()
|
|
|
|
const active = $derived($page.url.pathname === href)
|
|
</script>
|
|
|
|
{#if href}
|
|
<a
|
|
{href}
|
|
{...restProps}
|
|
data-sveltekit-replacestate={replaceState}
|
|
class="{restProps.class} relative flex items-center gap-3 text-left transition-all hover:bg-base-100 hover:text-base-content"
|
|
class:text-base-content={active}
|
|
class:bg-base-100={active}>
|
|
{@render children?.()}
|
|
{#if !active && notification}
|
|
<div class="absolute right-2 top-5 h-2 w-2 rounded-full bg-primary" transition:fade></div>
|
|
{/if}
|
|
</a>
|
|
{:else}
|
|
<button
|
|
{...restProps}
|
|
class="{restProps.class} relative flex w-full items-center gap-3 text-left transition-all hover:bg-base-100 hover:text-base-content"
|
|
class:text-base-content={active}
|
|
class:bg-base-100={active}>
|
|
{#if !active && notification}
|
|
<div class="absolute right-2 top-5 h-2 w-2 rounded-full bg-primary" transition:fade></div>
|
|
{/if}
|
|
{@render children?.()}
|
|
</button>
|
|
{/if}
|