Spaces:
Runtime error
Runtime error
File size: 7,415 Bytes
4954c84 09bd8f1 88503f9 4954c84 7611058 4954c84 88503f9 4954c84 a473567 4954c84 88503f9 4954c84 88503f9 4954c84 a473567 09bd8f1 4954c84 a3fa4c8 1d4ebdb 4954c84 1d4ebdb 88503f9 4954c84 a3fa4c8 4954c84 1d4ebdb 4954c84 88503f9 4954c84 1d4ebdb 4954c84 1d4ebdb 4954c84 a3fa4c8 4954c84 09bd8f1 4954c84 1d4ebdb 4954c84 1d4ebdb 4954c84 88503f9 4954c84 7611058 4954c84 88503f9 9d2014f 88503f9 402952a 88503f9 4954c84 88503f9 4954c84 7611058 4954c84 1d4ebdb 4954c84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
<script lang="ts">
import {
beforeUpdate,
afterUpdate,
createEventDispatcher,
} from "svelte";
import BlockTitleWithHighlights from "./BlockTitleWithHighlights.svelte";
import Widgets from "./Widgets.svelte";
import type { SelectData } from "@gradio/utils";
import { get_next_color } from "@gradio/utils";
import { correct_color_map, getParentCursorPosition, getNodeAndOffset } from "./utils";
const browser = typeof document !== "undefined";
export let value: [string, string | null][] = [];
export let value_is_output: boolean = false;
export let label: string;
export let legend_label: string;
export let info: string | undefined = undefined;
export let show_label = true;
export let show_legend = false;
export let show_legend_label = false;
export let container = true;
export let color_map: Record<string, string> = {};
export let show_copy_button = false;
export let show_remove_tags_button = false;
export let disabled: boolean;
let el: HTMLDivElement;
let el_text: string = "";
let marked_el_text: string = "";
let ctx: CanvasRenderingContext2D;
let current_color_map: Record<string, string>;
let _color_map: Record<string, { primary: string; secondary: string }> = {};
let copied = false;
let tags_removed = false;
let timer: ReturnType<typeof setTimeout>;
let can_scroll: boolean;
let tagged_text: string = "";
function set_color_map(): void {
current_color_map = !color_map || Object.keys(color_map).length === 0 ? {} : color_map;
// if a label in the color map is not in the value, remove it from the color map
for (let label in current_color_map) {
if (!value.map(([_, label]) => label).includes(label)) {
delete current_color_map[label];
}
}
if (value.length > 0) {
for (let [_, label] of value) {
if (label !== null && !(label in current_color_map)) {
let color = get_next_color(Object.keys(current_color_map).length);
current_color_map[label] = color;
}
}
}
_color_map = correct_color_map(current_color_map, browser, ctx);
}
function set_text_from_value(as_output: boolean): void {
if (value.length > 0 && as_output) {
el_text = value.map(([text, _]) => text).join("");
marked_el_text = value.map(([text, category]) => {
if (category !== null) {
return `<mark class="hl ${category}" style="background-color:${_color_map[category].secondary}">${text}`;
} else {
return text;
}
}).join("");
tagged_text = value.map(([text, category]) => {
if (category !== null) {
return `<${category}>${text}</${category}>`;
} else {
return text;
}
}).join("");
}
}
$: set_color_map();
$: set_text_from_value(true);
const dispatch = createEventDispatcher<{
change: [string, string | null][];
input: [string, string | null][];
submit: undefined;
blur: undefined;
select: SelectData;
focus: undefined;
clear: undefined;
}>();
beforeUpdate(() => {
can_scroll = el && el.offsetHeight + el.scrollTop > el.scrollHeight - 100;
});
function handle_change(): void {
checkAndRemoveHighlight();
set_value_from_marked_span();
dispatch("change", value);
if (!value_is_output) {
dispatch("input", value);
}
}
afterUpdate(() => {
set_color_map();
set_text_from_value(value_is_output);
value_is_output = false;
});
function set_value_from_marked_span(): void {
let new_value: [string, string | null][] = [];
let text = "";
let category = null;
let in_tag = false;
let tag = "";
// Replace , &, <, > with their corresponding characters
let clean_marked_text = marked_el_text.replace(/ |&|<|>/g, function(m) {
return {" ":" ", "&":"&", "<":"<", ">":">"}[m];
});
for (let i = 0; i < clean_marked_text.length; i++) {
let char = clean_marked_text[i];
if (char === "<") {
in_tag = true;
if (text) {
new_value.push([text, category]);
}
text = "";
category = null;
} else if (char === ">") {
in_tag = false;
if (tag.slice(0, 4) === "mark") {
let match = /class="hl ([^"]+)"/.exec(tag);
category = match ? match[1] : null;
}
tag = "";
} else if (in_tag) {
tag += char;
} else {
text += char;
}
}
if (text) {
new_value.push([text, category]);
}
value = new_value;
}
function handle_remove_tags(): void {
marked_el_text = el_text;
handle_change();
tags_removed = true;
dispatch("clear");
}
// Method to remove highlight if cursor is inside
function checkAndRemoveHighlight() {
const selection = window.getSelection();
const cursorPosition = selection.anchorOffset;
if (selection.rangeCount > 0) {
var currParent = selection.getRangeAt(0).commonAncestorContainer.parentElement;
if (currParent && currParent.tagName.toLowerCase() === 'mark') {
const text = currParent.textContent;
// replace the mark tag with its text content
var textContainer = currParent.parentElement;
var newTextNode = document.createTextNode(text);
textContainer.replaceChild(newTextNode, currParent);
marked_el_text = textContainer.innerHTML;
// set the cursor position to the same position as before
var range = document.createRange()
var newSelection = window.getSelection()
const newCursorPosition = cursorPosition + getParentCursorPosition(textContainer)
var nodeAndOffset = getNodeAndOffset(textContainer, newCursorPosition);
range.setStart(nodeAndOffset.node, nodeAndOffset.offset);
range.setEnd(nodeAndOffset.node, nodeAndOffset.offset);
newSelection.removeAllRanges();
newSelection.addRange(range);
}
}
}
</script>
<label class:container for="highlighted-textbox">
<BlockTitleWithHighlights {show_label} {show_legend} {show_legend_label} {legend_label} {_color_map} {info}>{label}</BlockTitleWithHighlights>
<Widgets
{show_copy_button}
show_remove_tags_button={show_remove_tags_button && !tags_removed}
value={tagged_text}
on:clear={handle_remove_tags}
/>
{#if disabled}
<div
class="textfield"
data-testid="highlighted-textbox"
contenteditable="false"
bind:this={el}
bind:textContent={el_text}
bind:innerHTML={marked_el_text}
/>
{:else}
<div
class="textfield"
data-testid="highlighted-textbox"
contenteditable="true"
role="textbox"
tabindex="0"
bind:this={el}
bind:textContent={el_text}
bind:innerHTML={marked_el_text}
on:blur
on:keypress
on:select
on:scroll
on:input={handle_change}
on:focus
on:change={handle_change}
/>
{/if}
</label>
<style>
label {
display: block;
width: 100%;
}
.container {
display: flex;
flex-direction: column;
gap: var(--spacing-sm);
}
.textfield {
box-sizing: border-box;
outline: none !important;
box-shadow: var(--input-shadow);
padding: var(--input-padding);
border-radius: var(--radius-md);
background: var(--input-background-fill);
background-color: transparent;
font-weight: var(--input-text-weight);
font-size: var(--input-text-size);
width: 100%;
line-height: var(--line-sm);
word-break: break-word;
border: var(--input-border-width) solid var(--input-border-color);
cursor: text;
white-space: break-spaces;
}
.textfield:focus {
box-shadow: var(--input-shadow-focus);
border-color: var(--input-border-color-focus);
}
:global(mark) {
border-radius: 3px;
}
</style> |