blob: 11c3b5dd1cf13a8c9897ee659cd8c5bde2ba5fb6 (
plain)
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
|
<script lang="ts">
import { untrack } from "svelte";
import { chatStore } from "../chat.svelte.js";
import { wsClient } from "../ws.svelte.js";
import ChatMessageComponent from "./ChatMessage.svelte";
let messagesEl: HTMLDivElement | undefined;
let userScrolledUp = $state(false);
let isAutoScrolling = false;
function isNearBottom(el: HTMLElement): boolean {
return el.scrollHeight - el.scrollTop - el.clientHeight < 64;
}
function scrollToBottom(animate = false) {
if (!messagesEl) return;
messagesEl.scrollTo({
top: messagesEl.scrollHeight,
behavior: animate ? "smooth" : "instant",
});
}
function handleScroll() {
if (!messagesEl || isAutoScrolling) return;
userScrolledUp = !isNearBottom(messagesEl);
}
function resumeAutoScroll() {
userScrolledUp = false;
isAutoScrolling = true;
scrollToBottom(true);
}
$effect(() => {
// Trigger on any message appended; track length explicitly
const count = chatStore.messages.length;
void count;
if (messagesEl) {
untrack(() => {
if (!userScrolledUp) scrollToBottom(false);
});
}
});
</script>
<div class="flex flex-col h-full">
<!-- Status bar -->
<div class="flex items-center gap-3 px-4 py-2 bg-base-200 border-b border-base-300 text-xs">
<span class="flex items-center gap-1.5">
<span class="status status-sm {wsClient.connectionStatus === 'connected' ? 'status-success' : wsClient.connectionStatus === 'connecting' ? 'status-warning' : 'status-error'}"></span>
<span class="capitalize text-base-content/70">{wsClient.connectionStatus}</span>
</span>
<span class="text-base-content/50">|</span>
<span class="text-base-content/70">
Agent:
<span
class="font-semibold {chatStore.agentStatus === 'running'
? 'text-warning'
: chatStore.agentStatus === 'error'
? 'text-error'
: 'text-success'}"
>
{chatStore.agentStatus === "running" ? "running..." : chatStore.agentStatus}
</span>
</span>
</div>
<!-- Messages -->
<div class="relative flex-1 min-h-0">
<div
bind:this={messagesEl}
class="h-full overflow-y-auto p-4"
onscroll={handleScroll}
onscrollend={() => {
isAutoScrolling = false;
}}
>
{#if chatStore.messages.length === 0}
<div class="flex items-center justify-center h-full text-base-content/40 text-sm">
Send a message to start a conversation
</div>
{/if}
{#each chatStore.messages as message (message.id)}
<ChatMessageComponent {message} />
{/each}
</div>
<!-- Scroll-to-bottom button -->
<button
type="button"
class="absolute bottom-0 left-1/2 -translate-x-1/2 mb-4 btn btn-circle btn-sm shadow-lg transition-opacity duration-200 {userScrolledUp ? 'opacity-100' : 'opacity-0 pointer-events-none'}"
onclick={resumeAutoScroll}
aria-label="Scroll to bottom"
tabindex={userScrolledUp ? 0 : -1}
>
↓
</button>
</div>
</div>
|