blob: 6cd732a260686c43be2abc71834b40d8435cabaa (
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
|
<script>
import { Input, InputAddon, ButtonGroup, Button } from 'flowbite-svelte';
import { CaretRightSolid } from 'flowbite-svelte-icons';
import { tick } from 'svelte';
import { postToChannel } from '../apiServer';
import { activeChannel } from '../store';
let self;
let input;
$: disabled = $activeChannel == null;
async function handleSubmit(event) {
disabled = true;
// TODO try/catch:
await postToChannel($activeChannel?.id, input);
input = '';
disabled = false;
await tick();
self.focus();
}
</script>
<form on:submit|preventDefault={handleSubmit}>
<ButtonGroup class="w-full">
<Input disabled={disabled} bind:this={self} bind:value={input} />
<Button color="primary" class="!p-2.5" type="submit">
<CaretRightSolid class="w-5 h-5" />
</Button>
</ButtonGroup>
</form>
|