mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-11-04 13:31:13 +00:00
96 lines
3.0 KiB
Svelte
96 lines
3.0 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
GPXFile,
|
|
Track,
|
|
TrackSegment,
|
|
Waypoint,
|
|
type AnyGPXTreeElement,
|
|
type GPXTreeElement,
|
|
} from 'gpx';
|
|
import { CollapsibleTreeNode } from '$lib/components/collapsible-tree/index';
|
|
import { type Readable } from 'svelte/store';
|
|
import FileListNodeContent from './FileListNodeContent.svelte';
|
|
import FileListNodeLabel from './FileListNodeLabel.svelte';
|
|
import { getContext } from 'svelte';
|
|
import {
|
|
ListFileItem,
|
|
ListTrackSegmentItem,
|
|
ListWaypointItem,
|
|
ListWaypointsItem,
|
|
type ListItem,
|
|
type ListTrackItem,
|
|
} from './file-list';
|
|
import { i18n } from '$lib/i18n.svelte';
|
|
import { settings } from '$lib/logic/settings';
|
|
import type { GPXFileWithStatistics } from '$lib/logic/statistics';
|
|
import { selection } from '$lib/logic/selection';
|
|
|
|
let {
|
|
node,
|
|
item,
|
|
}: {
|
|
node:
|
|
| Map<string, Readable<GPXFileWithStatistics | undefined>>
|
|
| GPXTreeElement<AnyGPXTreeElement>
|
|
| Waypoint[]
|
|
| Waypoint;
|
|
item: ListItem;
|
|
} = $props();
|
|
|
|
let recursive = getContext<boolean>('recursive');
|
|
|
|
let collapsible: CollapsibleTreeNode | undefined = $state();
|
|
|
|
let label = $derived(
|
|
node instanceof GPXFile && item instanceof ListFileItem
|
|
? node.metadata.name
|
|
: node instanceof Track
|
|
? (node.name ?? `${i18n._('gpx.track')} ${(item as ListTrackItem).trackIndex + 1}`)
|
|
: node instanceof TrackSegment
|
|
? `${i18n._('gpx.segment')} ${(item as ListTrackSegmentItem).segmentIndex + 1}`
|
|
: node instanceof Waypoint
|
|
? (node.name ??
|
|
`${i18n._('gpx.waypoint')} ${(item as ListWaypointItem).waypointIndex + 1}`)
|
|
: node instanceof GPXFile && item instanceof ListWaypointsItem
|
|
? i18n._('gpx.waypoints')
|
|
: ''
|
|
);
|
|
|
|
const { treeFileView } = settings;
|
|
|
|
function openIfSelectedChild() {
|
|
if (collapsible && treeFileView.value && $selection.hasAnyChildren(item, false)) {
|
|
collapsible.openNode();
|
|
}
|
|
}
|
|
|
|
if ($selection) {
|
|
openIfSelectedChild();
|
|
}
|
|
|
|
// afterUpdate(openIfSelectedChild);
|
|
</script>
|
|
|
|
{#if node instanceof Map}
|
|
<FileListNodeContent {node} {item} />
|
|
{:else if node instanceof TrackSegment}
|
|
<FileListNodeLabel {node} {item} {label} />
|
|
{:else if node instanceof Waypoint}
|
|
<FileListNodeLabel {node} {item} {label} />
|
|
{:else if recursive}
|
|
<CollapsibleTreeNode id={item.getId()} bind:this={collapsible}>
|
|
{#snippet trigger()}
|
|
<FileListNodeLabel {node} {item} {label} />
|
|
{/snippet}
|
|
{#snippet content()}
|
|
<div class="ml-2">
|
|
{#key node}
|
|
<FileListNodeContent {node} {item} />
|
|
{/key}
|
|
</div>
|
|
{/snippet}
|
|
</CollapsibleTreeNode>
|
|
{:else}
|
|
<FileListNodeLabel {node} {item} {label} />
|
|
{/if}
|