mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-05-17 05:01:47 +00:00
21 lines
858 B
Svelte
21 lines
858 B
Svelte
<script lang='ts'>
|
|
import Heart from 'lucide-svelte/icons/heart'
|
|
|
|
import type { Media } from '$lib/modules/anilist'
|
|
|
|
import { Button, iconSizes, type Props } from '$lib/components/ui/button'
|
|
import { authAggregator, fav } from '$lib/modules/auth'
|
|
import { clickwrap, keywrap } from '$lib/modules/navigate'
|
|
|
|
type $$Props = Props & { media: Media }
|
|
|
|
let className: $$Props['class'] = ''
|
|
export { className as class }
|
|
export let media: Media
|
|
export let size: NonNullable<$$Props['size']> = 'icon-sm'
|
|
export let variant: NonNullable<$$Props['variant']> = 'ghost'
|
|
</script>
|
|
|
|
<Button {size} {variant} class={className} on:click={clickwrap(() => authAggregator.toggleFav(media.id))} on:keydown={keywrap(() => authAggregator.toggleFav(media.id))}>
|
|
<Heart fill={fav(media) ? 'currentColor' : 'transparent'} size={iconSizes[size]} />
|
|
</Button>
|