blob: 938e467608b73fa8d0bdce7b7295379ce62e5859 (
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 { 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}>
<input type="text" class="border rounded px-3" bind:this={self} bind:value={input} disabled={disabled}>
<button type="submit">➤</button>
</form>
<style>
input[type="text"] {
/* TODO: percentage won't handle zoom in/out well. */
width: 96%;
}
</style>
|