forked from unslothai/unsloth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarkdown-text.tsx
More file actions
434 lines (398 loc) · 12.9 KB
/
Copy pathmarkdown-text.tsx
File metadata and controls
434 lines (398 loc) · 12.9 KB
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
// SPDX-License-Identifier: AGPL-3.0-only
// Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
"use client";
import { ArtifactCard, useChatRuntimeStore } from "@/features/chat";
import {
getCodeFence,
isFullHtmlDocument,
isHtmlFence,
isRenderableRenderHtmlToolPart,
isSvgFence,
} from "@/features/chat/artifacts/html-fences";
import { copyToClipboard } from "@/lib/copy-to-clipboard";
import { preprocessLaTeX } from "@/lib/latex";
import { downloadFile, isDownloadCancelled } from "@/lib/native-files";
import { openLink } from "@/lib/open-link";
import { safeMarkdownUrl } from "@/lib/safe-markdown-url";
import { Tick02Icon } from "@/lib/tick-icon";
import { toast } from "@/lib/toast";
import { INTERNAL, useAuiState, useMessagePartText } from "@assistant-ui/react";
import { Copy01Icon, Download01Icon } from "@hugeicons/core-free-icons";
import { HugeiconsIcon } from "@hugeicons/react";
import { createMathPlugin } from "@streamdown/math";
import { mermaid } from "@streamdown/mermaid";
import { useEffect, useMemo, useRef, useState } from "react";
import {
Block,
type BlockProps,
Streamdown,
type StreamdownProps,
} from "streamdown";
import { createCodePlugin } from "./code-plugin";
import "katex/dist/katex.min.css";
import { AudioPlayer } from "./audio-player";
import { unslothDarkTheme, unslothLightTheme } from "./code-themes";
const math = createMathPlugin({ singleDollarTextMath: true });
const code = createCodePlugin({
themes: [unslothLightTheme, unslothDarkTheme],
});
const { withSmoothContextProvider } = INTERNAL;
// Streamdown 2.5 schedules ordinary streaming blocks in an interruptible React
// transition. A continuous token stream can starve that transition for seconds.
// Its animated path commits every block update directly; zero duration preserves
// that scheduling behavior without adding a visible text animation.
const STREAMDOWN_IMMEDIATE_UPDATES = {
duration: 0,
stagger: 0,
} satisfies NonNullable<StreamdownProps["animated"]>;
const STREAMDOWN_COMPONENTS = {
a: ({ href, children, ...props }: React.ComponentProps<"a">) => (
<a
href={href}
rel="noopener noreferrer"
className="text-primary underline underline-offset-2 decoration-primary/40 hover:decoration-primary transition-colors cursor-pointer"
onClick={(e) => {
if (href && openLink(href)) {
e.preventDefault();
}
}}
{...props}
>
{children}
</a>
),
};
const COPY_RESET_MS = 2000;
const MERMAID_SOURCE_RE = /```mermaid\s*([\s\S]*?)```/i;
const ACTION_PANEL_CLASS =
"pointer-events-auto flex shrink-0 items-center gap-1";
const ACTION_BUTTON_CLASS =
"flex size-8 cursor-pointer items-center justify-center rounded-[10px] text-chat-icon-fg transition-all hover:bg-chat-icon-bg-hover hover:text-chat-icon-fg-hover disabled:cursor-not-allowed disabled:opacity-50";
function getMermaidSource(blockContent: string): string | null {
const source = blockContent.match(MERMAID_SOURCE_RE)?.[1]?.trim();
return source && source.length > 0 ? source : null;
}
function getCodeFilename(language: string | null) {
const extByLanguage: Record<string, string> = {
bash: "sh",
"c++": "cpp",
csharp: "cs",
javascript: "js",
js: "js",
json: "json",
jsx: "jsx",
markdown: "md",
md: "md",
python: "py",
py: "py",
ruby: "rb",
rust: "rs",
shell: "sh",
sh: "sh",
sql: "sql",
ts: "ts",
tsx: "tsx",
typescript: "ts",
svg: "svg",
yaml: "yml",
yml: "yml",
};
const normalized = language?.toLowerCase();
const fallbackExt = normalized?.replace(/[^a-z0-9]+/g, "-");
const ext = normalized
? extByLanguage[normalized] || fallbackExt || "txt"
: "txt";
return `snippet.${ext}`;
}
const UNSAFE_SVG_RE =
/<script[\s>]|on\w+\s*=|javascript:|<foreignObject[\s>]|<iframe[\s>]|<embed[\s>]|<object[\s>]/i;
function sanitizeSvg(source: string): string | null {
if (UNSAFE_SVG_RE.test(source)) return null;
// Strip XML declaration: unneeded for data URIs and breaks some renderers.
return source.replace(/^\s*<\?xml[^?]*\?>\s*/i, "");
}
function SvgPreview({ source }: { source: string }) {
const dataUri = `data:image/svg+xml;charset=utf-8,${encodeURIComponent(source)}`;
return (
<div className="mt-2 flex justify-center rounded-lg border border-border bg-white p-4 dark:bg-neutral-100">
<img
src={dataUri}
alt="SVG preview"
style={{ maxWidth: "100%", maxHeight: 512 }}
/>
</div>
);
}
function downloadTextFile(filename: string, text: string): void {
void downloadFile(text, filename, "text/plain;charset=utf-8").catch(
(error) => {
if (!isDownloadCancelled(error)) {
toast.error("Could not save file.");
}
},
);
}
function useCopiedState() {
const [copied, setCopied] = useState(false);
const resetTimeoutRef = useRef<ReturnType<typeof setTimeout> | null>(null);
useEffect(() => {
return () => {
if (resetTimeoutRef.current) {
clearTimeout(resetTimeoutRef.current);
}
};
}, []);
const showCopied = () => {
setCopied(true);
if (resetTimeoutRef.current) {
clearTimeout(resetTimeoutRef.current);
}
resetTimeoutRef.current = setTimeout(() => {
setCopied(false);
resetTimeoutRef.current = null;
}, COPY_RESET_MS);
};
return { copied, showCopied };
}
function MermaidCopyButton({ source }: { source: string }) {
const { copied, showCopied } = useCopiedState();
return (
<button
type="button"
className="absolute top-3.5 right-20 z-20 cursor-pointer text-muted-foreground transition-all hover:text-foreground"
title="Copy Mermaid source"
onClick={async () => {
if (!(await copyToClipboard(source))) {
return;
}
showCopied();
}}
>
<HugeiconsIcon
icon={copied ? Tick02Icon : Copy01Icon}
strokeWidth={1.75}
className="size-icon"
/>
</button>
);
}
function CodeBlockActions({
disabled,
language,
source,
}: {
disabled: boolean;
language: string | null;
source: string;
}) {
const { copied, showCopied } = useCopiedState();
return (
<div className="pointer-events-none absolute top-3 right-3 z-20 flex items-center justify-end">
<div className={ACTION_PANEL_CLASS}>
<button
type="button"
className={ACTION_BUTTON_CLASS}
title="Copy code"
disabled={disabled}
onClick={async () => {
if (!(await copyToClipboard(source))) {
return;
}
showCopied();
}}
>
<HugeiconsIcon
icon={copied ? Tick02Icon : Copy01Icon}
strokeWidth={1.75}
className="size-icon"
/>
</button>
<button
type="button"
className={ACTION_BUTTON_CLASS}
title="Download file"
disabled={disabled}
onClick={() => {
downloadTextFile(getCodeFilename(language), source);
}}
>
<HugeiconsIcon icon={Download01Icon} className="size-icon" />
</button>
</div>
</div>
);
}
// Collapse a full-HTML answer in place into an artifact card. Diffusion keeps the
// raw code visible instead (the trailing MessageHtmlArtifacts appends its card).
function StreamdownBlock(props: BlockProps) {
const shouldCollapseHtmlArtifacts = useChatRuntimeStore(
(state) =>
(state.artifactsEnabled || state.collapseHtmlArtifacts) &&
!state.loadedIsDiffusion,
);
const messageHasRenderableRenderHtmlTool = useAuiState(({ message }) =>
message.parts.some(isRenderableRenderHtmlToolPart),
);
const hasMermaidFence = props.content.includes("```mermaid");
const mermaidSource = getMermaidSource(props.content);
const codeFence = getCodeFence(props.content);
if (props.isIncomplete && hasMermaidFence) {
return (
<div className="my-4 flex h-48 items-center justify-center rounded-xl border border-border bg-muted/30 text-sm text-muted-foreground animate-pulse">
Loading diagram...
</div>
);
}
if (props.isIncomplete && codeFence && isSvgFence(codeFence)) {
return (
<div className="relative isolate">
<div className="my-4 rounded-xl border border-border bg-muted/30 p-4">
<div className="mb-2 text-xs font-medium text-muted-foreground">
svg
</div>
<pre className="overflow-x-auto text-xs text-muted-foreground whitespace-pre-wrap break-all">
<code>{codeFence.source}</code>
</pre>
</div>
</div>
);
}
if (
shouldCollapseHtmlArtifacts &&
!messageHasRenderableRenderHtmlTool &&
props.isIncomplete &&
codeFence &&
isHtmlFence(codeFence) &&
isFullHtmlDocument(codeFence.source)
) {
return (
<div className="my-4 flex h-48 items-center justify-center rounded-xl border border-border bg-muted/30 text-sm text-muted-foreground animate-pulse">
Loading canvas preview...
</div>
);
}
if (mermaidSource) {
return (
<div className="relative isolate">
<Block {...props} />
<MermaidCopyButton source={mermaidSource} />
</div>
);
}
if (codeFence) {
const svgSource =
!props.isIncomplete && isSvgFence(codeFence)
? sanitizeSvg(codeFence.source)
: null;
const htmlSource =
shouldCollapseHtmlArtifacts &&
!messageHasRenderableRenderHtmlTool &&
!props.isIncomplete &&
isHtmlFence(codeFence) &&
isFullHtmlDocument(codeFence.source)
? codeFence.source
: null;
if (htmlSource) {
return (
<ArtifactCard code={htmlSource} title="HTML preview" source="fence" />
);
}
return (
<>
<div className="relative isolate">
<Block {...props} />
<CodeBlockActions
disabled={props.isIncomplete}
language={codeFence.language}
source={codeFence.source}
/>
</div>
{svgSource && <SvgPreview source={svgSource} />}
</>
);
}
return <Block {...props} />;
}
const AUDIO_PLAYER_RE = /<audio-player\s+src="([^"]+)"\s*\/>/;
// Coalesce markdown re-parses to one per frame while streaming: tokens arrive
// hundreds/sec, faster than the monitor can paint. When not streaming we return
// live text (not the throttled state) so final text never lags and a reused
// instance (parts keyed by index) shows completed text instead of a stale frame.
function useRafCoalescedText(text: string, isStreaming: boolean): string {
const [displayed, setDisplayed] = useState(text);
const pendingRef = useRef(text);
const rafRef = useRef<number | null>(null);
useEffect(() => {
pendingRef.current = text;
if (!isStreaming) {
if (rafRef.current !== null) {
cancelAnimationFrame(rafRef.current);
rafRef.current = null;
}
return;
}
if (rafRef.current === null) {
rafRef.current = requestAnimationFrame(() => {
rafRef.current = null;
setDisplayed(pendingRef.current);
});
}
}, [text, isStreaming]);
// Unmount cleanup: cancel the in-flight rAF and null the handle so a
// StrictMode remount isn't gated by a stale id. Separate from the scheduling
// effect so it doesn't cancel mid-stream and defeat the throttle.
useEffect(() => {
return () => {
if (rafRef.current !== null) {
cancelAnimationFrame(rafRef.current);
rafRef.current = null;
}
};
}, []);
if (isStreaming && text.startsWith(displayed)) {
return displayed;
}
return text;
}
const MarkdownTextImpl = () => {
const { text, status } = useMessagePartText();
// Parts are keyed by index, so switching conversations hands this instance a different
// message, and Streamdown only extends its parsed blocks: key it per message instead.
const messageId = useAuiState(({ message }) => message.id);
const displayText = useRafCoalescedText(text, status.type === "running");
const processedText = useMemo(
() => preprocessLaTeX(displayText),
[displayText],
);
const audioMatch = displayText.match(AUDIO_PLAYER_RE);
if (audioMatch) {
return <AudioPlayer src={audioMatch[1]} />;
}
return (
<div data-status={status.type} className="min-w-0 max-w-full">
<Streamdown
key={messageId}
mode="streaming"
isAnimating={status.type === "running"}
animated={STREAMDOWN_IMMEDIATE_UPDATES}
plugins={{ code, math, mermaid }}
components={STREAMDOWN_COMPONENTS}
urlTransform={safeMarkdownUrl}
controls={{
code: false,
mermaid: {
fullscreen: true,
download: true,
copy: false,
panZoom: true,
},
}}
shikiTheme={[unslothLightTheme, unslothDarkTheme]}
BlockComponent={StreamdownBlock}
>
{processedText}
</Streamdown>
</div>
);
};
export const MarkdownText = withSmoothContextProvider(MarkdownTextImpl);