adf0d17497
publish / version_or_publish (push) Waiting to run
storybook-build / changes (push) Waiting to run
storybook-build / :storybook-build (push) Blocked by required conditions
Sync Gradio Skills to Hugging Face / sync-skills (push) Waiting to run
functional / changes (push) Waiting to run
functional / build-frontend (push) Blocked by required conditions
functional / functional-test-SSR=false (push) Blocked by required conditions
functional / functional-reload (push) Blocked by required conditions
functional / functional-test-SSR=true (push) Blocked by required conditions
hygiene / hygiene-test (push) Waiting to run
python / changes (push) Waiting to run
python / build (push) Blocked by required conditions
python / test-ubuntu-latest-flaky (push) Blocked by required conditions
python / test-ubuntu-latest-not-flaky (push) Blocked by required conditions
python / test-windows-latest-flaky (push) Blocked by required conditions
python / test-windows-latest-not-flaky (push) Blocked by required conditions
js / changes (push) Waiting to run
js / js-test (push) Blocked by required conditions
docs-build / changes (push) Waiting to run
docs-build / docs-build (push) Blocked by required conditions
docs-build / website-build (push) Blocked by required conditions
105 lines
2.1 KiB
Svelte
105 lines
2.1 KiB
Svelte
<script lang="ts">
|
|
import { Image } from "@gradio/image/shared";
|
|
import { Video } from "@gradio/video/shared";
|
|
import type { FileData } from "@gradio/client";
|
|
|
|
let {
|
|
value = { text: "", files: [] },
|
|
type,
|
|
selected = false
|
|
}: {
|
|
value?: { text: string; files: FileData[] };
|
|
type: "gallery" | "table";
|
|
selected?: boolean;
|
|
} = $props();
|
|
|
|
let size = $state<number>(0);
|
|
let el: HTMLDivElement;
|
|
|
|
function set_styles(element: HTMLElement, el_width: number): void {
|
|
element.style.setProperty(
|
|
"--local-text-width",
|
|
`${el_width && el_width < 150 ? el_width : 200}px`
|
|
);
|
|
element.style.whiteSpace = "unset";
|
|
}
|
|
|
|
$effect(() => {
|
|
if (el && size) {
|
|
set_styles(el, size);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<div
|
|
class="container"
|
|
bind:clientWidth={size}
|
|
bind:this={el}
|
|
class:table={type === "table"}
|
|
class:gallery={type === "gallery"}
|
|
class:selected
|
|
class:border={value}
|
|
>
|
|
<p>{value.text ? value.text : ""}</p>
|
|
{#each value.files as file}
|
|
{#if file.mime_type && file.mime_type.includes("image")}
|
|
<Image src={file.url} alt="" />
|
|
{:else if file.mime_type && file.mime_type.includes("video")}
|
|
<Video src={file.url} alt="" loop={true} is_stream={false} />
|
|
{:else if file.mime_type && file.mime_type.includes("audio")}
|
|
<audio src={file.url} controls />
|
|
{:else}
|
|
{file.orig_name}
|
|
{/if}
|
|
{/each}
|
|
</div>
|
|
|
|
<style>
|
|
.gallery {
|
|
padding: var(--size-1) var(--size-2);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
div {
|
|
overflow: hidden;
|
|
min-width: var(--local-text-width);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.container :global(img),
|
|
.container :global(video) {
|
|
object-fit: contain;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
.container.selected {
|
|
border-color: var(--border-color-accent);
|
|
}
|
|
.border.table {
|
|
border: 2px solid var(--border-color-primary);
|
|
}
|
|
|
|
.container.table {
|
|
margin: 0 auto;
|
|
border-radius: var(--radius-lg);
|
|
overflow-x: auto;
|
|
width: max-content;
|
|
height: max-content;
|
|
object-fit: cover;
|
|
padding: var(--size-2);
|
|
}
|
|
|
|
.container.gallery {
|
|
object-fit: cover;
|
|
}
|
|
|
|
div > :global(p) {
|
|
font-size: var(--text-lg);
|
|
white-space: normal;
|
|
}
|
|
</style>
|