gradio/js/image/index.svelte

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

113 lines
2.4 KiB
Svelte
Raw Normal View History

<svelte:options accessors={true} />
<script lang="ts">
import Static from "./static";
import Interactive from "./interactive";
2022-03-17 00:34:30 +08:00
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;
2022-03-12 00:00:48 +08:00
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;
2023-02-23 16:46:44 +08:00
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;
2022-03-17 00:34:30 +08:00
const dispatch = createEventDispatcher<{
change: undefined;
error: string;
}>();
2022-03-17 00:34:30 +08:00
$: 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}