| <svelte:options accessors={true} /> |
|
|
| <script context="module" lang="ts"> |
| export { default as BaseMultimodalTextbox } from "./shared/MultimodalTextbox.svelte"; |
| export { default as BaseExample } from "./Example.svelte"; |
| </script> |
|
|
| <script lang="ts"> |
| import { Gradio, type SelectData } from "@gradio/utils"; |
| import MultimodalTextbox from "./shared/MultimodalTextbox.svelte"; |
| import { Block } from "@gradio/atoms"; |
| import { StatusTracker } from "@gradio/statustracker"; |
| import { onMount, tick } from "svelte"; |
| import type { WaveformOptions } from "../audio/shared/types"; |
| import type { |
| MultimodalTextboxProps, |
| MultimodalTextboxEvents |
| } from "./types"; |
| |
| let upload_promise = $state<Promise<any>>(); |
| |
| class MultimodalTextboxGradio extends Gradio< |
| MultimodalTextboxEvents, |
| MultimodalTextboxProps |
| > { |
| async get_data() { |
| if (upload_promise) { |
| await upload_promise; |
| await tick(); |
| } |
| const data = await super.get_data(); |
| |
| return data; |
| } |
| } |
| |
| let props = $props(); |
| const gradio = new MultimodalTextboxGradio(props); |
| |
| const value = $derived(gradio.props.value || { text: "", files: [] }); |
| |
| let dragging = $state<boolean>(false); |
| let active_source = $state<"microphone" | null>(null); |
| |
| let color_accent = "darkorange"; |
| |
| const waveform_settings = { |
| height: 50, |
| barWidth: 2, |
| barGap: 3, |
| cursorWidth: 2, |
| cursorColor: "#ddd5e9", |
| autoplay: false, |
| barRadius: 10, |
| dragToSeek: true, |
| normalize: true, |
| minPxPerSec: 20, |
| waveColor: "", |
| progressColor: "", |
| mediaControls: false as boolean | undefined, |
| sampleRate: 44100 |
| }; |
| |
| onMount(() => { |
| color_accent = getComputedStyle(document?.documentElement).getPropertyValue( |
| "--color-accent" |
| ); |
| set_trim_region_colour(); |
| waveform_settings.waveColor = |
| gradio.props?.waveform_options?.waveform_color || "#9ca3af"; |
| waveform_settings.progressColor = |
| gradio.props?.waveform_options?.waveform_progress_color || color_accent; |
| waveform_settings.mediaControls = |
| gradio.props?.waveform_options?.show_controls; |
| waveform_settings.sampleRate = |
| gradio.props?.waveform_options?.sample_rate || 44100; |
| }); |
| |
| const trim_region_settings = { |
| color: gradio.props?.waveform_options?.trim_region_color, |
| drag: true, |
| resize: true |
| }; |
| |
| function set_trim_region_colour(): void { |
| document.documentElement.style.setProperty( |
| "--trim-region-color", |
| trim_region_settings.color || color_accent |
| ); |
| } |
| |
| |
| |
| |
| const upload_fn = (...args: Parameters<typeof gradio.shared.client.upload>) => |
| gradio.shared.client.upload(...args); |
| const i18n = (s: string | null | undefined): string => gradio.i18n(s); |
| const stream_handler_fn = ( |
| ...args: Parameters<typeof gradio.shared.client.stream> |
| ): EventSource => gradio.shared.client.stream(...args); |
| |
| let sources_string = $derived( |
| gradio.props.sources.join(",") as |
| | "upload" |
| | "upload,microphone" |
| | "microphone" |
| | "microphone,upload" |
| ); |
| |
| let file_types_string = $derived.by( |
| () => (gradio.props.file_types || []).join(",") || null |
| ); |
| </script> |
|
|
| <Block |
| visible={gradio.shared.visible} |
| elem_id={gradio.shared.elem_id} |
| elem_classes={[...(gradio.shared.elem_classes || []), "multimodal-textbox"]} |
| scale={gradio.shared.scale} |
| min_width={gradio.shared.min_width} |
| allow_overflow={false} |
| padding={false} |
| border_mode={dragging ? "focus" : "base"} |
| > |
| {#if gradio.shared.loading_status} |
| <StatusTracker |
| autoscroll={gradio.shared.autoscroll} |
| i18n={gradio.i18n} |
| {...gradio.shared.loading_status} |
| on:clear_status={() => |
| gradio.dispatch("clear_status", gradio.shared.loading_status)} |
| /> |
| {/if} |
|
|
| <MultimodalTextbox |
| bind:upload_promise |
| {value} |
| value_is_output |
| bind:dragging |
| bind:active_source |
| {file_types_string} |
| root={gradio.shared.root} |
| label={gradio.shared.label || "MultimodalTextbox"} |
| info={gradio.props.info} |
| show_label={gradio.shared.show_label} |
| lines={gradio.props.lines} |
| rtl={gradio.props.rtl} |
| text_align={gradio.props.text_align} |
| waveform_settings={waveform_settings as WaveformOptions} |
| {i18n} |
| max_lines={!gradio.props.max_lines |
| ? gradio.props.lines + 1 |
| : gradio.props.max_lines} |
| placeholder={gradio.props.placeholder} |
| submit_btn={gradio.props.submit_btn} |
| stop_btn={gradio.props.stop_btn} |
| autofocus={gradio.props.autofocus} |
| autoscroll={gradio.shared.autoscroll} |
| file_count={gradio.props.file_count} |
| {sources_string} |
| max_file_size={gradio.shared.max_file_size} |
| on:change={(e) => ( |
| (gradio.props.value = e.detail), |
| gradio.dispatch("change", gradio.props.value) |
| )} |
| on:input={() => gradio.dispatch("input")} |
| on:submit={() => gradio.dispatch("submit")} |
| on:stop={() => gradio.dispatch("stop")} |
| on:blur={() => gradio.dispatch("blur")} |
| on:select={(e) => gradio.dispatch("select", e.detail)} |
| on:focus={() => gradio.dispatch("focus")} |
| on:error={({ detail }) => { |
| gradio.dispatch("error", detail); |
| }} |
| on:start_recording={() => gradio.dispatch("start_recording")} |
| on:pause_recording={() => gradio.dispatch("pause_recording")} |
| on:stop_recording={() => gradio.dispatch("stop_recording")} |
| on:upload={(e) => gradio.dispatch("upload", e.detail)} |
| on:clear={() => gradio.dispatch("clear")} |
| disabled={!gradio.shared.interactive} |
| upload={upload_fn} |
| stream_handler={stream_handler_fn} |
| max_plain_text_length={gradio.props.max_plain_text_length} |
| html_attributes={gradio.props.html_attributes} |
| /> |
| </Block> |
|
|