mirror of
https://github.com/immich-app/immich.git
synced 2025-09-29 15:31:13 -04:00
74 lines
2.2 KiB
Svelte
74 lines
2.2 KiB
Svelte
<script lang="ts">
|
|
import Icon from '$lib/elements/Icon.svelte';
|
|
import { TreeNode } from '$lib/utils/tree-utils';
|
|
import { IconButton } from '@immich/ui';
|
|
import { mdiArrowUpLeft, mdiChevronRight } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
node: TreeNode;
|
|
getLink: (path: string) => string;
|
|
title: string;
|
|
icon: string;
|
|
}
|
|
|
|
const { node, getLink, title, icon }: Props = $props();
|
|
|
|
const rootLink = getLink('');
|
|
const isRoot = $derived(node.parent === null);
|
|
const parentLink = $derived(getLink(node.parent ? node.parent.path : ''));
|
|
const parents = $derived(node.parents);
|
|
</script>
|
|
|
|
<nav class="flex items-center py-2">
|
|
{#if parentLink}
|
|
<div>
|
|
<IconButton
|
|
shape="round"
|
|
color="secondary"
|
|
variant="ghost"
|
|
icon={mdiArrowUpLeft}
|
|
aria-label={$t('to_parent')}
|
|
href={parentLink}
|
|
class="me-2"
|
|
/>
|
|
</div>
|
|
{/if}
|
|
|
|
<div
|
|
class="bg-gray-50 dark:bg-immich-dark-gray/50 w-full p-2 rounded-2xl border border-gray-100 dark:border-gray-900 overflow-y-auto immich-scrollbar"
|
|
>
|
|
<ol class="flex gap-2 items-center">
|
|
<li>
|
|
<IconButton
|
|
shape="round"
|
|
color="secondary"
|
|
variant="ghost"
|
|
{icon}
|
|
href={rootLink}
|
|
aria-label={title}
|
|
size="medium"
|
|
aria-current={isRoot ? 'page' : undefined}
|
|
/>
|
|
</li>
|
|
{#each parents as parent (parent)}
|
|
<li
|
|
class="flex gap-2 items-center font-mono text-sm text-nowrap text-immich-primary dark:text-immich-dark-primary"
|
|
>
|
|
<Icon path={mdiChevronRight} class="text-gray-500 dark:text-gray-300" size={16} ariaHidden />
|
|
<a class="underline hover:font-semibold whitespace-pre-wrap" href={getLink(parent.path)}>
|
|
{parent.value}
|
|
</a>
|
|
</li>
|
|
{/each}
|
|
|
|
<li
|
|
class="flex gap-2 items-center font-mono text-sm text-nowrap text-immich-primary dark:text-immich-dark-primary"
|
|
>
|
|
<Icon path={mdiChevronRight} class="text-gray-500 dark:text-gray-300" size={16} ariaHidden />
|
|
<p class="cursor-default whitespace-pre-wrap">{node.value}</p>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</nav>
|