frontend / 6.0.0 /uploadbutton /shared /UploadButton.svelte
freddyaboulton's picture
Upload folder using huggingface_hub
0918187 verified
raw
history blame
3.02 kB
<script lang="ts">
import { tick, createEventDispatcher } from "svelte";
import { BaseButton } from "@gradio/button";
import { prepare_files, type FileData, type Client } from "@gradio/client";
export let elem_id = "";
export let elem_classes: string[] = [];
export let visible: boolean | "hidden" = true;
export let label: string | null;
export let value: null | FileData | FileData[];
export let file_count: string;
export let file_types: string[] = [];
export let root: string;
export let size: "sm" | "md" | "lg" = "lg";
export let icon: FileData | null = null;
export let scale: number | null = null;
export let min_width: number | undefined = undefined;
export let variant: "primary" | "secondary" | "stop" = "secondary";
export let disabled = false;
export let max_file_size: number | null = null;
export let upload: Client["upload"];
const dispatch = createEventDispatcher();
let hidden_upload: HTMLInputElement;
let accept_file_types: string | null;
if (file_types == null) {
accept_file_types = null;
} else {
file_types = file_types.map((x) => {
if (x.startsWith(".")) {
return x;
}
return x + "/*";
});
accept_file_types = file_types.join(", ");
}
function open_file_upload(): void {
dispatch("click");
hidden_upload.click();
}
async function load_files(files: FileList): Promise<void> {
let _files: File[] = Array.from(files);
if (!files.length) {
return;
}
if (file_count === "single") {
_files = [files[0]];
}
let all_file_data = await prepare_files(_files);
await tick();
try {
all_file_data = (
await upload(all_file_data, root, undefined, max_file_size ?? Infinity)
)?.filter((x) => x !== null) as FileData[];
} catch (e) {
dispatch("error", (e as Error).message);
return;
}
value = file_count === "single" ? all_file_data?.[0] : all_file_data;
dispatch("change", value);
dispatch("upload", value);
}
async function load_files_from_upload(e: Event): Promise<void> {
const target = e.target as HTMLInputElement;
if (!target.files) return;
await load_files(target.files);
}
function clear_input_value(e: Event): void {
const target = e.target as HTMLInputElement;
if (target.value) target.value = "";
}
</script>
<input
class="hide"
accept={accept_file_types}
type="file"
bind:this={hidden_upload}
on:change={load_files_from_upload}
on:click={clear_input_value}
multiple={file_count === "multiple" || undefined}
webkitdirectory={file_count === "directory" || undefined}
mozdirectory={file_count === "directory" || undefined}
data-testid="{label}-upload-button"
/>
<BaseButton
{size}
{variant}
{elem_id}
{elem_classes}
{visible}
on:click={open_file_upload}
{scale}
{min_width}
{disabled}
>
{#if icon}
<img class="button-icon" src={icon.url} alt={`${value} icon`} />
{/if}
<slot />
</BaseButton>
<style>
.hide {
display: none;
}
.button-icon {
width: var(--text-xl);
height: var(--text-xl);
margin-right: var(--spacing-xl);
}
</style>