mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 20:25:32 -04:00
32 lines
1012 B
Svelte
32 lines
1012 B
Svelte
<script lang="ts">
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
|
|
interface Props {
|
|
items?: string[];
|
|
icon: string;
|
|
onClick: (path: string) => void;
|
|
}
|
|
|
|
let { items = [], icon, onClick }: Props = $props();
|
|
</script>
|
|
|
|
{#if items.length > 0}
|
|
<div
|
|
class="w-full grid grid-cols-2 sm:grid-cols-4 lg:grid-cols-6 2xl:grid-cols-8 gap-2 bg-gray-50 dark:bg-immich-dark-gray/50 rounded-2xl border border-gray-100 dark:border-gray-900"
|
|
>
|
|
{#each items as item}
|
|
<button
|
|
class="flex flex-col place-items-center gap-2 py-2 px-4 hover:bg-immich-primary/10 dark:hover:bg-immich-primary/40 rounded-xl"
|
|
onclick={() => onClick(item)}
|
|
title={item}
|
|
type="button"
|
|
>
|
|
<Icon path={icon} class="text-immich-primary dark:text-immich-dark-primary" size={64} />
|
|
<p class="text-sm dark:text-gray-200 text-nowrap text-ellipsis overflow-clip w-full whitespace-pre-wrap">
|
|
{item}
|
|
</p>
|
|
</button>
|
|
{/each}
|
|
</div>
|
|
{/if}
|