40 lines
1.0 KiB
Svelte
40 lines
1.0 KiB
Svelte
<script lang="ts">
|
|
import type { WithoutChildren } from 'bits-ui';
|
|
import { getEmblaContext } from './context.js';
|
|
import { cn } from '$lib/utils.js';
|
|
import { Button, type Props } from '$lib/components/ui/button/index.js';
|
|
import ChevronLeftIcon from '@lucide/svelte/icons/chevron-left';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
variant = 'outline',
|
|
size = 'icon-sm',
|
|
...restProps
|
|
}: WithoutChildren<Props> = $props();
|
|
|
|
const emblaCtx = getEmblaContext('<Carousel.Previous/>');
|
|
</script>
|
|
|
|
<Button
|
|
data-slot="carousel-previous"
|
|
{variant}
|
|
{size}
|
|
aria-disabled={!emblaCtx.canScrollPrev}
|
|
disabled={!emblaCtx.canScrollPrev}
|
|
class={cn(
|
|
'absolute touch-manipulation rounded-full',
|
|
emblaCtx.orientation === 'horizontal'
|
|
? '-start-12 top-1/2 -translate-y-1/2'
|
|
: 'start-1/2 -top-12 -translate-x-1/2 rotate-90',
|
|
className
|
|
)}
|
|
onclick={emblaCtx.scrollPrev}
|
|
onkeydown={emblaCtx.handleKeyDown}
|
|
{...restProps}
|
|
bind:ref
|
|
>
|
|
<ChevronLeftIcon />
|
|
<span class="sr-only">Previous slide</span>
|
|
</Button>
|