blob: b9299235a2d5e5d65da4dd44ae1dcbc1b437343b (
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
|
<script lang="ts">
import { chatStore } from "../chat.svelte.js";
let inputEl: HTMLInputElement | undefined;
let inputValue = $state("");
const isDisabled = $derived(chatStore.agentStatus === "running");
$effect(() => {
inputEl?.focus();
});
function handleKeydown(e: KeyboardEvent) {
if (e.key === "Enter" && !e.shiftKey) {
e.preventDefault();
submit();
}
}
function submit() {
const text = inputValue.trim();
if (!text || isDisabled) return;
inputValue = "";
chatStore.sendMessage(text);
}
</script>
<div class="flex items-center gap-2 p-3 border-t border-base-300 bg-base-100">
<input
bind:this={inputEl}
bind:value={inputValue}
type="text"
placeholder={isDisabled ? "Agent is running..." : "Type a message..."}
class="input input-bordered flex-1"
disabled={isDisabled}
onkeydown={handleKeydown}
/>
<button
type="button"
class="btn btn-primary"
disabled={isDisabled || !inputValue.trim()}
onclick={submit}
>
Send
</button>
</div>
|