blob: 223a2651d8ad2d8d648b91d2112a79c0c76da6f1 (
plain) (
blame)
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
|
<script lang="ts">
import {random_string} from "$utilities/misc-helpers";
export let id = "textarea-" + random_string(4);
export let disabled = false;
export let rows = 2;
export let cols = 0;
export let name = "";
export let placeholder = "";
export let value;
export let label = "";
export let required = false;
export let errorText = "";
export let errors: Array<string> | undefined = undefined;
$: ariaErrorDescribedBy = id + "__" + "error";
$: attributes = {
"aria-describedby": errorText || errors?.length ? ariaErrorDescribedBy : null,
"aria-invalid": errorText || errors?.length ? "true" : null,
rows: rows || null,
cols: cols || null,
name: name || null,
id: id || null,
disabled: disabled || null,
required: required || null,
} as any;
let textareaElement;
let scrollHeight = 0;
const defaultColorClass = "border-gray-300 focus:border-teal-500 focus:ring-teal-500";
let colorClass = defaultColorClass;
$: if (errorText) {
colorClass = "placeholder-red-300 focus:border-red-500 focus:outline-none focus:ring-red-500 text-red-900 pr-10 border-red-300";
} else {
colorClass = defaultColorClass;
}
$: if (textareaElement) {
scrollHeight = textareaElement.scrollHeight;
}
function on_input(event) {
event.target.style.height = "auto";
event.target.style.height = this.scrollHeight + "px";
}
</script>
<div>
{#if label}
<label for={id} class="block text-sm font-medium text-gray-700">
{label}
{@html required ? "<span class='text-red-500'>*</span>" : ""}
</label>
{/if}
<div class="mt-1">
<textarea
{rows}
{name}
{id}
{...attributes}
style="overflow-y:hidden;min-height:calc(1.5em + .75rem + 2px);{scrollHeight ? 'height:{scrollHeight}px' : ''};"
bind:value
bind:this={textareaElement}
on:input={on_input}
{placeholder}
class="block w-full rounded-md {colorClass} shadow-sm sm:text-sm"
/>
{#if errorText || errors?.length === 1}
<p class="mt-2 text-sm text-red-600" id={ariaErrorDescribedBy}>
{errorText ?? errors[0]}
</p>
{:else if errors && errors.length}
<ul class="mt-2 list-disc" id={ariaErrorDescribedBy}>
{#each errors as error}
<li class="text-sm text-red-600">{error}</li>
{/each}
</ul>
{/if}
</div>
</div>
|