mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-03 10:22:13 +00:00
92 lines
3.5 KiB
Svelte
92 lines
3.5 KiB
Svelte
<script lang="ts">
|
|
import { ScrollArea } from '$lib/components/ui/scroll-area/index';
|
|
import * as ContextMenu from '$lib/components/ui/context-menu';
|
|
import FileListNode from './FileListNode.svelte';
|
|
import { onMount, setContext } from 'svelte';
|
|
import { ListFileItem, ListLevel, ListRootItem } from './file-list';
|
|
import { ClipboardPaste, FileStack, Plus } from '@lucide/svelte';
|
|
import Shortcut from '$lib/components/Shortcut.svelte';
|
|
import { i18n } from '$lib/i18n.svelte';
|
|
import { fileStateCollection } from '$lib/logic/file-state';
|
|
import { createFile, pasteSelection } from '$lib/logic/file-actions';
|
|
import { selection, copied } from '$lib/logic/selection';
|
|
import { allowedPastes } from './sortable-file-list';
|
|
|
|
let {
|
|
orientation,
|
|
recursive = false,
|
|
class: className = '',
|
|
style = '',
|
|
}: {
|
|
orientation: 'vertical' | 'horizontal';
|
|
recursive?: boolean;
|
|
class?: string;
|
|
style?: string;
|
|
} = $props();
|
|
|
|
setContext('orientation', orientation);
|
|
setContext('recursive', recursive);
|
|
|
|
onMount(() => {
|
|
if (orientation === 'horizontal') {
|
|
selection.update(($selection) => {
|
|
$selection.forEach((item) => {
|
|
if (!(item instanceof ListFileItem)) {
|
|
$selection.toggle(item);
|
|
$selection.set(new ListFileItem(item.getFileId()), true);
|
|
}
|
|
});
|
|
return $selection;
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<ScrollArea
|
|
class="shrink-0 {orientation === 'vertical' ? 'p-0 pr-3' : 'h-10 px-1'}"
|
|
{orientation}
|
|
scrollbarXClasses={orientation === 'vertical' ? '' : 'hidden'}
|
|
scrollbarYClasses={orientation === 'vertical' ? '' : ''}
|
|
>
|
|
<div
|
|
class="flex {orientation === 'vertical'
|
|
? 'flex-col py-1 pl-1 min-h-screen'
|
|
: 'flex-row'} {className ?? ''}"
|
|
{style}
|
|
>
|
|
<FileListNode node={$fileStateCollection} item={new ListRootItem()} />
|
|
{#if orientation === 'vertical'}
|
|
<ContextMenu.Root>
|
|
<ContextMenu.Trigger class="grow" />
|
|
<ContextMenu.Content>
|
|
<ContextMenu.Item onclick={createFile}>
|
|
<Plus size="16" />
|
|
{i18n._('menu.new_file')}
|
|
<Shortcut key="+" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Separator />
|
|
<ContextMenu.Item
|
|
onclick={() => selection.selectAll()}
|
|
disabled={$fileStateCollection.size === 0}
|
|
>
|
|
<FileStack size="16" />
|
|
{i18n._('menu.select_all')}
|
|
<Shortcut key="A" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Separator />
|
|
<ContextMenu.Item
|
|
disabled={$copied === undefined ||
|
|
$copied.length === 0 ||
|
|
!allowedPastes[$copied[0].level].includes(ListLevel.ROOT)}
|
|
onclick={pasteSelection}
|
|
>
|
|
<ClipboardPaste size="16" />
|
|
{i18n._('menu.paste')}
|
|
<Shortcut key="V" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
</ContextMenu.Content>
|
|
</ContextMenu.Root>
|
|
{/if}
|
|
</div>
|
|
</ScrollArea>
|