-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHomeContent.tsx
291 lines (259 loc) · 7.81 KB
/
HomeContent.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
'use client';
import React, { useEffect, useRef, useState } from 'react';
import { useMutation, useSubscription, gql } from '@apollo/client';
import { ChatLayout } from '@/components/chat/chat-layout';
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogDescription,
} from '@/components/ui/dialog';
import UsernameForm from '@/components/username-form';
import { toast } from 'sonner';
import { Message } from '@/components/types';
import { useModels } from './hooks/useModels';
import { CHAT_STREAM, CREATE_CHAT, TRIGGER_CHAT } from '@/graphql/request';
// Define stream states to manage chat flow
enum StreamStatus {
IDLE = 'IDLE',
STREAMING = 'STREAMING',
DONE = 'DONE',
}
// GraphQL input types
interface ChatInput {
chatId: string;
message: string;
model: string;
}
interface SubscriptionState {
enabled: boolean;
variables: {
input: ChatInput;
} | null;
}
export default function HomeContent() {
// Core message states
const [messages, setMessages] = useState<Message[]>([]);
const [input, setInput] = useState('');
const formRef = useRef<HTMLFormElement>(null);
// Loading and stream control states
const [loadingSubmit, setLoadingSubmit] = useState(false);
const [streamStatus, setStreamStatus] = useState<StreamStatus>(
StreamStatus.IDLE
);
// Chat session states
const [chatId, setChatId] = useState<string>('');
const { models } = useModels();
const [selectedModel, setSelectedModel] = useState<string>(
models[0] || 'Loading models'
);
// Welcome dialog state
const [open, setOpen] = useState(false);
// Subscription state management
const [subscription, setSubscription] = useState<SubscriptionState>({
enabled: false,
variables: null,
});
const [triggerChat] = useMutation(TRIGGER_CHAT, {
onCompleted: () => {
setStreamStatus(StreamStatus.STREAMING);
},
onError: () => {
setStreamStatus(StreamStatus.IDLE);
finishChatResponse();
},
});
// Subscribe to chat stream
const { error: subError } = useSubscription(CHAT_STREAM, {
skip: !subscription.enabled || !subscription.variables,
variables: subscription.variables,
onSubscriptionData: ({ subscriptionData }) => {
const chatStream = subscriptionData?.data?.chatStream;
if (!chatStream) return;
// Set loading state to false when first data arrives
if (streamStatus === StreamStatus.STREAMING && loadingSubmit) {
setLoadingSubmit(false);
}
// Handle stream completion
if (chatStream.status === StreamStatus.DONE) {
setStreamStatus(StreamStatus.DONE);
finishChatResponse();
return;
}
const content = chatStream.choices?.[0]?.delta?.content;
// Update message content
if (content) {
setMessages((prev) => {
const lastMsg = prev[prev.length - 1];
if (lastMsg?.role === 'assistant') {
// Append content to existing assistant message
return [
...prev.slice(0, -1),
{ ...lastMsg, content: lastMsg.content + content },
];
} else {
// Create new assistant message
return [
...prev,
{
id: chatStream.id,
role: 'assistant',
content,
createdAt: new Date(chatStream.created * 1000).toISOString(),
},
];
}
});
}
// Handle message completion
if (chatStream.choices?.[0]?.finishReason === 'stop') {
setStreamStatus(StreamStatus.DONE);
finishChatResponse();
}
},
onError: (error) => {
toast.error('Connection error. Please try again.');
setStreamStatus(StreamStatus.IDLE);
finishChatResponse();
},
});
// Initialize chat stream
const startChatStream = async (currentChatId: string, message: string) => {
try {
const input: ChatInput = {
chatId: currentChatId,
message,
model: selectedModel,
};
setStreamStatus(StreamStatus.STREAMING);
setSubscription({
enabled: true,
variables: { input },
});
// Ensure subscription is set up before triggering
await new Promise((resolve) => setTimeout(resolve, 100));
await triggerChat({ variables: { input } });
} catch (err) {
toast.error('Failed to start chat');
setStreamStatus(StreamStatus.IDLE);
finishChatResponse();
}
};
// Create new chat session
const [createChat] = useMutation(CREATE_CHAT, {
onCompleted: async (data) => {
const newChatId = data.createChat.id;
setChatId(newChatId);
await startChatStream(newChatId, input);
},
onError: () => {
toast.error('Failed to create chat');
setStreamStatus(StreamStatus.IDLE);
setLoadingSubmit(false);
},
});
// Reset states after response completion
const finishChatResponse = () => {
setLoadingSubmit(false);
setSubscription({
enabled: false,
variables: null,
});
if (streamStatus === StreamStatus.DONE) {
setStreamStatus(StreamStatus.IDLE);
}
};
const handleInputChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
setInput(e.target.value);
};
// Handle message submission
const onSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
if (!input.trim() || loadingSubmit) return;
setLoadingSubmit(true);
// Add user message immediately
const newMessage: Message = {
id: chatId || 'temp-id',
role: 'user',
content: input,
createdAt: new Date().toISOString(),
};
setMessages((prev) => [...prev, newMessage]);
// Handle new or existing chat
if (!chatId) {
try {
await createChat({
variables: {
input: {
title: input.slice(0, 50),
},
},
});
} catch (error) {
setLoadingSubmit(false);
return;
}
} else {
await startChatStream(chatId, input);
}
setInput('');
};
// Stop message generation
const stop = () => {
if (streamStatus === StreamStatus.STREAMING) {
setSubscription({
enabled: false,
variables: null,
});
setStreamStatus(StreamStatus.IDLE);
setLoadingSubmit(false);
toast.info('Message generation stopped');
}
};
// Handle welcome dialog
const onOpenChange = (isOpen: boolean) => {
const username = localStorage.getItem('ollama_user');
if (username) return setOpen(isOpen);
localStorage.setItem('ollama_user', 'Anonymous');
window.dispatchEvent(new Event('storage'));
setOpen(isOpen);
};
// Monitor subscription errors
useEffect(() => {
if (subError) {
console.error('Subscription error:', subError);
}
}, [subError]);
return (
<main className="flex h-[calc(100dvh)] flex-col items-center">
<Dialog open={open} onOpenChange={onOpenChange}>
<ChatLayout
chatId={chatId}
setSelectedModel={setSelectedModel}
messages={messages}
input={input}
handleInputChange={handleInputChange}
handleSubmit={onSubmit}
loadingSubmit={loadingSubmit}
stop={stop}
navCollapsedSize={10}
defaultLayout={[30, 160]}
formRef={formRef}
setMessages={setMessages}
setInput={setInput}
/>
<DialogContent className="flex flex-col space-y-4">
<DialogHeader className="space-y-2">
<DialogTitle>Welcome to Ollama!</DialogTitle>
<DialogDescription>
Enter your name to get started. This is just to personalize your
experience.
</DialogDescription>
<UsernameForm setOpen={setOpen} />
</DialogHeader>
</DialogContent>
</Dialog>
</main>
);
}