File size: 5,973 Bytes
0bd62e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<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 type { Gradio, SelectData } from "@gradio/utils";

	import StaticImage from "./shared/ImagePreview.svelte";

	import ImageUploader from "./shared/ImageUploader.svelte";

	import { afterUpdate } from "svelte";



	import { Block, Empty, UploadText } from "@gradio/atoms";

	import { Image } from "@gradio/icons";

	import { StatusTracker } from "@gradio/statustracker";

	import type { FileData } from "@gradio/client";

	import type { LoadingStatus } from "@gradio/statustracker";



	type sources = "upload" | "webcam" | "clipboard" | null;



	export let value_is_output = false;

	export let elem_id = "";

	export let elem_classes: string[] = [];

	export let visible = true;

	export let value: null | FileData = null;

	let old_value: null | FileData = null;

	export let label: string;

	export let show_label: boolean;

	export let show_download_button: boolean;

	export let root: string;



	export let height: number | undefined;

	export let width: number | undefined;



	export let _selectable = false;

	export let container = true;

	export let scale: number | null = null;

	export let min_width: number | undefined = undefined;

	export let loading_status: LoadingStatus;

	export let show_share_button = false;

	export let sources: ("clipboard" | "webcam" | "upload")[] = [

		"upload",

		"clipboard",

		"webcam"

	];

	export let interactive: boolean;

	export let streaming: boolean;

	export let pending: boolean;

	export let mirror_webcam: boolean;

	export let placeholder: string | undefined = undefined;

	export let show_fullscreen_button: boolean;



	export let gradio: Gradio<{

		input: never;

		change: never;

		error: string;

		edit: never;

		stream: never;

		drag: never;

		upload: never;

		clear: never;

		select: SelectData;

		share: ShareData;

		clear_status: LoadingStatus;

	}>;



	$: {

		if (JSON.stringify(value) !== JSON.stringify(old_value)) {

			old_value = value;

			gradio.dispatch("change");

			if (!value_is_output) {

				gradio.dispatch("input");

			}

		}

	}

	afterUpdate(() => {

		value_is_output = false;

	});



	let dragging: boolean;

	let active_source: sources = 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 (interactive) {

			const drop_event = event as DragEvent;

			drop_event.preventDefault();

			drop_event.stopPropagation();

			dragging = false;



			if (upload_component) {

				upload_component.loadFilesFromDrop(drop_event);

			}

		}

	};

</script>



{#if !interactive}

	<Block

		{visible}

		variant={"solid"}

		border_mode={dragging ? "focus" : "base"}

		padding={false}

		{elem_id}

		{elem_classes}

		height={height || undefined}

		{width}

		allow_overflow={false}

		{container}

		{scale}

		{min_width}

	>

		<StatusTracker

			autoscroll={gradio.autoscroll}

			i18n={gradio.i18n}

			{...loading_status}

		/>

		<StaticImage

			on:select={({ detail }) => gradio.dispatch("select", detail)}

			on:share={({ detail }) => gradio.dispatch("share", detail)}

			on:error={({ detail }) => gradio.dispatch("error", detail)}

			{value}

			{label}

			{show_label}

			{show_download_button}

			selectable={_selectable}

			{show_share_button}

			i18n={gradio.i18n}

			{show_fullscreen_button}

		/>

	</Block>

{:else}

	<Block

		{visible}

		variant={value === null ? "dashed" : "solid"}

		border_mode={dragging ? "focus" : "base"}

		padding={false}

		{elem_id}

		{elem_classes}

		height={height || undefined}

		{width}

		allow_overflow={false}

		{container}

		{scale}

		{min_width}

		on:dragenter={handle_drag_event}

		on:dragleave={handle_drag_event}

		on:dragover={handle_drag_event}

		on:drop={handle_drop}

	>

		<StatusTracker

			autoscroll={gradio.autoscroll}

			i18n={gradio.i18n}

			{...loading_status}

			on:clear_status={() => gradio.dispatch("clear_status", loading_status)}

		/>



		<ImageUploader

			bind:this={upload_component}

			bind:active_source

			bind:value

			bind:dragging

			selectable={_selectable}

			{root}

			{sources}

			on:edit={() => gradio.dispatch("edit")}

			on:clear={() => {

				gradio.dispatch("clear");

			}}

			on:stream={() => gradio.dispatch("stream")}

			on:drag={({ detail }) => (dragging = detail)}

			on:upload={() => gradio.dispatch("upload")}

			on:select={({ detail }) => gradio.dispatch("select", detail)}

			on:share={({ detail }) => gradio.dispatch("share", detail)}

			on:error={({ detail }) => {

				loading_status = loading_status || {};

				loading_status.status = "error";

				gradio.dispatch("error", detail);

			}}

			{label}

			{show_label}

			{pending}

			{streaming}

			{mirror_webcam}

			max_file_size={gradio.max_file_size}

			i18n={gradio.i18n}

			upload={gradio.client.upload}

			stream_handler={gradio.client.stream}

		>

			{#if active_source === "upload" || !active_source}

				<UploadText i18n={gradio.i18n} type="image" {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}