adf0d17497
publish / version_or_publish (push) Has been cancelled
storybook-build / changes (push) Has been cancelled
storybook-build / :storybook-build (push) Has been cancelled
Sync Gradio Skills to Hugging Face / sync-skills (push) Has been cancelled
functional / changes (push) Has been cancelled
functional / build-frontend (push) Has been cancelled
functional / functional-test-SSR=false (push) Has been cancelled
functional / functional-reload (push) Has been cancelled
js / changes (push) Has been cancelled
js / js-test (push) Has been cancelled
docs-build / changes (push) Has been cancelled
docs-build / docs-build (push) Has been cancelled
docs-build / website-build (push) Has been cancelled
functional / functional-test-SSR=true (push) Has been cancelled
hygiene / hygiene-test (push) Has been cancelled
python / changes (push) Has been cancelled
python / build (push) Has been cancelled
python / test-ubuntu-latest-flaky (push) Has been cancelled
python / test-ubuntu-latest-not-flaky (push) Has been cancelled
python / test-windows-latest-flaky (push) Has been cancelled
python / test-windows-latest-not-flaky (push) Has been cancelled
56 lines
1.4 KiB
Svelte
56 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import { BlockLabel, Empty, IconButtonWrapper } from "@gradio/atoms";
|
|
import { File } from "@gradio/icons";
|
|
import FilePreview from "./FilePreview.svelte";
|
|
import type { CustomButton as CustomButtonType } from "@gradio/utils";
|
|
import type { FileData } from "@gradio/client";
|
|
import type { I18nFormatter, SelectData } from "@gradio/utils";
|
|
|
|
let {
|
|
value,
|
|
label,
|
|
show_label,
|
|
selectable,
|
|
i18n,
|
|
height,
|
|
buttons = null,
|
|
on_custom_button_click = null,
|
|
on_select,
|
|
on_download
|
|
}: {
|
|
value: FileData | FileData[] | null;
|
|
label?: string | null;
|
|
show_label?: boolean;
|
|
selectable?: boolean;
|
|
i18n: I18nFormatter;
|
|
height?: number | string | null;
|
|
buttons?: (string | CustomButtonType)[] | null;
|
|
on_custom_button_click?: ((id: number) => void) | null;
|
|
on_select?: (event_data: SelectData) => void;
|
|
on_download?: (event_data: FileData) => void;
|
|
} = $props();
|
|
</script>
|
|
|
|
{#if show_label && buttons && buttons.length > 0}
|
|
<IconButtonWrapper {buttons} {on_custom_button_click} />
|
|
{/if}
|
|
<BlockLabel
|
|
{show_label}
|
|
float={value === null}
|
|
Icon={File}
|
|
label={label || "File"}
|
|
/>
|
|
|
|
{#if value && (Array.isArray(value) ? value.length > 0 : true)}
|
|
<FilePreview
|
|
{i18n}
|
|
{selectable}
|
|
onselect={on_select}
|
|
ondownload={on_download}
|
|
{value}
|
|
height={height ?? undefined}
|
|
/>
|
|
{:else}
|
|
<Empty unpadded_box={true} size="large"><File /></Empty>
|
|
{/if}
|