-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebar.tsx
157 lines (146 loc) · 4.45 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
'use client';
import { Button } from '@/components/ui/button';
import Image from 'next/image';
import { memo, useCallback, useState } from 'react';
import { SquarePen } from 'lucide-react';
import SidebarSkeleton from './sidebar-skeleton';
import UserSettings from './user-settings';
import { SideBarItem } from './sidebar-item';
import { Chat } from '@/graphql/type';
import { EventEnum } from './enum';
import {
SidebarContent,
SidebarGroup,
SidebarGroupContent,
SidebarTrigger,
Sidebar,
SidebarRail,
SidebarFooter,
} from './ui/sidebar';
import { cn } from '@/lib/utils';
interface SidebarProps {
isCollapsed: boolean;
setIsCollapsed: (value: boolean) => void; // Parent setter to update collapse state
isMobile: boolean;
currentChatId?: string;
chatListUpdated: boolean;
setChatListUpdated: (value: boolean) => void;
chats: Chat[];
loading: boolean;
error: any;
onRefetch: () => void;
}
export function ChatSideBar({
isCollapsed,
setIsCollapsed,
isMobile,
chatListUpdated,
setChatListUpdated,
chats,
loading,
error,
onRefetch,
}: SidebarProps) {
// Use a local state only for the currently selected chat.
const [currentChatid, setCurrentChatid] = useState('');
// Handler for starting a new chat.
const handleNewChat = useCallback(() => {
window.history.replaceState({}, '', '/');
setCurrentChatid('');
const event = new Event(EventEnum.NEW_CHAT);
window.dispatchEvent(event);
}, []);
if (loading) return <SidebarSkeleton />;
if (error) {
console.error('Error loading chats:', error);
return null;
}
console.log(
'ChatSideBar state: isCollapsed:',
isCollapsed,
'currentChatid:',
currentChatid
);
return (
<div
data-collapsed={isCollapsed}
className="relative justify-between group lg:bg-accent/0 lg:dark:bg-card/0 flex flex-col h-full"
>
<Sidebar collapsible="icon" side="left">
{/* Toggle button: Clicking this will toggle the collapse state */}
<SidebarTrigger
className="lg:flex items-center justify-center cursor-pointer p-2 ml-3.5 mt-2"
onClick={() => setIsCollapsed(!isCollapsed)}
/>
<Button
onClick={handleNewChat}
size="setting"
variant="ghost"
className="flex justify-between w-[90%] h-14 text-sm xl:text-lg font-normal items-center ml-[5%]"
>
<Image
src="/codefox.svg"
alt="AI"
width={48}
height={48}
className="flex-shrink-0 dark:invert"
/>
{/* Only show extra text/icons when the sidebar is expanded */}
{!isCollapsed && (
<div
className={cn('flex items-center', {
'gap-7': !isMobile,
'gap-4': isMobile,
})}
>
New chat
{(!isCollapsed || isMobile) && (
<SquarePen className="shrink-0 m-3" />
)}
</div>
)}
</Button>
<SidebarContent>
<SidebarGroup>
<SidebarGroupContent>
{loading
? 'Loading...'
: !isCollapsed &&
chats.map((chat) => (
<SideBarItem
key={chat.id}
id={chat.id}
currentChatId={currentChatid}
title={chat.title}
onSelect={() => {
window.history.replaceState({}, '', `/?id=${chat.id}`);
setCurrentChatid(chat.id);
}}
refetchChats={onRefetch}
/>
))}
</SidebarGroupContent>
</SidebarGroup>
</SidebarContent>
<SidebarFooter>
<UserSettings isSimple={false} />
</SidebarFooter>
<SidebarRail
// Optional: Provide a secondary trigger if needed.
setIsSimple={() => setIsCollapsed(!isCollapsed)}
isSimple={false}
/>
</Sidebar>
</div>
);
}
export default memo(ChatSideBar, (prevProps, nextProps) => {
return (
prevProps.isCollapsed === nextProps.isCollapsed &&
prevProps.isMobile === nextProps.isMobile &&
prevProps.chatListUpdated === nextProps.chatListUpdated &&
prevProps.loading === nextProps.loading &&
prevProps.error === nextProps.error &&
JSON.stringify(prevProps.chats) === JSON.stringify(nextProps.chats)
);
});