📂 Fixes file system view

This commit is contained in:
Rune Harlyk
2025-03-08 15:55:13 +01:00
committed by Rune Harlyk
parent 99660b9a23
commit 5a24038d68
3 changed files with 84 additions and 89 deletions
+30 -36
View File
@@ -1,47 +1,41 @@
<script lang="ts">
import Folder from './Folder.svelte';
import File from './File.svelte';
import { createEventDispatcher } from 'svelte';
import { FolderIcon, FolderOpenOutline } from '$lib/components/icons';
import Folder from './Folder.svelte'
import File from './File.svelte'
import { FolderIcon, FolderOpenOutline } from '$lib/components/icons'
interface Props {
expanded?: boolean;
name: any;
files: any;
}
interface Props {
expanded?: boolean
name: any
files: any
selected: any
}
let { expanded = $bindable(false), name, files }: Props = $props();
let { expanded = $bindable(false), name, files, selected }: Props = $props()
function toggle() {
expanded = !expanded;
}
const dispatch = createEventDispatcher();
const updateSelected = async (event:any) => {
dispatch('selected', { name:event.detail.name });
}
function toggle() {
expanded = !expanded
}
</script>
<button class="flex pl-2" onclick={toggle}>
{#if expanded}
<FolderOpenOutline class="w-6 h-6" />
{:else}
<FolderIcon class="w-6 h-6" />
{/if}
{name}
{#if expanded}
<FolderOpenOutline class="w-6 h-6" />
{:else}
<FolderIcon class="w-6 h-6" />
{/if}
{name}
</button>
{#if expanded}
<ul class="ml-5 border-l border-slate-600">
{#each Object.entries(files) as [name, content]}
<li class="p-1">
{#if typeof content == 'object'}
<Folder {name} files={content} on:selected={updateSelected} />
{:else}
<File {name} on:selected={updateSelected}/>
{/if}
</li>
{/each}
</ul>
<ul class="ml-5 border-l border-slate-600">
{#each Object.entries(files) as [name, content]}
<li class="p-1">
{#if typeof content == 'object'}
<Folder {name} files={content} {selected} />
{:else}
<File {name} {selected} />
{/if}
</li>
{/each}
</ul>
{/if}