freddyaboulton's picture
Upload folder using huggingface_hub
650ecaf verified
<script context="module" lang="ts">
export { default as BaseStaticHighlightedText } from "./shared/StaticHighlightedtext.svelte";
export { default as BaseInteractiveHighlightedText } from "./shared/InteractiveHighlightedtext.svelte";
</script>
<script lang="ts">
import StaticHighlightedText from "./shared/StaticHighlightedtext.svelte";
import InteractiveHighlightedText from "./shared/InteractiveHighlightedtext.svelte";
import { Block, BlockLabel, Empty } from "@gradio/atoms";
import { TextHighlight } from "@gradio/icons";
import { StatusTracker } from "@gradio/statustracker";
import { Gradio } from "@gradio/utils";
import { merge_elements } from "./shared/utils";
import type { HighlightedTextProps, HighlightedTextEvents } from "./types";
import { merge } from "@storybook/manager-api";
const props = $props();
const gradio = new Gradio<HighlightedTextEvents, HighlightedTextProps>(props);
let old_value = $state(gradio.props.value);
$effect(() => {
if (old_value != gradio.props.value) {
old_value = gradio.props.value;
gradio.dispatch("change");
}
});
let value = $derived.by(() =>
gradio.props.combine_adjacent
? merge_elements(gradio.props.value, "equal")
: gradio.props.value
);
</script>
{#if !gradio.shared.interactive}
<Block
variant={"solid"}
test_id="highlighted-text"
visible={gradio.shared.visible}
elem_id={gradio.shared.elem_id}
elem_classes={gradio.shared.elem_classes}
padding={false}
container={gradio.shared.container}
scale={gradio.shared.scale}
min_width={gradio.shared.min_width}
rtl={gradio.props.rtl}
>
<StatusTracker
autoscroll={gradio.shared.autoscroll}
i18n={gradio.i18n}
{...gradio.shared.loading_status}
on_clear_status={() =>
gradio.dispatch("clear_status", gradio.shared.loading_status)}
/>
{#if gradio.shared.label && gradio.shared.show_label}
<BlockLabel
Icon={TextHighlight}
label={gradio.shared.label ||
gradio.i18n("highlighted_text.highlighted_text")}
float={false}
disable={gradio.shared.container === false}
show_label={gradio.shared.show_label}
rtl={gradio.props.rtl}
/>
{/if}
{#if value}
<StaticHighlightedText
on:select={({ detail }) => gradio.dispatch("select", detail)}
selectable={false}
{value}
show_legend={gradio.props.show_legend}
show_inline_category={gradio.props.show_inline_category}
color_map={gradio.props.color_map}
/>
{:else}
<Empty>
<TextHighlight />
</Empty>
{/if}
</Block>
{:else}
<Block
variant={gradio.shared.interactive ? "dashed" : "solid"}
test_id="highlighted-text"
visible={gradio.shared.visible}
elem_id={gradio.shared.elem_id}
elem_classes={gradio.shared.elem_classes}
padding={false}
container={gradio.shared.container}
scale={gradio.shared.scale}
min_width={gradio.shared.min_width}
>
<StatusTracker
autoscroll={gradio.shared.autoscroll}
{...gradio.shared.loading_status}
i18n={gradio.i18n}
on_clear_status={() =>
gradio.dispatch("clear_status", gradio.shared.loading_status)}
/>
{#if gradio.shared.label && gradio.shared.show_label}
<BlockLabel
Icon={TextHighlight}
label={gradio.shared.label}
float={false}
disable={gradio.shared.container === false}
show_label={gradio.shared.show_label}
rtl={gradio.props.rtl}
/>
{/if}
{#if value}
<InteractiveHighlightedText
bind:value
on:change={() => {
gradio.props.value = value;
gradio.dispatch("change");
}}
selectable={false}
show_legend={gradio.props.show_legend}
color_map={gradio.props.color_map}
/>
{:else}
<Empty size="small" unpadded_box={true}>
<TextHighlight />
</Empty>
{/if}
</Block>
{/if}