123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <script lang="ts">
- import Close from 'svelte-material-icons/Close.svelte';
- import Calendar from 'svelte-material-icons/Calendar.svelte';
- import ImageOutline from 'svelte-material-icons/ImageOutline.svelte';
- import CameraIris from 'svelte-material-icons/CameraIris.svelte';
- import MapMarkerOutline from 'svelte-material-icons/MapMarkerOutline.svelte';
- import { createEventDispatcher, onMount } from 'svelte';
- import { browser } from '$app/environment';
- import { AssetResponseDto, AlbumResponseDto } from '@api';
- import { asByteUnitString } from '../../utils/byte-units';
- type Leaflet = typeof import('leaflet');
- type LeafletMap = import('leaflet').Map;
- type LeafletMarker = import('leaflet').Marker;
- // Map Property
- let map: LeafletMap;
- let leaflet: Leaflet;
- let marker: LeafletMarker;
- export let asset: AssetResponseDto;
- $: if (asset.exifInfo?.latitude != null && asset.exifInfo?.longitude != null) {
- drawMap(asset.exifInfo.latitude, asset.exifInfo.longitude);
- }
- export let albums: AlbumResponseDto[];
- onMount(async () => {
- if (browser) {
- if (asset.exifInfo?.latitude != null && asset.exifInfo?.longitude != null) {
- await drawMap(asset.exifInfo.latitude, asset.exifInfo.longitude);
- }
- }
- });
- async function drawMap(lat: number, lon: number) {
- if (!leaflet) {
- leaflet = await import('leaflet');
- }
- if (!map) {
- map = leaflet.map('map');
- leaflet
- .tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
- attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>'
- })
- .addTo(map);
- }
- if (marker) {
- map.removeLayer(marker);
- }
- map.setView([lat || 0, lon || 0], 17);
- marker = leaflet.marker([lat || 0, lon || 0]);
- marker.bindPopup(`${(lat || 0).toFixed(7)},${(lon || 0).toFixed(7)}`);
- map.addLayer(marker);
- }
- const dispatch = createEventDispatcher();
- const getMegapixel = (width: number, height: number): number | undefined => {
- const megapixel = Math.round((height * width) / 1_000_000);
- if (megapixel) {
- return megapixel;
- }
- return undefined;
- };
- const locale = navigator.language;
- </script>
- <section class="p-2 dark:bg-immich-dark-bg dark:text-immich-dark-fg">
- <div class="flex place-items-center gap-2">
- <button
- class="rounded-full p-3 flex place-items-center place-content-center hover:bg-gray-200 transition-colors dark:text-immich-dark-fg dark:hover:bg-gray-900"
- on:click={() => dispatch('close')}
- >
- <Close size="24" />
- </button>
- <p class="text-immich-fg dark:text-immich-dark-fg text-lg">Info</p>
- </div>
- <div class="px-4 py-4">
- {#if !asset.exifInfo}
- <p class="text-sm pb-4">NO EXIF INFO AVAILABLE</p>
- {:else}
- <p class="text-sm pb-4">DETAILS</p>
- {/if}
- {#if asset.exifInfo?.dateTimeOriginal}
- {@const assetDateTimeOriginal = new Date(asset.exifInfo.dateTimeOriginal)}
- <div class="flex gap-4 py-4">
- <div>
- <Calendar size="24" />
- </div>
- <div>
- <p>
- {assetDateTimeOriginal.toLocaleDateString(locale, {
- month: 'short',
- day: 'numeric',
- year: 'numeric'
- })}
- </p>
- <div class="flex gap-2 text-sm">
- <p>
- {assetDateTimeOriginal.toLocaleString(locale, {
- weekday: 'short',
- hour: 'numeric',
- minute: '2-digit',
- timeZoneName: 'longOffset'
- })}
- </p>
- </div>
- </div>
- </div>{/if}
- {#if asset.exifInfo?.fileSizeInByte}
- <div class="flex gap-4 py-4">
- <div><ImageOutline size="24" /></div>
- <div>
- <p>{`${asset.exifInfo.imageName}.${asset.originalPath.split('.')[1]}` || ''}</p>
- <div class="flex text-sm gap-2">
- {#if asset.exifInfo.exifImageHeight && asset.exifInfo.exifImageWidth}
- {#if getMegapixel(asset.exifInfo.exifImageHeight, asset.exifInfo.exifImageWidth)}
- <p>
- {getMegapixel(asset.exifInfo.exifImageHeight, asset.exifInfo.exifImageWidth)} MP
- </p>
- {/if}
- <p>{asset.exifInfo.exifImageHeight} x {asset.exifInfo.exifImageWidth}</p>
- {/if}
- <p>{asByteUnitString(asset.exifInfo.fileSizeInByte)}</p>
- </div>
- </div>
- </div>
- {/if}
- {#if asset.exifInfo?.fNumber}
- <div class="flex gap-4 py-4">
- <div><CameraIris size="24" /></div>
- <div>
- <p>{asset.exifInfo.make || ''} {asset.exifInfo.model || ''}</p>
- <div class="flex text-sm gap-2">
- <p>{`ƒ/${asset.exifInfo.fNumber.toLocaleString(locale)}` || ''}</p>
- {#if asset.exifInfo.exposureTime}
- <p>{`1/${Math.floor(1 / asset.exifInfo.exposureTime)}`}</p>
- {/if}
- {#if asset.exifInfo.focalLength}
- <p>{`${asset.exifInfo.focalLength.toLocaleString(locale)} mm`}</p>
- {/if}
- {#if asset.exifInfo.iso}
- <p>
- {`ISO${asset.exifInfo.iso}`}
- </p>
- {/if}
- </div>
- </div>
- </div>
- {/if}
- {#if asset.exifInfo?.city}
- <div class="flex gap-4 py-4">
- <div><MapMarkerOutline size="24" /></div>
- <div>
- <p>{asset.exifInfo.city}</p>
- <div class="flex text-sm gap-2">
- <p>{asset.exifInfo.state}</p>
- </div>
- <div class="flex text-sm gap-2">
- <p>{asset.exifInfo.country}</p>
- </div>
- </div>
- </div>
- {/if}
- </div>
- </section>
- <div class={`${asset.exifInfo?.latitude ? 'visible' : 'hidden'}`}>
- <div class="h-[360px] w-full" id="map" />
- </div>
- <section class="p-2 dark:text-immich-dark-fg">
- <div class="px-4 py-4">
- {#if albums.length > 0}
- <p class="text-sm pb-4 ">APPEARS IN</p>
- {/if}
- {#each albums as album}
- <a data-sveltekit-preload-data="hover" href={`/albums/${album.id}`}>
- <div
- class="flex gap-4 py-2 hover:cursor-pointer"
- on:click={() => dispatch('click', album)}
- on:keydown={() => dispatch('click', album)}
- >
- <div>
- <img
- alt={album.albumName}
- class="w-[50px] h-[50px] object-cover rounded"
- src={`/api/asset/thumbnail/${album.albumThumbnailAssetId}?format=JPEG`}
- />
- </div>
- <div class="mt-auto mb-auto">
- <p class="dark:text-immich-dark-primary">{album.albumName}</p>
- <div class="flex gap-2 text-sm">
- <p>{album.assetCount} items</p>
- {#if album.shared}
- <p>· Shared</p>
- {/if}
- </div>
- </div>
- </div>
- </a>
- {/each}
- </div>
- </section>
- <style>
- @import 'https://unpkg.com/leaflet@1.7.1/dist/leaflet.css';
- </style>
|