-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathJacChatbot.cl.jac
More file actions
412 lines (386 loc) · 13.9 KB
/
Copy pathJacChatbot.cl.jac
File metadata and controls
412 lines (386 loc) · 13.9 KB
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# Main chatbot page component following complete specification
import from react { useState, useRef, useEffect }
import from "@jac/runtime" { jacIsLoggedIn }
import from "@mantine/core" { ScrollArea }
import from "@tabler/icons-react" { IconBook, IconX, IconMenu2 }
import from ..hooks.useChat { useChat }
import from ..components.ChatMessage { ChatMessage }
import from ..components.ChatInput { ChatInput }
import from ..components.Sidebar { Sidebar }
import from ..components.DocumentationPanel { DocumentationPanel }
# Main Jac GPT Chatbot component (Complete Specification)
def:pub JacChatbot() -> any {
has sidebarOpen: bool = False;
has docPanelOpen: bool = False;
# Color scheme from specification
BG = "#141414"; # main background
BORDER = "#374151"; # gray-700
TEXT = "#ffffff";
TEXT_SECONDARY = "#d1d5db"; # gray-300
MUTED = "#9ca3af"; # gray-400
ORANGE = "#f97316"; # primary accent
chat = useChat();
isAuthenticated = jacIsLoggedIn();
scrollAreaRef = useRef(None);
viewportRef = useRef(None);
has spacerHeight: int = 0;
# Add CSS animations on mount
useEffect(lambda -> None {
# Add keyframes for animations if not already present
styleId = "chat-animations";
if not document.getElementById(styleId) {
style = document.createElement("style");
style.id = styleId;
style.textContent = """
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes dotBounce {
0%, 60%, 100% {
transform: translateY(0);
}
30% {
transform: translateY(-4px);
}
}
""";
document.head.appendChild(style);
}
}, []);
# Dynamically calculate spacer height so the latest user message can scroll to top
useEffect(lambda -> None {
viewport = viewportRef.current;
msgEl = chat.messagesEndRef.current;
if not viewport or not msgEl {
if spacerHeight != 0 {
spacerHeight = 0;
}
return;
}
vpHeight = viewport.clientHeight;
# Get message's absolute position within the scroll content
msgTop = msgEl.getBoundingClientRect().top - viewport.getBoundingClientRect().top + viewport.scrollTop;
# Content height without the current spacer
contentHeight = viewport.scrollHeight - spacerHeight;
# Only enough spacer to allow scrollIntoView to bring the message to the top
needed = Math.max(0, Math.ceil(msgTop + vpHeight - contentHeight));
if needed != spacerHeight {
spacerHeight = needed;
}
}, [chat.messages, spacerHeight]);
def toggleSidebar() -> None {
sidebarOpen = not sidebarOpen;
}
def toggleDocPanel() -> None {
docPanelOpen = not docPanelOpen;
}
# Find last user message id for scroll targeting
lastUserMsgId = None;
for msg in chat.messages {
if msg.isUser {
lastUserMsgId = msg.id;
}
}
# Build message items
messageItems = [];
for msg in chat.messages {
msgRef = None;
if msg.id == lastUserMsgId {
msgRef = chat.messagesEndRef;
}
messageItems.push(<div key={msg.id} ref={msgRef} style={{"animation": "fadeIn 0.3s ease"}}>
<ChatMessage
message={msg.content}
isUser={msg.isUser}
timestamp={msg.timestamp}
/>
</div>);
}
# Loading indicator with bouncing dots (sequential bounce)
loadingIndicator = <div style={{
"paddingTop": "16px",
"paddingBottom": "16px",
"paddingLeft": "8px",
"paddingRight": "8px",
"animation": "fadeIn 0.3s ease"
}}>
<div style={{
"display": "flex",
"alignItems": "center",
"gap": "8px"
}}>
<div style={{
"display": "flex",
"gap": "4px",
"alignItems": "flex-end"
}}>
{[0, 1, 2].map(lambda i: int -> any {
delays = ["0s", "0.15s", "0.3s"];
return <div
key={i}
style={{
"width": "6px",
"height": "6px",
"borderRadius": "50%",
"backgroundColor": ORANGE,
"animation": "dotBounce 1.1s ease-in-out infinite",
"animationDelay": delays[i]
}}
/>;
})}
</div>
<span style={{
"fontSize": "14px",
"color": MUTED,
"fontWeight": "400",
"marginLeft": "8px"
}}>
Thinking...
</span>
</div>
</div>;
# Check if we have messages
hasMessages = chat.messages.length > 0;
loadingContent = None;
if chat.isLoading {
loadingContent = loadingIndicator;
}
# Messages content or empty state
mainContent = None;
if hasMessages {
# Active conversation - messages area
mainContent = <ScrollArea ref={scrollAreaRef} viewportRef={viewportRef} style={{"flex": "1", "paddingLeft": "16px", "paddingRight": "16px"}} type="scroll">
<div style={{
"maxWidth": "768px",
"margin": "0 auto",
"paddingTop": "16px",
"paddingBottom": "16px",
"minWidth": "0",
"overflow": "hidden"
}}>
<div style={{
"display": "flex",
"flexDirection": "column",
"gap": "8px"
}}>
{messageItems}
{loadingContent}
<div style={{"height": String(spacerHeight) + "px"}} />
</div>
</div>
</ScrollArea>;
} else {
# Empty state
mainContent = <div style={{
"flex": "1",
"display": "flex",
"flexDirection": "column",
"alignItems": "center",
"justifyContent": "center",
"paddingLeft": "16px",
"paddingRight": "16px",
"marginTop": "-96px"
}}>
<div style={{
"maxWidth": "768px",
"width": "100%",
"margin": "0 auto",
"display": "flex",
"flexDirection": "column",
"alignItems": "center",
"justifyContent": "center"
}}>
<h1 style={{
"fontSize": "30px",
"color": TEXT_SECONDARY,
"fontWeight": "500",
"fontFamily": "'Inter, sans-serif'",
"marginBottom": "36px",
"textAlign": "center"
}}>
How can I help you today?
</h1>
<div style={{"width": "100%"}}>
<ChatInput
onSendMessage={chat.handleSendMessage}
disabled={False}
placeholder="Ask about Jac syntax, functions, loops, classes, or request code examples..."
isLoading={chat.isLoading}
onStop={chat.handleStopGeneration}
/>
<div style={{
"display": "flex",
"gap": "12px",
"marginTop": "2px",
"flexWrap": "wrap",
"justifyContent": "center"
}}>
{["What is by llm?", "What are walkers?", "What are nodes?"].map(lambda text: str -> any {
return <button
key={text}
onClick={lambda -> None {
chat.handleSendMessage(text);
}}
style={{
"padding": "10px 18px",
"border": "none",
"borderRadius": "24px",
"background": "rgba(255, 255, 255, 0.05)",
"color": TEXT_SECONDARY,
"cursor": "pointer",
"fontSize": "16px",
"transition": "all 0.2s ease",
"fontFamily": "Inter"
}}
onMouseEnter={lambda e: any -> None {
e.target.style.background = "rgba(249, 115, 22, 0.15)";
}}
onMouseLeave={lambda e: any -> None {
e.target.style.background = "rgba(255, 255, 255, 0.05)";
}}
>
{text}
</button>;
})}
</div>
</div>
</div>
</div>;
}
# Layout widths when docs open
chatContainerStyle = {
"flex": "1",
"display": "flex",
"flexDirection": "column",
"minWidth": "0",
"transition": "all 0.3s ease"
};
if docPanelOpen {
chatContainerStyle["width"] = "50%";
}
# Doc panel element
docPanelElement = None;
if docPanelOpen {
docPanelElement = <div style={{
"width": "50%",
"borderLeft": "1px solid " + BORDER,
"background": BG
}}>
<DocumentationPanel
message={chat.lastUserMessage}
suggestions={chat.docSuggestions}
isVisible={docPanelOpen}
onToggle={toggleDocPanel}
/>
</div>;
}
# Mobile menu button (visible only on mobile)
mobileMenuButton = <button
onClick={toggleSidebar}
style={{
"position": "fixed",
"top": "8px",
"left": "8px",
"zIndex": "40",
"display": "flex",
"alignItems": "center",
"justifyContent": "center",
"width": "40px",
"height": "40px",
"border": "none",
"borderRadius": "8px",
"background": "rgba(55, 65, 81, 0.9)",
"color": TEXT,
"cursor": "pointer"
}}
>
<IconMenu2 size={20} />
</button>;
# Header bar (desktop only - uses media query)
headerBar = <div style={{
"display": "flex",
"alignItems": "center",
"justifyContent": "space-between",
"padding": "8px",
"borderBottom": "1px solid " + BORDER,
"background": BG
}}>
<div style={{
"display": "flex",
"alignItems": "center",
"gap": "12px"
}}>
<img
src="/logo.png"
style={{
"width": "32px",
"height": "32px",
"objectFit": "contain"
}}
/>
<h1 style={{
"fontSize": "20px",
"fontWeight": "600",
"color": TEXT
}}>
Jac GPT
</h1>
</div>
<button
onClick={toggleDocPanel}
style={{
"display": "flex",
"alignItems": "center",
"gap": "8px",
"padding": "8px 16px",
"border": (("1px solid " + ORANGE if docPanelOpen else "1px solid " + BORDER)),
"borderRadius": "8px",
"background": ((ORANGE if docPanelOpen else "transparent")),
"color": TEXT,
"cursor": "pointer",
"fontSize": "14px",
"transition": "all 0.2s ease"
}}
>
{((<IconX size={16} />) if docPanelOpen else (<IconBook size={16} />))}
<span>{(("Hide Docs") if docPanelOpen else ("Show Docs"))}</span>
</button>
</div>;
return <div style={{
"display": "flex",
"height": "100vh",
"background": BG
}}>
<Sidebar
isOpen={sidebarOpen}
onToggle={toggleSidebar}
onNewChat={chat.handleNewChat}
chatSessions={chat.chatSessions}
currentSessionId={chat.sessionId}
onLoadSession={chat.handleLoadSession}
onDeleteSession={chat.handleDeleteSession}
isLoading={chat.isLoading}
messageCount={chat.messageCount}
maxFreeMessages={chat.maxFreeMessages}
/>
<div style={{"flex": "1", "display": "flex", "overflow": "hidden"}}>
<div style={chatContainerStyle}>
{mobileMenuButton}
{headerBar}
{mainContent}
{(
<ChatInput
onSendMessage={chat.handleSendMessage}
disabled={False}
placeholder="Ask about Jac syntax, functions, loops, classes, or request code examples..."
isLoading={chat.isLoading}
onStop={chat.handleStopGeneration}
/>
if hasMessages else None
)}
</div>
{docPanelElement}
</div>
</div>;
}