mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-31 15:43:25 +00:00
103 lines
3.2 KiB
Svelte
103 lines
3.2 KiB
Svelte
<script lang="ts">
|
|
import * as Card from '$lib/components/ui/card';
|
|
import { Button } from '$lib/components/ui/button';
|
|
import { overpassPopup, overpassPopupPOI } from './OverpassLayer';
|
|
import { selection } from '$lib/components/file-list/Selection';
|
|
import { PencilLine, MapPin } from 'lucide-svelte';
|
|
import { onMount } from 'svelte';
|
|
import { _ } from 'svelte-i18n';
|
|
import { dbUtils } from '$lib/db';
|
|
|
|
let popupElement: HTMLDivElement;
|
|
|
|
onMount(() => {
|
|
overpassPopup.setDOMContent(popupElement);
|
|
popupElement.classList.remove('hidden');
|
|
});
|
|
|
|
let tags = {};
|
|
let name = '';
|
|
$: if ($overpassPopupPOI) {
|
|
tags = JSON.parse($overpassPopupPOI.tags);
|
|
if (tags.name !== undefined && tags.name !== '') {
|
|
name = tags.name;
|
|
} else {
|
|
name = $_(`layers.label.${$overpassPopupPOI.query}`);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div bind:this={popupElement} class="hidden">
|
|
{#if $overpassPopupPOI}
|
|
<Card.Root class="border-none shadow-md text-base p-2 max-w-[50dvw]">
|
|
<Card.Header class="p-0">
|
|
<Card.Title class="text-md">
|
|
<div class="flex flex-row gap-3">
|
|
<div class="flex flex-col">
|
|
{name}
|
|
<div class="text-muted-foreground text-sm font-normal">
|
|
{$overpassPopupPOI.lat.toFixed(6)}° {$overpassPopupPOI.lon.toFixed(6)}°
|
|
</div>
|
|
</div>
|
|
<Button
|
|
class="ml-auto p-1.5 h-8"
|
|
variant="outline"
|
|
href="https://www.openstreetmap.org/edit?editor=id&node={$overpassPopupPOI.id}"
|
|
target="_blank"
|
|
>
|
|
<PencilLine size="16" />
|
|
</Button>
|
|
</div>
|
|
</Card.Title>
|
|
</Card.Header>
|
|
{#if tags.image || tags['image:0']}
|
|
<div class="w-full rounded-md overflow-clip my-2 max-w-96 mx-auto">
|
|
<!-- svelte-ignore a11y-missing-attribute -->
|
|
<img src={tags.image ?? tags['image:0']} />
|
|
</div>
|
|
{/if}
|
|
<Card.Content class="flex flex-col p-0 text-sm mt-1 whitespace-normal break-all">
|
|
<div class="grid grid-cols-[auto_auto] gap-x-3">
|
|
{#each Object.entries(tags) as [key, value]}
|
|
{#if key !== 'name' && !key.includes('image')}
|
|
<span class="font-mono">{key}</span>
|
|
{#if key === 'website' || key === 'contact:website' || key === 'contact:facebook' || key === 'contact:instagram' || key === 'contact:twitter'}
|
|
<a href={value} target="_blank" class="text-blue-500 underline">{value}</a>
|
|
{:else if key === 'phone' || key === 'contact:phone'}
|
|
<a href={'tel:' + value} class="text-blue-500 underline">{value}</a>
|
|
{:else if key === 'email' || key === 'contact:email'}
|
|
<a href={'mailto:' + value} class="text-blue-500 underline">{value}</a>
|
|
{:else}
|
|
<span>{value}</span>
|
|
{/if}
|
|
{/if}
|
|
{/each}
|
|
</div>
|
|
<Button
|
|
class="mt-2"
|
|
variant="outline"
|
|
disabled={$selection.size === 0}
|
|
on:click={() => {
|
|
let desc = Object.entries(tags)
|
|
.map(([key, value]) => `${key}: ${value}`)
|
|
.join('\n');
|
|
dbUtils.addOrUpdateWaypoint({
|
|
attributes: {
|
|
lat: $overpassPopupPOI.lat,
|
|
lon: $overpassPopupPOI.lon
|
|
},
|
|
name: name,
|
|
desc: desc,
|
|
cmt: desc,
|
|
sym: $overpassPopupPOI.sym
|
|
});
|
|
}}
|
|
>
|
|
<MapPin size="16" class="mr-1" />
|
|
{$_('toolbar.waypoint.add')}
|
|
</Button>
|
|
</Card.Content>
|
|
</Card.Root>
|
|
{/if}
|
|
</div>
|