File size: 6,519 Bytes
2ee4850 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
<svelte:options accessors={true} />
<script context="module" lang="ts">
export { default as Webcam } from "./shared/Webcam.svelte";
export { default as BaseImageUploader } from "./shared/ImageUploader.svelte";
export { default as BaseStaticImage } from "./shared/ImagePreview.svelte";
export { default as BaseExample } from "./Example.svelte";
export { default as BaseImage } from "./shared/Image.svelte";
</script>
<script lang="ts">
import { tick } from "svelte";
import { Gradio } from "@gradio/utils";
import StaticImage from "./shared/ImagePreview.svelte";
import ImageUploader from "./shared/ImageUploader.svelte";
import { Block, Empty, UploadText } from "@gradio/atoms";
import { Image } from "@gradio/icons";
import { StatusTracker } from "@gradio/statustracker";
import type { ImageProps, ImageEvents } from "./shared/types";
let stream_data = { value: null };
let upload_promise = $state<Promise<any>>();
class ImageGradio extends Gradio<ImageEvents, ImageProps> {
async get_data() {
if (upload_promise) {
await upload_promise;
await tick();
}
const data = await super.get_data();
if (props.props.streaming) {
data.value = stream_data.value;
}
return data;
}
}
const props = $props();
const gradio = new ImageGradio(props);
let fullscreen = $state(false);
let dragging = $state(false);
let active_source = $derived.by(() =>
gradio.props.sources ? gradio.props.sources[0] : null
);
let upload_component: ImageUploader;
const handle_drag_event = (event: Event): void => {
const drag_event = event as DragEvent;
drag_event.preventDefault();
drag_event.stopPropagation();
if (drag_event.type === "dragenter" || drag_event.type === "dragover") {
dragging = true;
} else if (drag_event.type === "dragleave") {
dragging = false;
}
};
const handle_drop = (event: Event): void => {
if (gradio.shared.interactive) {
const drop_event = event as DragEvent;
drop_event.preventDefault();
drop_event.stopPropagation();
dragging = false;
if (upload_component) {
upload_component.loadFilesFromDrop(drop_event);
}
}
};
let old_value = $state(gradio.props.value);
$effect(() => {
if (old_value != gradio.props.value) {
old_value = gradio.props.value;
gradio.dispatch("change");
}
});
let status = $derived(gradio?.shared?.loading_status.stream_state);
</script>
{#if !gradio.shared.interactive}
<Block
visible={gradio.shared.visible}
variant={"solid"}
border_mode={dragging ? "focus" : "base"}
padding={false}
elem_id={gradio.shared.elem_id}
elem_classes={gradio.shared.elem_classes}
height={gradio.props.height || undefined}
width={gradio.props.width}
allow_overflow={false}
container={gradio.shared.container}
scale{gradio.shared.scale}
min_width={gradio.shared.min_width}
bind:fullscreen
>
<StatusTracker
autoscroll={gradio.shared.autoscroll}
i18n={gradio.i18n}
{...gradio.shared.loading_status}
/>
<StaticImage
on:select={({ detail }) => gradio.dispatch("select", detail)}
on:share={({ detail }) => gradio.dispatch("share", detail)}
on:error={({ detail }) => gradio.dispatch("error", detail)}
on:fullscreen={({ detail }) => {
fullscreen = detail;
}}
{fullscreen}
value={gradio.props.value}
label={gradio.shared.label}
show_label={gradio.shared.show_label}
selectable={gradio.props._selectable}
i18n={gradio.i18n}
buttons={gradio.props.buttons}
/>
</Block>
{:else}
<Block
visible={gradio.shared.visible}
variant={gradio.props.value === null ? "dashed" : "solid"}
border_mode={dragging ? "focus" : "base"}
padding={false}
elem_id={gradio.shared.elem_id}
elem_classes={gradio.shared.elem_classes}
height={gradio.props.height || undefined}
width={gradio.props.width}
allow_overflow={false}
container={gradio.shared.container}
scale={gradio.shared.scale}
min_width={gradio.shared.min_width}
bind:fullscreen
on:dragenter={handle_drag_event}
on:dragleave={handle_drag_event}
on:dragover={handle_drag_event}
on:drop={handle_drop}
>
{#if gradio.shared.loading_status.type === "output"}
<StatusTracker
autoscroll={gradio.shared.autoscroll}
i18n={gradio.i18n}
{...gradio.shared.loading_status}
on:clear_status={() =>
gradio.dispatch("clear_status", gradio.shared.loading_status)}
/>
{/if}
<ImageUploader
bind:upload_promise
bind:this={upload_component}
bind:active_source
bind:value={gradio.props.value}
bind:dragging
selectable={gradio.props._selectable}
root={gradio.shared.root}
sources={gradio.props.sources}
{fullscreen}
show_fullscreen_button={gradio.props.buttons === null
? true
: gradio.props.buttons.includes("fullscreen")}
on:edit={() => gradio.dispatch("edit")}
on:clear={() => {
fullscreen = false;
gradio.dispatch("clear");
gradio.dispatch("input");
}}
on:stream={({ detail }) => {
stream_data = detail;
gradio.dispatch("stream", detail);
}}
on:drag={({ detail }) => (dragging = detail)}
on:upload={() => {
gradio.dispatch("upload");
gradio.dispatch("input");
}}
on:select={({ detail }) => gradio.dispatch("select", detail)}
on:share={({ detail }) => gradio.dispatch("share", detail)}
on:error={({ detail }) => {
gradio.shared.loading_status.status = "error";
gradio.dispatch("error", detail);
}}
on:close_stream={() => {
gradio.dispatch("close_stream");
}}
on:fullscreen={({ detail }) => {
fullscreen = detail;
}}
label={gradio.shared.label}
show_label={gradio.shared.show_label}
pending={gradio.shared.loading_status?.status === "pending" ||
gradio.shared.loading_status?.status === "streaming"}
streaming={gradio.props.streaming}
webcam_options={gradio.props.webcam_options}
stream_every={gradio.props.stream_every}
time_limit={gradio.shared.loading_status?.time_limit}
max_file_size={gradio.shared.max_file_size}
i18n={gradio.i18n}
upload={(...args) => gradio.shared.client.upload(...args)}
stream_handler={gradio.shared.client?.stream}
stream_state={status}
>
{#if active_source === "upload" || !active_source}
<UploadText
i18n={gradio.i18n}
type="image"
placeholder={gradio.props.placeholder}
/>
{:else if active_source === "clipboard"}
<UploadText i18n={gradio.i18n} type="clipboard" mode="short" />
{:else}
<Empty unpadded_box={true} size="large"><Image /></Empty>
{/if}
</ImageUploader>
</Block>
{/if}
|