mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-31 15:43:25 +00:00
321 lines
8.5 KiB
Svelte
321 lines
8.5 KiB
Svelte
<script lang="ts">
|
|
import { Button } from '$lib/components/ui/button';
|
|
import * as ContextMenu from '$lib/components/ui/context-menu';
|
|
import Shortcut from '$lib/components/Shortcut.svelte';
|
|
import { dbUtils, getFile } from '$lib/db';
|
|
import {
|
|
Copy,
|
|
Info,
|
|
MapPin,
|
|
PaintBucket,
|
|
Plus,
|
|
Trash2,
|
|
Waypoints,
|
|
Eye,
|
|
EyeOff,
|
|
ClipboardCopy,
|
|
ClipboardPaste,
|
|
Maximize,
|
|
Scissors,
|
|
FileStack,
|
|
FileX
|
|
} from 'lucide-svelte';
|
|
import {
|
|
ListFileItem,
|
|
ListLevel,
|
|
ListTrackItem,
|
|
ListWaypointItem,
|
|
allowedPastes,
|
|
type ListItem
|
|
} from './FileList';
|
|
import {
|
|
copied,
|
|
copySelection,
|
|
cut,
|
|
cutSelection,
|
|
pasteSelection,
|
|
selectAll,
|
|
selectItem,
|
|
selection
|
|
} from './Selection';
|
|
import { getContext } from 'svelte';
|
|
import { get } from 'svelte/store';
|
|
import {
|
|
allHidden,
|
|
editMetadata,
|
|
editStyle,
|
|
embedding,
|
|
centerMapOnSelection,
|
|
gpxLayers,
|
|
map
|
|
} from '$lib/stores';
|
|
import {
|
|
GPXTreeElement,
|
|
Track,
|
|
TrackSegment,
|
|
type AnyGPXTreeElement,
|
|
Waypoint,
|
|
GPXFile
|
|
} from 'gpx';
|
|
import { _ } from 'svelte-i18n';
|
|
import MetadataDialog from './MetadataDialog.svelte';
|
|
import StyleDialog from './StyleDialog.svelte';
|
|
|
|
export let node: GPXTreeElement<AnyGPXTreeElement> | Waypoint[] | Waypoint;
|
|
export let item: ListItem;
|
|
export let label: string | undefined;
|
|
|
|
let orientation = getContext<'vertical' | 'horizontal'>('orientation');
|
|
|
|
$: singleSelection = $selection.size === 1;
|
|
|
|
let nodeColors: string[] = [];
|
|
|
|
$: if (node && $map) {
|
|
nodeColors = [];
|
|
|
|
if (node instanceof GPXFile) {
|
|
let style = node.getStyle();
|
|
|
|
let layer = gpxLayers.get(item.getFileId());
|
|
if (layer) {
|
|
style.color.push(layer.layerColor);
|
|
}
|
|
|
|
style.color.forEach((c) => {
|
|
if (!nodeColors.includes(c)) {
|
|
nodeColors.push(c);
|
|
}
|
|
});
|
|
} else if (node instanceof Track) {
|
|
let style = node.getStyle();
|
|
if (style) {
|
|
if (style.color && !nodeColors.includes(style.color)) {
|
|
nodeColors.push(style.color);
|
|
}
|
|
}
|
|
if (nodeColors.length === 0) {
|
|
let layer = gpxLayers.get(item.getFileId());
|
|
if (layer) {
|
|
nodeColors.push(layer.layerColor);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
let openEditMetadata: boolean = false;
|
|
let openEditStyle: boolean = false;
|
|
|
|
$: openEditMetadata = $editMetadata && singleSelection && $selection.has(item);
|
|
$: openEditStyle =
|
|
$editStyle &&
|
|
$selection.has(item) &&
|
|
$selection.getSelected().findIndex((i) => i.getFullId() === item.getFullId()) === 0;
|
|
$: hidden = item.level === ListLevel.WAYPOINTS ? node._data.hiddenWpt : node._data.hidden;
|
|
</script>
|
|
|
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
|
<ContextMenu.Root
|
|
onOpenChange={(open) => {
|
|
if (open) {
|
|
if (!get(selection).has(item)) {
|
|
selectItem(item);
|
|
}
|
|
}
|
|
}}
|
|
>
|
|
<ContextMenu.Trigger class="grow truncate">
|
|
<Button
|
|
variant="ghost"
|
|
class="relative w-full p-0 px-1 border-none overflow-hidden focus-visible:ring-0 focus-visible:ring-offset-0 {orientation ===
|
|
'vertical'
|
|
? 'h-fit'
|
|
: 'h-9 px-1.5 shadow-md'} pointer-events-auto"
|
|
>
|
|
{#if item instanceof ListFileItem || item instanceof ListTrackItem}
|
|
<MetadataDialog bind:open={openEditMetadata} {node} {item} />
|
|
<StyleDialog bind:open={openEditStyle} {item} />
|
|
{/if}
|
|
{#if item.level === ListLevel.FILE || item.level === ListLevel.TRACK}
|
|
<div
|
|
class="absolute {orientation === 'vertical'
|
|
? 'top-0 bottom-0 right-1 w-1'
|
|
: 'top-0 h-1 left-0 right-0'}"
|
|
style="background:linear-gradient(to {orientation === 'vertical'
|
|
? 'bottom'
|
|
: 'right'},{nodeColors
|
|
.map(
|
|
(c, i) =>
|
|
`${c} ${Math.floor((100 * i) / nodeColors.length)}% ${Math.floor((100 * (i + 1)) / nodeColors.length)}%`
|
|
)
|
|
.join(',')})"
|
|
/>
|
|
{/if}
|
|
<span
|
|
class="w-full text-left truncate py-1 flex flex-row items-center {hidden
|
|
? 'text-muted-foreground'
|
|
: ''} {$cut && $copied?.some((i) => i.getFullId() === item.getFullId())
|
|
? 'text-muted-foreground'
|
|
: ''}"
|
|
on:contextmenu={(e) => {
|
|
if ($embedding) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
return;
|
|
}
|
|
if (e.ctrlKey) {
|
|
// Add to selection instead of opening context menu
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
$selection.toggle(item);
|
|
$selection = $selection;
|
|
}
|
|
}}
|
|
on:mouseenter={() => {
|
|
if (item instanceof ListWaypointItem) {
|
|
let layer = gpxLayers.get(item.getFileId());
|
|
let file = getFile(item.getFileId());
|
|
if (layer && file) {
|
|
let waypoint = file.wpt[item.getWaypointIndex()];
|
|
if (waypoint) {
|
|
layer.showWaypointPopup(waypoint);
|
|
}
|
|
}
|
|
}
|
|
}}
|
|
on:mouseleave={() => {
|
|
if (item instanceof ListWaypointItem) {
|
|
let layer = gpxLayers.get(item.getFileId());
|
|
if (layer) {
|
|
layer.hideWaypointPopup();
|
|
}
|
|
}
|
|
}}
|
|
>
|
|
{#if item.level === ListLevel.SEGMENT}
|
|
<Waypoints size="16" class="mr-1 shrink-0" />
|
|
{:else if item.level === ListLevel.WAYPOINT}
|
|
<MapPin size="16" class="mr-1 shrink-0" />
|
|
{/if}
|
|
<span class="grow select-none truncate {orientation === 'vertical' ? 'last:mr-2' : ''}">
|
|
{label}
|
|
</span>
|
|
{#if hidden}
|
|
<EyeOff
|
|
size="12"
|
|
class="shrink-0 mt-1 ml-1 {orientation === 'vertical' ? 'mr-2' : ''} {item.level ===
|
|
ListLevel.SEGMENT || item.level === ListLevel.WAYPOINT
|
|
? 'mr-3'
|
|
: ''}"
|
|
/>
|
|
{/if}
|
|
</span>
|
|
</Button>
|
|
</ContextMenu.Trigger>
|
|
<ContextMenu.Content>
|
|
{#if item instanceof ListFileItem || item instanceof ListTrackItem}
|
|
<ContextMenu.Item disabled={!singleSelection} on:click={() => ($editMetadata = true)}>
|
|
<Info size="16" class="mr-1" />
|
|
{$_('menu.metadata.button')}
|
|
<Shortcut key="I" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Item on:click={() => ($editStyle = true)}>
|
|
<PaintBucket size="16" class="mr-1" />
|
|
{$_('menu.style.button')}
|
|
</ContextMenu.Item>
|
|
{/if}
|
|
<ContextMenu.Item
|
|
on:click={() => {
|
|
if ($allHidden) {
|
|
dbUtils.setHiddenToSelection(false);
|
|
} else {
|
|
dbUtils.setHiddenToSelection(true);
|
|
}
|
|
}}
|
|
>
|
|
{#if $allHidden}
|
|
<Eye size="16" class="mr-1" />
|
|
{$_('menu.unhide')}
|
|
{:else}
|
|
<EyeOff size="16" class="mr-1" />
|
|
{$_('menu.hide')}
|
|
{/if}
|
|
<Shortcut key="H" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Separator />
|
|
{#if orientation === 'vertical'}
|
|
{#if item instanceof ListFileItem}
|
|
<ContextMenu.Item
|
|
disabled={!singleSelection}
|
|
on:click={() => dbUtils.addNewTrack(item.getFileId())}
|
|
>
|
|
<Plus size="16" class="mr-1" />
|
|
{$_('menu.new_track')}
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Separator />
|
|
{:else if item instanceof ListTrackItem}
|
|
<ContextMenu.Item
|
|
disabled={!singleSelection}
|
|
on:click={() => dbUtils.addNewSegment(item.getFileId(), item.getTrackIndex())}
|
|
>
|
|
<Plus size="16" class="mr-1" />
|
|
{$_('menu.new_segment')}
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Separator />
|
|
{/if}
|
|
{/if}
|
|
{#if item.level !== ListLevel.WAYPOINTS}
|
|
<ContextMenu.Item on:click={selectAll}>
|
|
<FileStack size="16" class="mr-1" />
|
|
{$_('menu.select_all')}
|
|
<Shortcut key="A" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
{/if}
|
|
<ContextMenu.Item on:click={centerMapOnSelection}>
|
|
<Maximize size="16" class="mr-1" />
|
|
{$_('menu.center')}
|
|
<Shortcut key="⏎" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Separator />
|
|
<ContextMenu.Item on:click={dbUtils.duplicateSelection}>
|
|
<Copy size="16" class="mr-1" />
|
|
{$_('menu.duplicate')}
|
|
<Shortcut key="D" ctrl={true} /></ContextMenu.Item
|
|
>
|
|
{#if orientation === 'vertical'}
|
|
<ContextMenu.Item on:click={copySelection}>
|
|
<ClipboardCopy size="16" class="mr-1" />
|
|
{$_('menu.copy')}
|
|
<Shortcut key="C" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Item on:click={cutSelection}>
|
|
<Scissors size="16" class="mr-1" />
|
|
{$_('menu.cut')}
|
|
<Shortcut key="X" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
<ContextMenu.Item
|
|
disabled={$copied === undefined ||
|
|
$copied.length === 0 ||
|
|
!allowedPastes[$copied[0].level].includes(item.level)}
|
|
on:click={pasteSelection}
|
|
>
|
|
<ClipboardPaste size="16" class="mr-1" />
|
|
{$_('menu.paste')}
|
|
<Shortcut key="V" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
{/if}
|
|
<ContextMenu.Separator />
|
|
<ContextMenu.Item on:click={dbUtils.deleteSelection}>
|
|
{#if item instanceof ListFileItem}
|
|
<FileX size="16" class="mr-1" />
|
|
{$_('menu.close')}
|
|
{:else}
|
|
<Trash2 size="16" class="mr-1" />
|
|
{$_('menu.delete')}
|
|
{/if}
|
|
<Shortcut key="⌫" ctrl={true} />
|
|
</ContextMenu.Item>
|
|
</ContextMenu.Content>
|
|
</ContextMenu.Root>
|