gradio/js/image/index.svelte
pngwn ddac7e4d0f
Ensure File component uploads files to the server. (#5253)
* fix dynamic -> interactive

* fix checks

* add changeset

* add changeset

* fix changeset

* fix linting issues

* fix typing issue

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2023-08-17 12:20:19 -07:00

113 lines
2.4 KiB
Svelte

<svelte:options accessors={true} />
<script lang="ts">
import Static from "./static";
import Interactive from "./interactive";
import { createEventDispatcher } from "svelte";
import StaticImage from "./static";
import Image from "./interactive";
import { Block } from "@gradio/atoms";
import { _ } from "svelte-i18n";
import { StatusTracker } from "@gradio/statustracker";
import type { LoadingStatus } from "@gradio/statustracker";
import { UploadText } from "@gradio/atoms";
export let elem_id = "";
export let elem_classes: string[] = [];
export let visible = true;
export let value: null | string = null;
export let source: "canvas" | "webcam" | "upload" = "upload";
export let tool: "editor" | "select" | "sketch" | "color-sketch" = "editor";
export let label: string;
export let show_label: boolean;
export let show_download_button: boolean;
export let streaming: boolean;
export let pending: boolean;
export let height: number | undefined;
export let width: number | undefined;
export let mirror_webcam: boolean;
export let shape: [number, number];
export let brush_radius: number;
export let brush_color: string;
export let mask_opacity: number;
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 mode: "static" | "interactive";
export let show_share_button = false;
const dispatch = createEventDispatcher<{
change: undefined;
error: string;
}>();
$: value, dispatch("change");
let dragging: boolean;
const FIXED_HEIGHT = 240;
$: value = !value ? null : value;
</script>
{#if mode === "static"}
<Static
bind:value
{elem_id}
{elem_classes}
{visible}
{label}
{show_label}
{show_download_button}
{height}
{width}
{selectable}
{container}
{scale}
{min_width}
{loading_status}
{show_share_button}
on:edit
on:clear
on:stream
on:upload
on:select
on:share
on:error
></Static>
{:else}
<Interactive
bind:value
{elem_id}
{elem_classes}
{visible}
{source}
{tool}
{label}
{show_label}
{streaming}
{pending}
{height}
{width}
{mirror_webcam}
{shape}
{brush_radius}
{brush_color}
{mask_opacity}
{selectable}
{container}
{scale}
{min_width}
{loading_status}
on:edit
on:clear
on:stream
on:upload
on:select
on:share
on:error
></Interactive>
{/if}