mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-03 21:03:08 +00:00
Add markdown rendering to interview-view using Markdown component from ui/markdown
Co-authored-by: GTheMachine <156854865+GTheMachine@users.noreply.github.com>
This commit is contained in:
@@ -17,6 +17,7 @@ import {
|
|||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import { getElectronAPI } from "@/lib/electron";
|
import { getElectronAPI } from "@/lib/electron";
|
||||||
|
import { Markdown } from "@/components/ui/markdown";
|
||||||
|
|
||||||
interface InterviewMessage {
|
interface InterviewMessage {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -100,10 +101,15 @@ export function InterviewView() {
|
|||||||
// Auto-scroll to bottom when messages change
|
// Auto-scroll to bottom when messages change
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (messagesContainerRef.current) {
|
if (messagesContainerRef.current) {
|
||||||
messagesContainerRef.current.scrollTo({
|
// Use a small delay to ensure DOM is updated
|
||||||
top: messagesContainerRef.current.scrollHeight,
|
setTimeout(() => {
|
||||||
behavior: "smooth",
|
if (messagesContainerRef.current) {
|
||||||
});
|
messagesContainerRef.current.scrollTo({
|
||||||
|
top: messagesContainerRef.current.scrollHeight,
|
||||||
|
behavior: "smooth",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, 100);
|
||||||
}
|
}
|
||||||
}, [messages]);
|
}, [messages]);
|
||||||
|
|
||||||
@@ -437,10 +443,15 @@ export function InterviewView() {
|
|||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<CardContent className="p-3">
|
<CardContent className="p-3">
|
||||||
<p className={cn(
|
{message.role === "assistant" ? (
|
||||||
"text-sm whitespace-pre-wrap",
|
<Markdown className="text-sm text-primary prose-headings:text-primary prose-strong:text-primary prose-code:text-primary">
|
||||||
message.role === "assistant" && "text-primary"
|
{message.content}
|
||||||
)}>{message.content}</p>
|
</Markdown>
|
||||||
|
) : (
|
||||||
|
<p className="text-sm whitespace-pre-wrap">
|
||||||
|
{message.content}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
<p
|
<p
|
||||||
className={cn(
|
className={cn(
|
||||||
"text-xs mt-2",
|
"text-xs mt-2",
|
||||||
|
|||||||
Reference in New Issue
Block a user