mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
update chat panel view
This commit is contained in:
parent
caae2bcfc0
commit
f16562685e
1 changed files with 63 additions and 0 deletions
63
surfsense_web/components/chat/ChatPanel/ChatPanelView.tsx
Normal file
63
surfsense_web/components/chat/ChatPanel/ChatPanelView.tsx
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
"use client";
|
||||
|
||||
import { Pencil, Podcast } from "lucide-react";
|
||||
import { useContext, useTransition } from "react";
|
||||
import { cn } from "@/lib/utils";
|
||||
import { chatInterfaceContext } from "../ChatInterface";
|
||||
import type { GeneratePodcastRequest } from "./actions";
|
||||
import { ConfigModal } from "./ConfigModal";
|
||||
|
||||
interface ChatPanelViewProps {
|
||||
generatePodcast: (request: GeneratePodcastRequest) => Promise<void>;
|
||||
}
|
||||
|
||||
export function ChatPanelView(props: ChatPanelViewProps) {
|
||||
const context = useContext(chatInterfaceContext);
|
||||
if (!context) {
|
||||
throw new Error("chatInterfaceContext must be used within a ChatProvider");
|
||||
}
|
||||
|
||||
const { isChatPannelOpen, setIsChatPannelOpen } = context;
|
||||
const { generatePodcast } = props;
|
||||
|
||||
const [isGeneratingPodcast, startGeneratingPodcast] = useTransition();
|
||||
|
||||
const handleGeneratePodcast = () => {
|
||||
startGeneratingPodcast(() => {
|
||||
generatePodcast({
|
||||
type: "CHAT",
|
||||
ids: [1],
|
||||
search_space_id: 1,
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="w-full">
|
||||
<div
|
||||
className={cn(
|
||||
"w-full h-full p-4 border-b",
|
||||
!isChatPannelOpen && "flex items-center justify-center"
|
||||
)}
|
||||
>
|
||||
{isChatPannelOpen ? (
|
||||
<div className=" space-y-3 rounded-xl p-3 bg-gradient-to-r from-slate-400/50 to-slate-200/50 dark:from-slate-400/30 dark:to-slate-800/60">
|
||||
<div className="w-full flex items-center justify-between">
|
||||
<Podcast strokeWidth={1} />
|
||||
<ConfigModal generatePodcast={generatePodcast} />
|
||||
</div>
|
||||
<p>Generate Podcast</p>
|
||||
</div>
|
||||
) : (
|
||||
<button
|
||||
title="Generate Podcast"
|
||||
type="button"
|
||||
onClick={() => setIsChatPannelOpen(!isChatPannelOpen)}
|
||||
>
|
||||
<Podcast strokeWidth={1} />
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue