Spaces:
Build error
Build error
File size: 5,908 Bytes
87a665c | 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 | <script>
import { onDestroy, onMount, tick, getContext } from 'svelte';
const i18n = getContext('i18n');
import Markdown from './Markdown.svelte';
import {
artifactCode,
chatId,
mobile,
settings,
showArtifacts,
showControls,
showEmbeds
} from '$lib/stores';
import FloatingButtons from '../ContentRenderer/FloatingButtons.svelte';
import { createMessagesList } from '$lib/utils';
export let id;
export let content;
export let history;
export let messageId;
export let selectedModels = [];
export let done = true;
export let model = null;
export let sources = null;
export let save = false;
export let preview = false;
export let floatingButtons = true;
export let editCodeBlock = true;
export let topPadding = false;
export let onSave = (e) => {};
export let onSourceClick = (e) => {};
export let onTaskClick = (e) => {};
export let onSetInputText = (text) => {};
let contentContainerElement;
let floatingButtonsElement;
let sourceIds = [];
$: getSourceIds(sources);
const getSourceIds = (sources) => {
const result = [];
for (const source of sources ?? []) {
for (let index = 0; index < (source.document ?? []).length; index++) {
if (model?.info?.meta?.capabilities?.citations == false) {
result.push('N/A');
continue;
}
const metadata = source.metadata?.[index];
const id = metadata?.source ?? 'N/A';
if (metadata?.name) {
result.push(metadata.name);
} else if (id.startsWith('http://') || id.startsWith('https://')) {
result.push(id);
} else {
result.push(source?.source?.name ?? id);
}
}
}
sourceIds = [...new Set(result)];
};
const updateButtonPosition = (event) => {
const buttonsContainerElement = document.getElementById(`floating-buttons-${id}`);
if (
!contentContainerElement?.contains(event.target) &&
!buttonsContainerElement?.contains(event.target)
) {
closeFloatingButtons();
return;
}
setTimeout(async () => {
await tick();
if (!contentContainerElement?.contains(event.target)) return;
let selection = window.getSelection();
if (selection.toString().trim().length > 0) {
const range = selection.getRangeAt(0);
const rect = range.getBoundingClientRect();
const parentRect = contentContainerElement.getBoundingClientRect();
// Adjust based on parent rect
const top = rect.bottom - parentRect.top;
const left = rect.left - parentRect.left;
if (buttonsContainerElement) {
buttonsContainerElement.style.display = 'block';
// Calculate space available on the right
const spaceOnRight = parentRect.width - left;
let halfScreenWidth = $mobile ? window.innerWidth / 2 : window.innerWidth / 3;
if (spaceOnRight < halfScreenWidth) {
const right = parentRect.right - rect.right;
buttonsContainerElement.style.right = `${right}px`;
buttonsContainerElement.style.left = 'auto'; // Reset left
} else {
// Enough space, position using 'left'
buttonsContainerElement.style.left = `${left}px`;
buttonsContainerElement.style.right = 'auto'; // Reset right
}
buttonsContainerElement.style.top = `${top + 5}px`; // +5 to add some spacing
}
} else {
closeFloatingButtons();
}
}, 0);
};
const closeFloatingButtons = () => {
const buttonsContainerElement = document.getElementById(`floating-buttons-${id}`);
if (buttonsContainerElement) {
buttonsContainerElement.style.display = 'none';
}
if (floatingButtonsElement) {
// check if closeHandler is defined
if (typeof floatingButtonsElement?.closeHandler === 'function') {
// call the closeHandler function
floatingButtonsElement?.closeHandler();
}
}
};
const keydownHandler = (e) => {
if (e.key === 'Escape') {
closeFloatingButtons();
}
};
// Reactive listener attachment: re-attaches when floatingButtons
// transitions from false → true (e.g. when message.done flips).
let listenersAttached = false;
function attachListeners() {
if (!listenersAttached && contentContainerElement) {
contentContainerElement.addEventListener('mouseup', updateButtonPosition);
document.addEventListener('mouseup', updateButtonPosition);
document.addEventListener('keydown', keydownHandler);
listenersAttached = true;
}
}
function detachListeners() {
if (listenersAttached) {
contentContainerElement?.removeEventListener('mouseup', updateButtonPosition);
document.removeEventListener('mouseup', updateButtonPosition);
document.removeEventListener('keydown', keydownHandler);
listenersAttached = false;
}
}
$: if (floatingButtons && contentContainerElement) {
attachListeners();
} else {
detachListeners();
}
onDestroy(() => {
detachListeners();
});
</script>
<div bind:this={contentContainerElement}>
<Markdown
{id}
content={model?.info?.meta?.capabilities?.citations == false
? content.replace(/\s*(\[(?:\d+(?:#[^,\]\s]+)?(?:,\s*\d+(?:#[^,\]\s]+)?)*)\])+/g, '')
: content}
{model}
{save}
{preview}
{done}
{editCodeBlock}
{topPadding}
{sourceIds}
{onSourceClick}
{onTaskClick}
{onSave}
onUpdate={async (token) => {
const { lang, text: code } = token;
if (
($settings?.detectArtifacts ?? true) &&
(['html', 'svg'].includes(lang) || (lang === 'xml' && code.includes('svg'))) &&
!$mobile &&
$chatId
) {
await tick();
showArtifacts.set(true);
showControls.set(true);
}
}}
onPreview={async (value) => {
console.log('Preview', value);
await artifactCode.set(value);
await showControls.set(true);
await showArtifacts.set(true);
await showEmbeds.set(false);
}}
/>
</div>
{#if floatingButtons}
<FloatingButtons
bind:this={floatingButtonsElement}
{id}
actions={$settings?.floatingActionButtons ?? []}
onSetInputText={(text) => {
onSetInputText(text);
closeFloatingButtons();
}}
/>
{/if}
|