summaryrefslogtreecommitdiff
path: root/ui/lib/components/MessageInput.svelte
blob: 220ed3bf32d8d0aad06501803713ad91744aeb3c (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
<script>
	import { postToChannel } from '$lib/apiServer';

	let { channel } = $props();

	let form;
	let value = $state('');
	let pending = false;

	let disabled = $derived(pending);

	async function onSubmit(event) {
		event.preventDefault();
		pending = true;
		await postToChannel(channel, value);
		form.reset();
		pending = false;
	}

	function onKeyDown(event) {
		if (!event.altKey && event.key === 'Enter') {
			onSubmit(event);
		}
	}
</script>

<form bind:this={form} onsubmit={onSubmit} class="flex flex-row flex-nowrap">
	<textarea
		onkeydown={onKeyDown}
		bind:value
		{disabled}
		type="search"
		class="flex-auto h-6 input rounded-r-none"
	></textarea>
	<button
		color="primary variant-filled-secondary"
		type="submit"
		class="flex-none w-6 h-6 btn-icon variant-filled rounded-l-none">&raquo;</button
	>
</form>