2025-06-11 21:08:36 +02:00
|
|
|
<script lang="ts">
|
|
|
|
|
import { timeToLoadTheMap } from '$lib/constants';
|
|
|
|
|
import { delay } from '$lib/utils/asset-utils';
|
|
|
|
|
import type { MapMarkerResponseDto } from '@immich/sdk';
|
|
|
|
|
import { LoadingSpinner, Modal, ModalBody } from '@immich/ui';
|
|
|
|
|
import { t } from 'svelte-i18n';
|
|
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
|
onClose: (assetIds?: string[]) => void;
|
|
|
|
|
mapMarkers: MapMarkerResponseDto[];
|
|
|
|
|
};
|
|
|
|
|
|
2025-07-28 18:36:37 +02:00
|
|
|
let { onClose, mapMarkers }: Props = $props();
|
2025-06-11 21:08:36 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<Modal title={$t('map')} size="giant" {onClose}>
|
|
|
|
|
<ModalBody>
|
2026-05-01 06:18:03 +02:00
|
|
|
<div class="flex size-full flex-col gap-2 rounded-2xl border border-gray-300 dark:border-light">
|
2025-06-11 21:08:36 +02:00
|
|
|
<div class="h-[75vh] min-h-[300px] w-full">
|
2026-04-21 17:29:42 +01:00
|
|
|
{#await import('$lib/components/shared-components/map/Map.svelte')}
|
2025-06-11 21:08:36 +02:00
|
|
|
{#await delay(timeToLoadTheMap) then}
|
|
|
|
|
<!-- show the loading spinner only if loading the map takes too much time -->
|
2026-05-01 06:18:03 +02:00
|
|
|
<div class="flex size-full items-center justify-center">
|
2025-06-11 21:08:36 +02:00
|
|
|
<LoadingSpinner />
|
|
|
|
|
</div>
|
|
|
|
|
{/await}
|
|
|
|
|
{:then { default: Map }}
|
2025-07-28 18:36:37 +02:00
|
|
|
<Map clickable={false} {mapMarkers} onSelect={onClose} showSettings={false} rounded autoFitBounds />
|
2025-06-11 21:08:36 +02:00
|
|
|
{/await}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ModalBody>
|
|
|
|
|
</Modal>
|