mirror of
https://github.com/EthanMarti/infio-copilot.git
synced 2026-01-16 16:31:56 +00:00
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import { AlignLeft, ChevronDown, ChevronRight } from 'lucide-react'
|
|
import { PropsWithChildren, useEffect, useRef, useState } from 'react'
|
|
|
|
import { useDarkModeContext } from "../../../contexts/DarkModeContext"
|
|
import { t } from '../../../lang/helpers'
|
|
|
|
import { MemoizedSyntaxHighlighterWrapper } from "./SyntaxHighlighterWrapper"
|
|
|
|
export default function MarkdownPlanBlock({
|
|
planContent,
|
|
}: PropsWithChildren<{
|
|
planContent: string
|
|
}>) {
|
|
const { isDarkMode } = useDarkModeContext()
|
|
const containerRef = useRef<HTMLDivElement>(null)
|
|
const [isOpen, setIsOpen] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (containerRef.current) {
|
|
containerRef.current.scrollTop = containerRef.current.scrollHeight
|
|
}
|
|
}, [planContent])
|
|
|
|
return (
|
|
planContent && (
|
|
<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'}>
|
|
<AlignLeft size={12} className="infio-chat-code-block-header-icon" />
|
|
{t('chat.reactMarkdown.plan')}
|
|
</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}
|
|
>
|
|
{planContent}
|
|
</MemoizedSyntaxHighlighterWrapper>
|
|
</div>
|
|
</div>
|
|
)
|
|
)
|
|
}
|