File size: 12,904 Bytes
0bd62e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
<script lang="ts">
import {
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 { FileData, Client } from "@gradio/client";
import { Clear, File, Music, Paperclip, Video, Send } from "@gradio/icons";
import type { SelectData } from "@gradio/utils";
export let value: { text: string; files: FileData[] } = {
text: "",
files: []
};
export let value_is_output = false;
export let lines = 1;
export let placeholder = "Type here...";
export let disabled = false;
export let label: string;
export let info: string | undefined = undefined;
export let show_label = true;
export let container = true;
export let max_lines: number;
export let submit_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[] | 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";
let upload_component: Upload;
let hidden_upload: HTMLInputElement;
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;
let oldValue = value.text;
$: dispatch("drag", dragging);
let full_container: HTMLDivElement;
$: if (oldValue !== value.text) {
dispatch("change", value);
oldValue = value.text;
}
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(", ");
}
$: if (value === null) value = { text: "", files: [] };
$: value, el && lines !== max_lines && resize(el, lines, max_lines);
const dispatch = createEventDispatcher<{
change: typeof value;
submit: undefined;
blur: undefined;
select: SelectData;
input: undefined;
focus: undefined;
drag: boolean;
upload: FileData[] | FileData;
clear: undefined;
load: FileData[] | FileData;
error: string;
}>();
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");
}
}
afterUpdate(() => {
if (autofocus && el !== null) {
el.focus();
}
if (can_scroll && autoscroll) {
scroll();
}
value_is_output = false;
});
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> {
await tick();
if (e.key === "Enter" && e.shiftKey && lines > 1) {
e.preventDefault();
dispatch("submit");
} else if (
e.key === "Enter" &&
!e.shiftKey &&
lines === 1 &&
max_lines >= 1
) {
e.preventDefault();
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 | 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 {
if (hidden_upload) {
hidden_upload.value = "";
hidden_upload.click();
}
}
async function handle_submit(): Promise<void> {
dispatch("submit");
}
function handle_paste(event: ClipboardEvent): void {
if (!event.clipboardData) return;
const items = event.clipboardData.items;
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) {
upload_component.load_files(Array.from(event.dataTransfer.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"
>
<!-- svelte-ignore a11y-autofocus -->
<label class:container>
<BlockTitle {show_label} {info}>{label}</BlockTitle>
{#if value.files.length > 0 || uploading}
<div
class="thumbnails scroll-hide"
aria-label="Uploaded files"
data-testid="container_el"
style="display: {value.files.length > 0 || uploading
? 'flex'
: 'none'};"
>
{#each value.files as file, index}
<span role="listitem" aria-label="File thumbnail">
<button class="thumbnail-item thumbnail-small">
<button
class:disabled
class="delete-button"
on:click={(event) => remove_thumbnail(event, index)}
><Clear /></button
>
{#if file.mime_type && file.mime_type.includes("image")}
<Image
src={file.url}
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>
</span>
{/each}
{#if uploading}
<div class="loader" role="status" aria-label="Uploading"></div>
{/if}
</div>
{/if}
<div class="input-container">
<Upload
bind:this={upload_component}
on:load={handle_upload}
{file_count}
{root}
{max_file_size}
bind:dragging
bind:uploading
show_progress={false}
disable_click={true}
bind:hidden_upload
on:error
hidden={true}
{upload}
{stream_handler}
></Upload>
<button
data-testid="upload-button"
class="upload-button"
on:click={handle_upload_click}><Paperclip /></button
>
<textarea
data-testid="textbox"
use:text_area_resize={{
text: value.text,
lines: lines,
max_lines: max_lines
}}
class="scroll-hide"
dir={rtl ? "rtl" : "ltr"}
bind:value={value.text}
bind:this={el}
{placeholder}
rows={lines}
{disabled}
{autofocus}
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 : ""}
/>
{#if submit_btn}
<button
class="submit-button"
class:padded-button={submit_btn !== true}
on:click={handle_submit}
>
{#if submit_btn === true}
<Send />
{:else}
Hello World
{/if}
</button>
{/if}
</div>
</label>
</div>
<style>
.full-container {
width: 100%;
position: relative;
}
.full-container.dragging::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}
.input-container {
display: flex;
position: relative;
align-items: flex-end;
}
textarea {
flex-grow: 1;
outline: none !important;
background: var(--input-background-fill);
padding: var(--input-padding);
color: var(--body-text-color);
font-weight: var(--input-text-weight);
font-size: var(--input-text-size);
line-height: var(--line-sm);
border: none;
margin-top: 0px;
margin-bottom: 0px;
resize: none;
position: relative;
z-index: 1;
}
textarea:disabled {
-webkit-opacity: 1;
opacity: 1;
}
textarea::placeholder {
color: var(--input-placeholder-color);
}
.upload-button,
.submit-button {
background: var(--button-secondary-background-fill);
color: var(--button-secondary-text-color);
border: none;
text-align: center;
text-decoration: none;
font-size: 14px;
cursor: pointer;
border-radius: 15px;
min-width: 30px;
height: 30px;
flex-shrink: 0;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 5px;
z-index: var(--layer-1);
}
.padded-button {
padding: 0 10px;
}
.upload-button:hover,
.submit-button:hover {
background: var(--button-secondary-background-fill-hover);
}
.upload-button:active,
.submit-button:active {
box-shadow: var(--button-shadow-active);
}
.submit-button :global(svg) {
height: 22px;
width: 22px;
}
.upload-button :global(svg) {
height: 17px;
width: 17px;
}
.loader {
display: flex;
justify-content: center;
align-items: center;
--ring-color: transparent;
position: relative;
border: 5px solid #f3f3f3;
border-top: 5px solid var(--color-accent);
border-radius: 50%;
width: 25px;
height: 25px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.thumbnails :global(img) {
width: var(--size-full);
height: var(--size-full);
object-fit: cover;
border-radius: var(--radius-lg);
}
.thumbnails {
display: flex;
align-items: center;
gap: var(--spacing-lg);
overflow-x: scroll;
padding-top: var(--spacing-sm);
}
.thumbnail-item {
display: flex;
justify-content: center;
align-items: center;
--ring-color: transparent;
position: relative;
box-shadow:
0 0 0 2px var(--ring-color),
var(--shadow-drop);
border: 1px solid var(--border-color-primary);
border-radius: var(--radius-lg);
background: var(--background-fill-secondary);
aspect-ratio: var(--ratio-square);
width: var(--size-full);
height: var(--size-full);
cursor: default;
}
.thumbnail-small {
flex: none;
transform: scale(0.9);
transition: 0.075s;
width: var(--size-12);
height: var(--size-12);
}
.thumbnail-item :global(svg) {
width: 30px;
height: 30px;
}
.delete-button {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
right: -7px;
top: -7px;
color: var(--button-secondary-text-color);
background: var(--button-secondary-background-fill);
border: none;
text-align: center;
text-decoration: none;
font-size: 10px;
cursor: pointer;
border-radius: 50%;
width: 20px;
height: 20px;
}
.disabled {
display: none;
}
.delete-button :global(svg) {
width: 12px;
height: 12px;
}
.delete-button:hover {
filter: brightness(1.2);
border: 0.8px solid var(--color-grey-500);
}
</style>
|