frontend / 6.0.2 /multimodaltextbox /shared /MultimodalTextbox.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
fa9e401 verified
<script lang="ts">
import {
onMount,
beforeUpdate,
afterUpdate,
createEventDispatcher,
tick
} from "svelte";
import { text_area_resize, resize } from "../shared/utils";
import { BlockTitle } from "@gradio/atoms";
import { Upload } from "@gradio/upload";
import { Image } from "@gradio/image/shared";
import type { I18nFormatter } from "js/core/src/gradio_helper";
import type { FileData, Client } from "@gradio/client";
import type { WaveformOptions } from "@gradio/audio";
import {
Clear,
File,
Music,
Paperclip,
Video,
ArrowUp,
Square,
Microphone,
Check
} from "@gradio/icons";
import type { SelectData } from "@gradio/utils";
import { BaseInteractiveAudio as InteractiveAudio } from "@gradio/audio";
import {
MinimalAudioPlayer,
MinimalAudioRecorder
} from "@gradio/audio/shared";
import type { InputHTMLAttributes } from "./types";
export let value: { text: string; files: FileData[] } = {
text: "",
files: []
};
export let value_is_output = false;
export let lines = 1;
export let i18n: I18nFormatter;
export let placeholder = "";
export let disabled = false;
export let label: string;
export let info: string | undefined = undefined;
export let show_label = true;
export let max_lines: number;
export let submit_btn: string | boolean | null = null;
export let stop_btn: string | boolean | null = null;
export let rtl = false;
export let autofocus = false;
export let text_align: "left" | "right" | undefined = undefined;
export let autoscroll = true;
export let root: string;
export let file_types_string: string | null = null;
export let max_file_size: number | null = null;
export let upload: Client["upload"];
export let stream_handler: Client["stream"];
export let file_count: "single" | "multiple" | "directory" = "multiple";
export let max_plain_text_length = 1000;
export let waveform_settings: Record<string, any>;
export let waveform_options: WaveformOptions = {
show_recording_waveform: true
};
export let sources_string:
| "upload"
| "upload,microphone"
| "microphone"
| "microphone,upload" = "upload";
export let active_source: "microphone" | null = null;
export let html_attributes: InputHTMLAttributes | null = null;
export let upload_promise: Promise<any> | null = null;
let upload_component: Upload;
let el: HTMLTextAreaElement | HTMLInputElement;
let can_scroll: boolean;
let previous_scroll_top = 0;
let user_has_scrolled_up = false;
export let dragging = false;
let uploading = false;
// value can be null in multimodalchatinterface when loading a deep link
let oldValue = value?.text ?? "";
let recording = false;
$: sources = sources_string
.split(",")
.map((s) => s.trim())
.filter((s) => s === "upload" || s === "microphone") as (
| "upload"
| "microphone"
)[];
$: file_types = file_types_string
? file_types_string.split(",").map((s) => s.trim())
: null;
$: dispatch("drag", dragging);
$: show_upload =
sources &&
sources.includes("upload") &&
!(file_count === "single" && value.files.length > 0);
let mic_audio: FileData | null = null;
let full_container: HTMLDivElement;
$: if (oldValue !== value.text) {
dispatch("change", value);
oldValue = value.text;
}
$: if (value === null) value = { text: "", files: [] };
$: (value, el && lines !== max_lines && resize(el, lines, max_lines));
const dispatch = createEventDispatcher<{
change: typeof value;
submit: undefined;
stop: undefined;
blur: undefined;
select: SelectData;
input: undefined;
focus: undefined;
drag: boolean;
upload: FileData[] | FileData;
clear: undefined;
load: FileData[] | FileData;
error: string;
start_recording: undefined;
pause_recording: undefined;
stop_recording: undefined;
}>();
beforeUpdate(() => {
can_scroll = el && el.offsetHeight + el.scrollTop > el.scrollHeight - 100;
});
const scroll = (): void => {
if (can_scroll && autoscroll && !user_has_scrolled_up) {
el.scrollTo(0, el.scrollHeight);
}
};
async function handle_change(): Promise<void> {
dispatch("change", value);
if (!value_is_output) {
dispatch("input");
}
}
onMount(() => {
if (autofocus && el !== null) {
el.focus();
}
});
const after_update = (): void => {
if (can_scroll && autoscroll) {
scroll();
}
if (autofocus && el) {
el.focus();
}
};
afterUpdate(after_update);
function handle_select(event: Event): void {
const target: HTMLTextAreaElement | HTMLInputElement = event.target as
| HTMLTextAreaElement
| HTMLInputElement;
const text = target.value;
const index: [number, number] = [
target.selectionStart as number,
target.selectionEnd as number
];
dispatch("select", { value: text.substring(...index), index: index });
}
async function handle_keypress(e: KeyboardEvent): Promise<void> {
if (e.key === "Enter" && e.shiftKey && lines > 1) {
e.preventDefault();
await tick();
dispatch("submit");
} else if (
e.key === "Enter" &&
!e.shiftKey &&
lines === 1 &&
max_lines >= 1
) {
e.preventDefault();
add_mic_audio_to_files();
active_source = null;
await tick();
dispatch("submit");
}
}
function handle_scroll(event: Event): void {
const target = event.target as HTMLElement;
const current_scroll_top = target.scrollTop;
if (current_scroll_top < previous_scroll_top) {
user_has_scrolled_up = true;
}
previous_scroll_top = current_scroll_top;
const max_scroll_top = target.scrollHeight - target.clientHeight;
const user_has_scrolled_to_bottom = current_scroll_top >= max_scroll_top;
if (user_has_scrolled_to_bottom) {
user_has_scrolled_up = false;
}
}
async function handle_upload({
detail
}: CustomEvent<FileData>): Promise<void> {
handle_change();
if (Array.isArray(detail)) {
for (let file of detail) {
value.files.push(file);
}
value = value;
} else {
value.files.push(detail);
value = value;
}
await tick();
dispatch("change", value);
dispatch("upload", detail);
}
function remove_thumbnail(event: MouseEvent, index: number): void {
handle_change();
event.stopPropagation();
value.files.splice(index, 1);
value = value;
}
function handle_upload_click(): void {
upload_component.open_upload();
}
function handle_stop(): void {
dispatch("stop");
}
function add_mic_audio_to_files(): void {
if (mic_audio) {
value.files.push(mic_audio);
value = value;
mic_audio = null;
dispatch("change", value);
}
}
function handle_submit(): void {
add_mic_audio_to_files();
active_source = null;
dispatch("submit");
}
async function handle_paste(event: ClipboardEvent): Promise<void> {
if (!event.clipboardData) return;
const items = event.clipboardData.items;
const text = event.clipboardData.getData("text");
if (text && text.length > max_plain_text_length) {
event.preventDefault();
const file = new window.File([text], "pasted_text.txt", {
type: "text/plain",
lastModified: Date.now()
});
if (upload_component) {
upload_component.load_files([file]);
}
return;
}
for (let index in items) {
const item = items[index];
if (item.kind === "file" && item.type.includes("image")) {
const blob = item.getAsFile();
if (blob) upload_component.load_files([blob]);
}
}
}
function handle_dragenter(event: DragEvent): void {
event.preventDefault();
dragging = true;
}
function handle_dragleave(event: DragEvent): void {
event.preventDefault();
const rect = full_container.getBoundingClientRect();
const { clientX, clientY } = event;
if (
clientX <= rect.left ||
clientX >= rect.right ||
clientY <= rect.top ||
clientY >= rect.bottom
) {
dragging = false;
}
}
function handle_drop(event: DragEvent): void {
event.preventDefault();
dragging = false;
if (event.dataTransfer && event.dataTransfer.files) {
const files = Array.from(event.dataTransfer.files);
if (file_types) {
const valid_files = files.filter((file) => {
return file_types.some((type) => {
if (type.startsWith(".")) {
return file.name.toLowerCase().endsWith(type.toLowerCase());
}
return file.type.match(new RegExp(type.replace("*", ".*")));
});
});
const invalid_files = files.length - valid_files.length;
if (invalid_files > 0) {
dispatch(
"error",
`${invalid_files} file(s) were rejected. Accepted formats: ${file_types.join(", ")}`
);
}
if (valid_files.length > 0) {
upload_component.load_files(valid_files);
}
} else {
upload_component.load_files(files);
}
}
}
</script>
<div
class="full-container"
class:dragging
bind:this={full_container}
on:dragenter={handle_dragenter}
on:dragleave={handle_dragleave}
on:dragover|preventDefault
on:drop={handle_drop}
role="group"
aria-label="Multimedia input field"
>
<BlockTitle {show_label} {info} {rtl}>{label}</BlockTitle>
<div class="input-container">
{#if sources && sources.includes("microphone") && active_source === "microphone"}
<div class="recording-overlay" class:has-audio={mic_audio !== null}>
{#if !mic_audio}
<div class="recording-content">
<MinimalAudioRecorder
label={label || "Audio"}
{waveform_settings}
{recording}
{upload}
{root}
{max_file_size}
bind:upload_promise
on:change={({ detail }) => {
mic_audio = detail;
}}
on:stop_recording={() => {
recording = false;
dispatch("stop_recording");
}}
on:clear={() => {
active_source = null;
recording = false;
mic_audio = null;
}}
on:error={({ detail }) => {
active_source = null;
recording = false;
mic_audio = null;
}}
/>
</div>
{:else}
<div class="recording-content">
<MinimalAudioPlayer
value={mic_audio}
label={label || "Audio"}
loop={false}
/>
<div class="action-buttons">
<button
class="confirm-button"
on:click={() => {
add_mic_audio_to_files();
active_source = null;
recording = false;
}}
aria-label="Attach audio"
>
<Check />
</button>
<button
class="cancel-button"
on:click={() => {
active_source = null;
recording = false;
mic_audio = null;
}}
aria-label="Clear audio"
>
<Clear />
</button>
</div>
</div>
{/if}
</div>
{/if}
{#if show_upload}
<Upload
bind:upload_promise
bind:this={upload_component}
on:load={handle_upload}
{file_count}
filetype={file_types}
{root}
{max_file_size}
bind:dragging
bind:uploading
show_progress={false}
disable_click={true}
on:error
hidden={true}
{upload}
{stream_handler}
/>
{/if}
<div
class="input-wrapper"
class:has-files={value.files.length > 0 || uploading}
>
{#if value.files.length > 0 || uploading || show_upload}
<div
class="thumbnails"
aria-label="Uploaded files"
data-testid="container_el"
>
{#if show_upload}
<button
data-testid="upload-button"
class="upload-button thumbnail-add"
{disabled}
on:click={handle_upload_click}
aria-label="Upload a file"
>
<Paperclip />
</button>
{/if}
{#each value.files as file, index}
<span
class="thumbnail-wrapper"
role="listitem"
aria-label="File thumbnail"
>
<div class="thumbnail-item thumbnail-small">
{#if file.mime_type && file.mime_type.includes("image")}
<Image
src={file.url}
restProps={{
title: null,
alt: "",
loading: "lazy",
class: "thumbnail-image"
}}
/>
{:else if file.mime_type && file.mime_type.includes("audio")}
<Music />
{:else if file.mime_type && file.mime_type.includes("video")}
<Video />
{:else}
<File />
{/if}
<button
class="delete-button"
on:click={(event) => remove_thumbnail(event, index)}
aria-label="Remove file"
>
<Clear />
</button>
</div>
</span>
{/each}
{#if uploading}
<div class="loader" role="status" aria-label="Uploading"></div>
{/if}
</div>
{/if}
<div class="input-row">
<textarea
data-testid="textbox"
use:text_area_resize={{
text: value.text,
lines: lines,
max_lines: max_lines
}}
class:no-label={!show_label}
dir={rtl ? "rtl" : "ltr"}
bind:value={value.text}
bind:this={el}
{placeholder}
rows={lines}
{disabled}
on:keypress={handle_keypress}
on:blur
on:select={handle_select}
on:focus
on:scroll={handle_scroll}
on:paste={handle_paste}
style={text_align ? "text-align: " + text_align : ""}
autocapitalize={html_attributes?.autocapitalize}
autocorrect={html_attributes?.autocorrect}
spellcheck={html_attributes?.spellcheck}
autocomplete={html_attributes?.autocomplete}
tabindex={html_attributes?.tabindex}
enterkeyhint={html_attributes?.enterkeyhint}
lang={html_attributes?.lang}
/>
{#if sources && sources.includes("microphone")}
<button
data-testid="microphone-button"
class="microphone-button"
class:recording
{disabled}
on:click={async () => {
if (active_source !== "microphone") {
active_source = "microphone";
await tick();
recording = true;
} else {
active_source = null;
recording = false;
}
}}
aria-label="Record audio"
>
<Microphone />
</button>
{/if}
{#if submit_btn}
<button
class="submit-button"
data-testid="submit-button"
class:padded-button={submit_btn !== true}
{disabled}
on:click={handle_submit}
aria-label="Submit"
>
{#if submit_btn === true}
<ArrowUp />
{:else}
{submit_btn}
{/if}
</button>
{/if}
{#if stop_btn}
<button
class="stop-button"
class:padded-button={stop_btn !== true}
on:click={handle_stop}
aria-label="Stop"
>
{#if stop_btn === true}
<Square fill={"none"} stroke_width={2.5} />
{:else}
{stop_btn}
{/if}
</button>
{/if}
</div>
</div>
</div>
</div>
<style>
.full-container {
width: 100%;
position: relative;
padding: var(--block-padding);
border: 1px solid transparent;
}
.full-container.dragging {
border-color: var(--color-accent);
border-radius: calc(var(--radius-sm) - var(--size-px));
}
.full-container.dragging::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
}
.input-container {
display: flex;
position: relative;
flex-direction: column;
gap: 0;
}
.input-wrapper {
display: flex;
position: relative;
flex-direction: column;
gap: 0;
background: var(--block-background-fill);
border-radius: var(--radius-xl);
padding: var(--spacing-sm);
align-items: flex-start;
min-height: auto;
}
.input-wrapper.has-files {
padding-top: var(--spacing-xs);
}
.input-row {
display: flex;
align-items: flex-end;
gap: var(--spacing-sm);
width: 100%;
}
.thumbnails {
display: flex;
align-items: center;
gap: var(--spacing-sm);
padding: var(--spacing-xs) 0;
margin-bottom: var(--spacing-xs);
overflow-x: auto;
overflow-y: hidden;
scrollbar-width: none;
-ms-overflow-style: none;
flex-wrap: nowrap;
-webkit-overflow-scrolling: touch;
scroll-behavior: smooth;
overflow-y: scroll;
width: 100%;
}
.thumbnails::-webkit-scrollbar,
.thumbnails::-webkit-scrollbar-track,
.thumbnails::-webkit-scrollbar-thumb {
display: none;
}
.thumbnails :global(img) {
width: var(--size-full);
height: var(--size-full);
object-fit: cover;
border-radius: var(--radius-md);
}
.thumbnail-wrapper {
position: relative;
flex-shrink: 0;
}
.thumbnail-item {
position: relative;
display: flex;
justify-content: center;
align-items: center;
border-radius: var(--radius-md);
background: var(--background-fill-secondary);
width: var(--size-full);
height: var(--size-full);
cursor: default;
padding: 0;
}
.thumbnail-small {
width: var(--size-10);
height: var(--size-10);
}
.thumbnail-item :global(svg) {
width: var(--size-5);
height: var(--size-5);
}
.delete-button {
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
color: var(--button-primary-text-color);
background: rgba(0, 0, 0, 0.6);
backdrop-filter: var(--blur-xs);
border-radius: var(--radius-md);
padding: 0;
z-index: var(--layer-1);
opacity: 0;
transition: opacity 0.1s var(--easing-standard);
}
.delete-button:hover {
background: rgba(0, 0, 0, 0.8);
}
.delete-button :global(svg) {
width: var(--size-5);
height: var(--size-5);
}
.thumbnail-item:hover .delete-button {
opacity: 1;
}
textarea {
flex-grow: 1;
outline: none !important;
background: transparent;
padding: 0;
color: var(--body-text-color);
font-weight: var(--input-text-weight);
font-size: var(--input-text-size);
border: none;
margin: 0;
resize: none;
position: relative;
z-index: var(--layer-1);
text-align: left;
min-height: var(--size-9);
}
textarea:disabled {
-webkit-opacity: 1;
opacity: 1;
}
textarea::placeholder {
color: var(--input-placeholder-color);
}
textarea[dir="rtl"] {
text-align: right;
}
textarea[dir="rtl"] ~ .submit-button {
order: -1;
}
textarea[dir="rtl"] ~ .submit-button :global(svg) {
transform: scaleX(-1);
}
.microphone-button {
color: var(--body-text-color);
cursor: pointer;
padding: var(--spacing-sm);
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
border-radius: var(--radius-md);
}
.thumbnail-add {
background: var(--button-secondary-background-fill);
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
width: var(--size-10);
height: var(--size-10);
border-radius: var(--radius-md);
z-index: var(--layer-1);
}
.thumbnail-add:hover:not(:disabled) {
background: var(--button-secondary-background-fill-hover);
}
.thumbnail-add:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.thumbnail-add :global(svg) {
width: var(--size-5);
height: var(--size-5);
}
.microphone-button {
width: var(--size-9);
height: var(--size-9);
}
.microphone-button:hover:not(:disabled) {
background: var(--button-secondary-background-fill);
}
.microphone-button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.microphone-button :global(svg) {
width: var(--size-5);
height: var(--size-5);
}
.submit-button,
.stop-button {
background: var(--button-secondary-background-fill);
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
width: var(--size-9);
height: var(--size-9);
border-radius: var(--radius-md);
z-index: var(--layer-1);
}
.submit-button:hover:not(:disabled),
.stop-button:hover:not(:disabled) {
background: var(--button-secondary-background-fill-hover);
}
.submit-button:active:not(:disabled),
.stop-button:active:not(:disabled) {
box-shadow: var(--button-shadow-active);
}
.submit-button:disabled,
.stop-button:disabled {
cursor: not-allowed;
}
.submit-button :global(svg),
.stop-button :global(svg) {
width: var(--size-5);
height: var(--size-5);
}
.padded-button {
padding: 0 var(--spacing-lg);
width: auto;
border-radius: var(--radius-xl);
}
.loader {
display: flex;
justify-content: center;
align-items: center;
position: relative;
border: var(--size-1) solid var(--border-color-primary);
border-top-color: var(--color-accent);
border-radius: var(--radius-100);
width: var(--size-5);
height: var(--size-5);
animation: spin 1s linear infinite;
flex-shrink: 0;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.recording-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--block-background-fill);
border-radius: var(--radius-xl);
display: flex;
align-items: center;
justify-content: center;
z-index: var(--layer-5);
padding: var(--spacing-lg);
backdrop-filter: blur(8px);
animation: fadeIn 0.2s var(--easing-standard);
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.recording-content {
display: flex;
align-items: center;
gap: var(--spacing-lg);
width: 100%;
max-width: 700px;
}
.recording-content :global(.minimal-audio-recorder),
.recording-content :global(.minimal-audio-player) {
flex: 1;
}
.action-buttons {
display: flex;
align-items: center;
gap: var(--spacing-sm);
flex-shrink: 0;
}
.stop-button,
.confirm-button,
.cancel-button {
display: flex;
align-items: center;
justify-content: center;
width: var(--size-9);
height: var(--size-9);
padding: 0;
border-radius: var(--radius-md);
cursor: pointer;
flex-shrink: 0;
}
.stop-button {
background: var(--button-secondary-background-fill);
border-color: var(--border-color-primary);
color: var(--error-500);
}
.stop-button:hover {
background: var(--button-secondary-background-fill-hover);
color: var(--error-600);
}
.stop-button:active {
transform: scale(0.95);
}
.confirm-button {
background: var(--button-primary-background-fill);
border-color: var(--button-primary-border-color);
color: white;
}
.confirm-button:hover {
background: var(--button-primary-background-fill-hover);
color: var(--button-primary-text-color-hover);
}
.confirm-button:active {
transform: scale(0.95);
}
.cancel-button {
background: var(--button-secondary-background-fill);
color: var(--body-text-color);
}
.cancel-button:hover {
background: var(--button-secondary-background-fill-hover);
}
.stop-button :global(svg),
.confirm-button :global(svg),
.cancel-button :global(svg) {
width: var(--size-5);
height: var(--size-5);
}
@media (max-width: 768px) {
.input-wrapper {
padding: var(--spacing-xs);
}
.thumbnails {
padding: var(--spacing-xs) 0;
margin-bottom: var(--spacing-md);
}
.thumbnail-small,
.thumbnail-add {
width: var(--size-9);
height: var(--size-9);
}
.thumbnail-item:active .delete-button {
opacity: 1;
}
}
</style>