gradio/js/dataframe/interactive/InteractiveDataframe.svelte
Dawood Khan e842a561af
Fix new line issue in chatbot (#5755)
* fix new line

* add changeset

* line breaks param

* add changeset

* fix test

* Update gradio/components/chatbot.py

* Update gradio/components/dataframe.py

* Update gradio/components/markdown.py

* add changeset

* fix static markdown

* lint

* line breaks

* fixes

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2023-10-02 20:44:58 -07:00

105 lines
2.4 KiB
Svelte

<script lang="ts">
import type { Gradio, SelectData } from "@gradio/utils";
import { Block } from "@gradio/atoms";
import Table from "../shared";
import { StatusTracker } from "@gradio/statustracker";
import type { LoadingStatus } from "@gradio/statustracker";
import { afterUpdate } from "svelte";
import { _ } from "svelte-i18n";
import type { Headers, Data, Metadata, Datatype } from "../shared/utils";
export let headers: Headers = [];
export let elem_id = "";
export let elem_classes: string[] = [];
export let visible = true;
export let value: { data: Data; headers: Headers; metadata: Metadata } = {
data: [["", "", ""]],
headers: ["1", "2", "3"],
metadata: null
};
export let latex_delimiters: {
left: string;
right: string;
display: boolean;
}[];
export let height = 500;
let old_value: string = JSON.stringify(value);
export let value_is_output = false;
export let col_count: [number, "fixed" | "dynamic"];
export let row_count: [number, "fixed" | "dynamic"];
export let label: string | null = null;
export let wrap: boolean;
export let datatype: Datatype | Datatype[];
export let scale: number | null = null;
export let min_width: number | undefined = undefined;
export let line_breaks = true;
export let gradio: Gradio<{
change: never;
select: SelectData;
input: never;
}>;
export let loading_status: LoadingStatus;
function handle_change(): void {
gradio.dispatch("change");
if (!value_is_output) {
gradio.dispatch("input");
}
}
afterUpdate(() => {
value_is_output = false;
});
$: {
if (JSON.stringify(value) !== old_value) {
old_value = JSON.stringify(value);
handle_change();
}
}
if (
(Array.isArray(value) && value?.[0]?.length === 0) ||
value.data?.[0]?.length === 0
) {
value = {
data: [Array(col_count?.[0] || 3).fill("")],
headers: Array(col_count?.[0] || 3)
.fill("")
.map((_, i) => `${i + 1}`),
metadata: null
};
}
</script>
<Block
{visible}
padding={false}
{elem_id}
{elem_classes}
container={false}
{scale}
{min_width}
allow_overflow={false}
>
<StatusTracker {...loading_status} border={true} />
<Table
{label}
{row_count}
{col_count}
{value}
{headers}
on:change={({ detail }) => {
value = detail;
}}
on:select={(e) => gradio.dispatch("select", e.detail)}
editable
{wrap}
{datatype}
{latex_delimiters}
{height}
{line_breaks}
/>
</Block>