mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
73 lines
1.3 KiB
Svelte
73 lines
1.3 KiB
Svelte
|
<script lang="ts">
|
||
|
import { onMount } from "svelte";
|
||
|
import { Image } from "@gradio/image/shared";
|
||
|
import type { FileData } from "@gradio/client";
|
||
|
|
||
|
export let value: { text: string; files: FileData[] } = {
|
||
|
text: "",
|
||
|
files: []
|
||
|
};
|
||
|
export let type: "gallery" | "table";
|
||
|
export let selected = false;
|
||
|
|
||
|
let size: number;
|
||
|
let el: HTMLDivElement;
|
||
|
|
||
|
function set_styles(element: HTMLElement, el_width: number): void {
|
||
|
if (!element || !el_width) return;
|
||
|
el.style.setProperty(
|
||
|
"--local-text-width",
|
||
|
`${el_width < 150 ? el_width : 200}px`
|
||
|
);
|
||
|
el.style.whiteSpace = "unset";
|
||
|
}
|
||
|
|
||
|
onMount(() => {
|
||
|
set_styles(el, size);
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<div
|
||
|
bind:clientWidth={size}
|
||
|
bind:this={el}
|
||
|
class:table={type === "table"}
|
||
|
class:gallery={type === "gallery"}
|
||
|
class:selected
|
||
|
>
|
||
|
<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}
|
||
|
{file.path}
|
||
|
{/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;
|
||
|
}
|
||
|
|
||
|
:global(img) {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
}
|
||
|
|
||
|
div > :global(p) {
|
||
|
font-size: var(--text-lg);
|
||
|
white-space: normal;
|
||
|
}
|
||
|
</style>
|