2023-12-19 22:08:00 +01:00
|
|
|
<script lang="ts">
|
|
|
|
/**
|
|
|
|
* The 'imageOperations' previews an image and offers some extra tools (e.g. download)
|
|
|
|
*/
|
2023-12-05 18:35:18 +01:00
|
|
|
|
2023-12-19 22:08:00 +01:00
|
|
|
import type { ProvidedImage } from "../../Logic/ImageProviders/ImageProvider"
|
|
|
|
import ImageAttribution from "./ImageAttribution.svelte"
|
|
|
|
import ImagePreview from "./ImagePreview.svelte"
|
|
|
|
import { DownloadIcon } from "@rgossiaux/svelte-heroicons/solid"
|
|
|
|
import { Utils } from "../../Utils"
|
|
|
|
import { twMerge } from "tailwind-merge"
|
2023-12-26 12:26:26 +01:00
|
|
|
import { UIEventSource } from "../../Logic/UIEventSource"
|
|
|
|
import Loading from "../Base/Loading.svelte"
|
2023-12-05 18:35:18 +01:00
|
|
|
|
2023-12-19 22:08:00 +01:00
|
|
|
export let image: ProvidedImage
|
|
|
|
export let clss: string = undefined
|
2023-12-30 15:24:30 +01:00
|
|
|
|
2023-12-26 12:26:26 +01:00
|
|
|
let isLoaded = new UIEventSource(false)
|
2023-12-19 22:08:00 +01:00
|
|
|
async function download() {
|
|
|
|
const response = await fetch(image.url_hd ?? image.url)
|
2023-12-05 18:35:18 +01:00
|
|
|
const blob = await response.blob()
|
|
|
|
Utils.offerContentsAsDownloadableFile(blob, new URL(image.url).pathname.split("/").at(-1), {
|
2023-12-19 22:08:00 +01:00
|
|
|
mimetype: "image/jpg",
|
2023-12-05 18:35:18 +01:00
|
|
|
})
|
2023-12-19 22:08:00 +01:00
|
|
|
}
|
2023-12-05 18:35:18 +01:00
|
|
|
</script>
|
|
|
|
|
2023-12-19 22:08:00 +01:00
|
|
|
<div class={twMerge("relative h-full w-full", clss)}>
|
|
|
|
<div class="panzoom-container focusable absolute top-0 left-0 h-full w-full overflow-hidden">
|
2023-12-26 12:26:26 +01:00
|
|
|
{#if !$isLoaded}
|
2023-12-30 15:24:30 +01:00
|
|
|
<div class="flex h-full w-full items-center justify-center">
|
|
|
|
<Loading />
|
2023-12-26 12:26:26 +01:00
|
|
|
</div>
|
2023-12-30 15:24:30 +01:00
|
|
|
{/if}
|
|
|
|
<ImagePreview {image} {isLoaded} />
|
2023-12-05 18:35:18 +01:00
|
|
|
</div>
|
2023-12-19 22:08:00 +01:00
|
|
|
<div
|
|
|
|
class="pointer-events-none absolute bottom-0 left-0 flex w-full flex-wrap items-end justify-between"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="pointer-events-auto m-1 w-fit opacity-50 transition-colors duration-200 hover:opacity-100"
|
|
|
|
>
|
|
|
|
<ImageAttribution {image} />
|
2023-12-05 18:35:18 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<button
|
2023-12-19 22:08:00 +01:00
|
|
|
class="no-image-background pointer-events-auto flex items-center bg-black text-white opacity-50 transition-colors duration-200 hover:opacity-100"
|
|
|
|
on:click={() => download()}
|
|
|
|
>
|
|
|
|
<DownloadIcon class="h-6 w-6 px-2 opacity-100" />
|
2023-12-05 18:35:18 +01:00
|
|
|
Download
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|