mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
convo selection handling in progress
This commit is contained in:
parent
c794287ced
commit
d35ed31b20
5 changed files with 32 additions and 10 deletions
20
src/App.jsx
20
src/App.jsx
|
|
@ -4,18 +4,32 @@ import TextChat from './components/TextChat';
|
|||
import Nav from './components/Nav';
|
||||
import MobileNav from './components/MobileNav';
|
||||
import useSWR from 'swr';
|
||||
import useSWRMutation from 'swr/mutation';
|
||||
import axios from 'axios';
|
||||
|
||||
const fetcher = (url) => fetch(url).then((res) => res.json());
|
||||
|
||||
const App = () => {
|
||||
const [messages, setMessages] = useState([]);
|
||||
const [convo, setConvo] = useState({ conversationId: null, parentMessageId: null });
|
||||
const { data, error, isLoading, mutate } = useSWR('http://localhost:3050/convos', fetcher);
|
||||
console.log(data, isLoading);
|
||||
const { trigger, isMutating } = useSWRMutation('http://localhost:3050/messages', fetcher, {
|
||||
onSuccess: function (res) {
|
||||
console.log('success', res);
|
||||
// setMessages(res);
|
||||
}
|
||||
});
|
||||
|
||||
const onConvoClick = (conversationId, parentMessageId) => {
|
||||
setConvo({ conversationId, parentMessageId });
|
||||
trigger();
|
||||
// console.log(e, e.target);
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="flex h-screen">
|
||||
{/* <div className="w-80 bg-slate-800"></div> */}
|
||||
<Nav conversations={data}/>
|
||||
<Nav conversations={data} convoHandler={onConvoClick}/>
|
||||
{/* <div className="flex h-full flex-1 flex-col md:pl-[260px]"> */}
|
||||
<div className="flex h-full w-full flex-1 flex-col bg-gray-50 md:pl-[260px]">
|
||||
{/* <main className="relative h-full w-full transition-width flex flex-col overflow-hidden items-stretch flex-1"> */}
|
||||
|
|
@ -25,6 +39,8 @@ const App = () => {
|
|||
messages={messages}
|
||||
setMessages={setMessages}
|
||||
reloadConvos={mutate}
|
||||
convo={convo}
|
||||
setConvo={setConvo}
|
||||
/>
|
||||
{/* </main> */}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue