184 lines
6.1 KiB
TypeScript
184 lines
6.1 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
/* eslint-disable react-hooks/exhaustive-deps */
|
|
import ReactMarkdown, { Components } from 'react-markdown'
|
|
import remarkGfm from 'remark-gfm'
|
|
import remarkEmoji from 'remark-emoji'
|
|
import remarkMath from 'remark-math'
|
|
import rehypeKatex from 'rehype-katex'
|
|
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter'
|
|
import * as prismStyles from 'react-syntax-highlighter/dist/cjs/styles/prism'
|
|
import { memo, useState, useMemo } from 'react'
|
|
import virtualizedRenderer from 'react-syntax-highlighter-virtualized-renderer'
|
|
import { getReadableLanguageName } from '@/lib/utils'
|
|
import { cn } from '@/lib/utils'
|
|
import { useCodeblock } from '@/hooks/useCodeblock'
|
|
import 'katex/dist/katex.min.css'
|
|
import { IconCopy, IconCopyCheck } from '@tabler/icons-react'
|
|
import rehypeRaw from 'rehype-raw'
|
|
|
|
interface MarkdownProps {
|
|
content: string
|
|
className?: string
|
|
components?: Components
|
|
enableRawHtml?: boolean
|
|
isUser?: boolean
|
|
}
|
|
|
|
function RenderMarkdownComponent({
|
|
content,
|
|
enableRawHtml,
|
|
className,
|
|
isUser,
|
|
components,
|
|
}: MarkdownProps) {
|
|
const { codeBlockStyle, showLineNumbers } = useCodeblock()
|
|
|
|
// State for tracking which code block has been copied
|
|
const [copiedId, setCopiedId] = useState<string | null>(null)
|
|
|
|
// Function to handle copying code to clipboard
|
|
const handleCopy = (code: string, id: string) => {
|
|
navigator.clipboard.writeText(code)
|
|
setCopiedId(id)
|
|
|
|
// Reset copied state after 2 seconds
|
|
setTimeout(() => {
|
|
setCopiedId(null)
|
|
}, 2000)
|
|
}
|
|
|
|
// Simple hash function for strings
|
|
const hashString = (str: string): string => {
|
|
let hash = 0
|
|
for (let i = 0; i < str.length; i++) {
|
|
const char = str.charCodeAt(i)
|
|
hash = (hash << 5) - hash + char
|
|
hash = hash & hash // Convert to 32bit integer
|
|
}
|
|
return Math.abs(hash).toString(36)
|
|
}
|
|
|
|
// Default components for syntax highlighting and emoji rendering
|
|
const defaultComponents: Components = useMemo(
|
|
() => ({
|
|
code: ({ className, children, ...props }) => {
|
|
const match = /language-(\w+)/.exec(className || '')
|
|
const language = match ? match[1] : ''
|
|
const isInline = !match || !language
|
|
|
|
const code = String(children).replace(/\n$/, '')
|
|
|
|
// Generate a stable ID based on code content and language
|
|
const codeId = `code-${hashString(code.substring(0, 40) + language)}`
|
|
|
|
const shouldVirtualize = code.split('\n').length > 300
|
|
|
|
return !isInline && !isUser ? (
|
|
<div className="relative overflow-hidden border rounded-md border-main-view-fg/2">
|
|
<div className="flex items-center justify-between px-4 py-2 bg-main-view/10">
|
|
<span className="font-medium text-xs font-sans">
|
|
{getReadableLanguageName(language)}
|
|
</span>
|
|
<button
|
|
onClick={() => handleCopy(code, codeId)}
|
|
className="flex items-center gap-1 text-xs font-sans transition-colors cursor-pointer"
|
|
>
|
|
{copiedId === codeId ? (
|
|
<>
|
|
<IconCopyCheck size={16} className="text-primary" />
|
|
<span>Copied!</span>
|
|
</>
|
|
) : (
|
|
<>
|
|
<IconCopy size={16} />
|
|
<span>Copy</span>
|
|
</>
|
|
)}
|
|
</button>
|
|
</div>
|
|
<SyntaxHighlighter
|
|
// @ts-expect-error - Type issues with style prop in react-syntax-highlighter
|
|
style={
|
|
prismStyles[
|
|
codeBlockStyle
|
|
.split('-')
|
|
.map((part: string, index: number) =>
|
|
index === 0
|
|
? part
|
|
: part.charAt(0).toUpperCase() + part.slice(1)
|
|
)
|
|
.join('') as keyof typeof prismStyles
|
|
] || prismStyles.oneLight
|
|
}
|
|
language={language}
|
|
showLineNumbers={showLineNumbers}
|
|
wrapLines={true}
|
|
// Temporary comment we try calculate main area width on __root
|
|
// lineProps={{
|
|
// style: { wordBreak: 'break-all', whiteSpace: 'pre-wrap' },
|
|
// }}
|
|
customStyle={{
|
|
margin: 0,
|
|
padding: '8px',
|
|
borderRadius: '0 0 4px 4px',
|
|
overflow: 'auto',
|
|
border: 'none',
|
|
}}
|
|
renderer={
|
|
shouldVirtualize
|
|
? (virtualizedRenderer() as (props: any) => React.ReactNode)
|
|
: undefined
|
|
}
|
|
PreTag="div"
|
|
CodeTag={'code'}
|
|
{...props}
|
|
>
|
|
{String(children).replace(/\n$/, '')}
|
|
</SyntaxHighlighter>
|
|
</div>
|
|
) : (
|
|
<code className={cn(className)}>{children}</code>
|
|
)
|
|
},
|
|
}),
|
|
[codeBlockStyle, showLineNumbers, copiedId, handleCopy, hashString]
|
|
)
|
|
|
|
// Memoize the remarkPlugins to prevent unnecessary re-renders
|
|
const remarkPlugins = useMemo(() => {
|
|
// Using a simpler configuration to avoid TypeScript errors
|
|
return [remarkGfm, remarkMath, remarkEmoji]
|
|
}, [])
|
|
|
|
// Memoize the rehypePlugins to prevent unnecessary re-renders
|
|
const rehypePlugins = useMemo(() => {
|
|
return enableRawHtml ? [rehypeKatex, rehypeRaw] : [rehypeKatex]
|
|
}, [enableRawHtml])
|
|
|
|
// Merge custom components with default components
|
|
const mergedComponents = useMemo(
|
|
() => ({
|
|
...defaultComponents,
|
|
...components,
|
|
}),
|
|
[defaultComponents, components]
|
|
)
|
|
|
|
// Render the markdown content
|
|
return (
|
|
<div className={cn('markdown break-words select-text', className)}>
|
|
<ReactMarkdown
|
|
remarkPlugins={remarkPlugins}
|
|
rehypePlugins={rehypePlugins}
|
|
components={mergedComponents}
|
|
>
|
|
{content}
|
|
</ReactMarkdown>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
// Use a simple memo without custom comparison to allow re-renders when content changes
|
|
// This is important for streaming content to render incrementally
|
|
export const RenderMarkdown = memo(RenderMarkdownComponent)
|