mirror of
https://github.com/EthanMarti/infio-copilot.git
synced 2026-01-17 00:33:49 +00:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { ChevronDown, ChevronRight } from 'lucide-react'
|
|
import { PropsWithChildren, useEffect, useRef, useState } from 'react'
|
|
|
|
import { useDarkModeContext } from '../../contexts/DarkModeContext'
|
|
|
|
import { MemoizedSyntaxHighlighterWrapper } from './SyntaxHighlighterWrapper'
|
|
|
|
export default function MarkdownReasoningBlock({
|
|
reasoningContent,
|
|
}: PropsWithChildren<{
|
|
reasoningContent: string
|
|
}>) {
|
|
const { isDarkMode } = useDarkModeContext()
|
|
const containerRef = useRef<HTMLDivElement>(null)
|
|
const [isOpen, setIsOpen] = useState(true)
|
|
|
|
useEffect(() => {
|
|
if (containerRef.current) {
|
|
containerRef.current.scrollTop = containerRef.current.scrollHeight
|
|
}
|
|
}, [reasoningContent])
|
|
|
|
return (
|
|
reasoningContent && (
|
|
<div
|
|
className={`infio-chat-code-block has-filename infio-reasoning-block`}
|
|
>
|
|
<div className={'infio-chat-code-block-header'}>
|
|
<div className={'infio-chat-code-block-header-filename'}>
|
|
Reasoning
|
|
</div>
|
|
<button
|
|
className="clickable-icon infio-chat-list-dropdown"
|
|
onClick={() => setIsOpen(!isOpen)}
|
|
>
|
|
{isOpen ? <ChevronDown size={16} /> : <ChevronRight size={16} />}
|
|
</button>
|
|
</div>
|
|
<div
|
|
ref={containerRef}
|
|
className="infio-reasoning-content-wrapper"
|
|
>
|
|
<MemoizedSyntaxHighlighterWrapper
|
|
isDarkMode={isDarkMode}
|
|
language="markdown"
|
|
hasFilename={true}
|
|
wrapLines={true}
|
|
isOpen={isOpen}
|
|
>
|
|
{reasoningContent}
|
|
</MemoizedSyntaxHighlighterWrapper>
|
|
</div>
|
|
</div>
|
|
)
|
|
)
|
|
}
|