| | <script lang="ts"> |
| | import { createEventDispatcher, tick } from "svelte"; |
| | import { BlockLabel, IconButtonWrapper, IconButton } from "@gradio/atoms"; |
| | import { Clear, Image as ImageIcon } from "@gradio/icons"; |
| | import { FullscreenButton } from "@gradio/atoms"; |
| | import { |
| | type SelectData, |
| | type I18nFormatter, |
| | type ValueData |
| | } from "@gradio/utils"; |
| | import { get_coordinates_of_clicked_image } from "./utils"; |
| | import Webcam from "./Webcam.svelte"; |
| | |
| | import { Upload, UploadProgress } from "@gradio/upload"; |
| | import { FileData, type Client } from "@gradio/client"; |
| | import { SelectSource } from "@gradio/atoms"; |
| | import Image from "./Image.svelte"; |
| | import type { Base64File, WebcamOptions } from "./types"; |
| | |
| | export let value: null | FileData | Base64File = null; |
| | export let label: string | undefined = undefined; |
| | export let show_label: boolean; |
| | |
| | type source_type = "upload" | "webcam" | "clipboard" | "microphone" | null; |
| | |
| | export let sources: source_type[] = ["upload", "clipboard", "webcam"]; |
| | export let streaming = false; |
| | export let pending = false; |
| | export let webcam_options: WebcamOptions; |
| | export let selectable = false; |
| | export let root: string; |
| | export let i18n: I18nFormatter; |
| | export let max_file_size: number | null = null; |
| | export let upload: Client["upload"]; |
| | export let stream_handler: Client["stream"]; |
| | export let stream_every: number; |
| | export let time_limit: number; |
| | export let show_fullscreen_button = true; |
| | export let stream_state: "open" | "waiting" | "closed" = "closed"; |
| | export let upload_promise: Promise<any> | null = null; |
| | |
| | let upload_input: Upload; |
| | export let uploading = false; |
| | export let active_source: source_type = null; |
| | export let fullscreen = false; |
| | |
| | let files: FileData[] = []; |
| | let upload_id: string; |
| | |
| | async function handle_upload({ |
| | detail |
| | }: CustomEvent<FileData>): Promise<void> { |
| | if (!streaming) { |
| | if (detail.path?.toLowerCase().endsWith(".svg") && detail.url) { |
| | const response = await fetch(detail.url); |
| | const svgContent = await response.text(); |
| | value = { |
| | ...detail, |
| | url: `data:image/svg+xml,${encodeURIComponent(svgContent)}` |
| | }; |
| | } else { |
| | value = detail; |
| | } |
| | |
| | await tick(); |
| | dispatch("upload"); |
| | } |
| | } |
| | |
| | function handle_clear(): void { |
| | value = null; |
| | dispatch("clear"); |
| | dispatch("change", null); |
| | } |
| | |
| | function handle_remove_image_click(event: MouseEvent): void { |
| | handle_clear(); |
| | event.stopPropagation(); |
| | } |
| | |
| | async function handle_save( |
| | img_blob: Blob | any, |
| | event: "change" | "stream" | "upload" |
| | ): Promise<void> { |
| | console.log("handle_save", { event, img_blob }); |
| | if (event === "stream") { |
| | dispatch("stream", { |
| | value: { url: img_blob } as Base64File, |
| | is_value_data: true |
| | }); |
| | return; |
| | } |
| | upload_id = Math.random().toString(36).substring(2, 15); |
| | const f_ = new File([img_blob], `image.${streaming ? "jpeg" : "png"}`); |
| | files = [ |
| | new FileData({ |
| | path: f_.name, |
| | orig_name: f_.name, |
| | blob: f_, |
| | size: f_.size, |
| | mime_type: f_.type, |
| | is_stream: false |
| | }) |
| | ]; |
| | pending = true; |
| | const f = await upload_input.load_files([f_], upload_id); |
| | console.log("uploaded file", f); |
| | if (event === "change" || event === "upload") { |
| | value = f?.[0] || null; |
| | await tick(); |
| | dispatch("change"); |
| | } |
| | pending = false; |
| | } |
| | |
| | $: active_streaming = streaming && active_source === "webcam"; |
| | $: if (uploading && !active_streaming) value = null; |
| | |
| | const dispatch = createEventDispatcher<{ |
| | change?: never; |
| | stream: ValueData; |
| | clear?: never; |
| | drag: boolean; |
| | upload?: never; |
| | select: SelectData; |
| | end_stream: never; |
| | }>(); |
| | |
| | export let dragging = false; |
| | |
| | $: dispatch("drag", dragging); |
| | |
| | function handle_click(evt: MouseEvent): void { |
| | let coordinates = get_coordinates_of_clicked_image(evt); |
| | if (coordinates) { |
| | dispatch("select", { index: coordinates, value: null }); |
| | } |
| | } |
| | |
| | $: if (!active_source && sources) { |
| | active_source = sources[0]; |
| | } |
| | |
| | async function handle_select_source( |
| | source: (typeof sources)[number] |
| | ): Promise<void> { |
| | switch (source) { |
| | case "clipboard": |
| | upload_input.paste_clipboard(); |
| | break; |
| | default: |
| | break; |
| | } |
| | } |
| | |
| | let image_container: HTMLElement; |
| | |
| | function on_drag_over(evt: DragEvent): void { |
| | evt.preventDefault(); |
| | evt.stopPropagation(); |
| | if (evt.dataTransfer) { |
| | evt.dataTransfer.dropEffect = "copy"; |
| | } |
| | |
| | dragging = true; |
| | } |
| | |
| | async function on_drop(evt: DragEvent): Promise<void> { |
| | evt.preventDefault(); |
| | evt.stopPropagation(); |
| | dragging = false; |
| | |
| | if (value) { |
| | handle_clear(); |
| | await tick(); |
| | } |
| | |
| | active_source = "upload"; |
| | await tick(); |
| | upload_input.load_files_from_drop(evt); |
| | } |
| | </script> |
| | |
| | <BlockLabel {show_label} Icon={ImageIcon} label={label || "Image"} /> |
| | |
| | <div data-testid="image" class="image-container" bind:this={image_container}> |
| | <IconButtonWrapper> |
| | {#if value?.url && !active_streaming} |
| | {#if show_fullscreen_button} |
| | <FullscreenButton {fullscreen} on:fullscreen /> |
| | {/if} |
| | <IconButton |
| | Icon={Clear} |
| | label="Remove Image" |
| | on:click={handle_remove_image_click} |
| | /> |
| | {/if} |
| | </IconButtonWrapper> |
| | |
| | <div |
| | class="upload-container" |
| | class:reduced-height={sources.length > 1} |
| | style:width={value ? "auto" : "100%"} |
| | on:dragover={on_drag_over} |
| | on:drop={on_drop} |
| | > |
| | <Upload |
| | bind:upload_promise |
| | hidden={value !== null || active_source === "webcam"} |
| | bind:this={upload_input} |
| | bind:uploading |
| | bind:dragging |
| | filetype={active_source === "clipboard" ? "clipboard" : "image/*"} |
| | on:load={handle_upload} |
| | on:error |
| | {root} |
| | {max_file_size} |
| | disable_click={!sources.includes("upload") || value !== null} |
| | {upload} |
| | {stream_handler} |
| | aria_label={i18n("image.drop_to_upload")} |
| | > |
| | {#if value === null} |
| | <slot /> |
| | {/if} |
| | </Upload> |
| | {#if active_source === "webcam" && !streaming && pending} |
| | <UploadProgress {root} {upload_id} {stream_handler} {files} /> |
| | {:else if active_source === "webcam" && (streaming || (!streaming && !value))} |
| | <Webcam |
| | {root} |
| | {value} |
| | on:capture={(e) => handle_save(e.detail, "change")} |
| | on:stream={(e) => handle_save(e.detail, "stream")} |
| | on:error |
| | on:drag |
| | on:upload={(e) => handle_save(e.detail, "upload")} |
| | on:close_stream |
| | {stream_state} |
| | mirror_webcam={webcam_options.mirror} |
| | {stream_every} |
| | {streaming} |
| | mode="image" |
| | include_audio={false} |
| | {i18n} |
| | {upload} |
| | {time_limit} |
| | webcam_constraints={webcam_options.constraints} |
| | /> |
| | {:else if value !== null && !streaming} |
| | |
| | |
| | <div class:selectable class="image-frame" on:click={handle_click}> |
| | <Image src={value.url} restProps={{ alt: value.alt_text }} /> |
| | </div> |
| | {/if} |
| | </div> |
| | {#if sources.length > 1 || sources.includes("clipboard")} |
| | <SelectSource |
| | {sources} |
| | bind:active_source |
| | {handle_clear} |
| | handle_select={handle_select_source} |
| | /> |
| | {/if} |
| | </div> |
| | |
| | <style> |
| | .image-frame :global(img) { |
| | width: var(--size-full); |
| | height: var(--size-full); |
| | object-fit: scale-down; |
| | } |
| | |
| | .upload-container { |
| | display: flex; |
| | align-items: center; |
| | justify-content: center; |
| | |
| | height: 100%; |
| | flex-shrink: 1; |
| | max-height: 100%; |
| | } |
| | |
| | .reduced-height { |
| | height: calc(100% - var(--size-10)); |
| | } |
| | |
| | .image-container { |
| | display: flex; |
| | height: 100%; |
| | flex-direction: column; |
| | justify-content: center; |
| | align-items: center; |
| | max-height: 100%; |
| | } |
| | |
| | .selectable { |
| | cursor: crosshair; |
| | } |
| | |
| | .image-frame { |
| | object-fit: cover; |
| | width: 100%; |
| | height: 100%; |
| | } |
| | </style> |
| | |