-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebar.tsx
223 lines (209 loc) · 7.46 KB
/
sidebar.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
'use client';
import Link from 'next/link';
import { MoreHorizontal, SquarePen, Trash2 } from 'lucide-react';
import { cn } from '@/lib/utils';
import { Button, buttonVariants } from '@/components/ui/button';
import { Message } from 'ai/react';
import Image from 'next/image';
import { useEffect, useState } from 'react';
import SidebarSkeleton from './sidebar-skeleton';
import { Avatar, AvatarFallback, AvatarImage } from './ui/avatar';
import UserSettings from './user-settings';
import { useLocalStorageData } from '@/app/hooks/useLocalStorageData';
import { ScrollArea, Scrollbar } from '@radix-ui/react-scroll-area';
import PullModel from './pull-model';
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
DialogTrigger,
} from './ui/dialog';
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuTrigger,
} from './ui/dropdown-menu';
import { TrashIcon } from '@radix-ui/react-icons';
import { useRouter } from 'next/navigation';
interface SidebarProps {
isCollapsed: boolean;
messages: Message[];
onClick?: () => void;
isMobile: boolean;
chatId: string;
setMessages: (messages: Message[]) => void;
closeSidebar?: () => void;
}
export function Sidebar({
messages,
isCollapsed,
isMobile,
chatId,
setMessages,
closeSidebar,
}: SidebarProps) {
const [localChats, setLocalChats] = useState<
{ chatId: string; messages: Message[] }[]
>([]);
const localChatss = useLocalStorageData('chat_', []);
const [selectedChatId, setSselectedChatId] = useState<string | null>(null);
const [isLoading, setIsLoading] = useState(true);
const router = useRouter();
useEffect(() => {
if (chatId) {
setSselectedChatId(chatId);
}
setLocalChats(getLocalstorageChats());
const handleStorageChange = () => {
setLocalChats(getLocalstorageChats());
};
window.addEventListener('storage', handleStorageChange);
return () => {
window.removeEventListener('storage', handleStorageChange);
};
}, []);
const getLocalstorageChats = (): {
chatId: string;
messages: Message[];
}[] => {
const chats = Object.keys(localStorage).filter((key) =>
key.startsWith('chat_')
);
if (chats.length === 0) {
setIsLoading(false);
}
// Map through the chats and return an object with chatId and messages
const chatObjects = chats.map((chat) => {
const item = localStorage.getItem(chat);
return item
? { chatId: chat, messages: JSON.parse(item) }
: { chatId: '', messages: [] };
});
// Sort chats by the createdAt date of the first message of each chat
chatObjects.sort((a, b) => {
const aDate = new Date(a.messages[0].createdAt);
const bDate = new Date(b.messages[0].createdAt);
return bDate.getTime() - aDate.getTime();
});
setIsLoading(false);
return chatObjects;
};
const handleDeleteChat = (chatId: string) => {
localStorage.removeItem(chatId);
setLocalChats(getLocalstorageChats());
};
return (
<div
data-collapsed={isCollapsed}
className="relative justify-between group lg:bg-accent/20 lg:dark:bg-card/35 flex flex-col h-full gap-4 p-2 data-[collapsed=true]:p-2 "
>
<div className=" flex flex-col justify-between p-2 max-h-fit overflow-y-auto">
<Button
onClick={() => {
router.push('/');
// Clear messages
setMessages([]);
if (closeSidebar) {
closeSidebar();
}
}}
variant="ghost"
className="flex justify-between w-full h-14 text-sm xl:text-lg font-normal items-center "
>
<div className="flex gap-3 items-center ">
{!isCollapsed && !isMobile && (
<Image
src="/ollama.png"
alt="AI"
width={28}
height={28}
className="dark:invert hidden 2xl:block"
/>
)}
New chat
</div>
<SquarePen size={18} className="shrink-0 w-4 h-4" />
</Button>
<div className="flex flex-col pt-10 gap-2">
<p className="pl-4 text-xs text-muted-foreground">Your chats</p>
{localChats.length > 0 && (
<div>
{localChats.map(({ chatId, messages }, index) => (
<Link
key={index}
href={`/${chatId.substr(5)}`}
className={cn(
{
[buttonVariants({ variant: 'secondaryLink' })]:
chatId.substring(5) === selectedChatId,
[buttonVariants({ variant: 'ghost' })]:
chatId.substring(5) !== selectedChatId,
},
'flex justify-between w-full h-14 text-base font-normal items-center '
)}
>
<div className="flex gap-3 items-center truncate">
<div className="flex flex-col">
<span className="text-xs font-normal ">
{messages.length > 0 ? messages[0].content : ''}
</span>
</div>
</div>
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button
variant="ghost"
className="flex justify-end items-center"
onClick={(e) => e.stopPropagation()}
>
<MoreHorizontal size={15} className="shrink-0" />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent className=" ">
<Dialog>
<DialogTrigger asChild>
<Button
variant="ghost"
className="w-full flex gap-2 hover:text-red-500 text-red-500 justify-start items-center"
onClick={(e) => e.stopPropagation()}
>
<Trash2 className="shrink-0 w-4 h-4" />
Delete chat
</Button>
</DialogTrigger>
<DialogContent>
<DialogHeader className="space-y-4">
<DialogTitle>Delete chat?</DialogTitle>
<DialogDescription>
Are you sure you want to delete this chat? This
action cannot be undone.
</DialogDescription>
<div className="flex justify-end gap-2">
<Button variant="outline">Cancel</Button>
<Button
variant="destructive"
onClick={() => handleDeleteChat(chatId)}
>
Delete
</Button>
</div>
</DialogHeader>
</DialogContent>
</Dialog>
</DropdownMenuContent>
</DropdownMenu>
</Link>
))}
</div>
)}
{isLoading && <SidebarSkeleton />}
</div>
</div>
<div className="justify-end px-2 py-2 w-full border-t">
<UserSettings />
</div>
</div>
);
}