This repository was archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathTextarea.svelte
272 lines (251 loc) · 9.33 KB
/
Textarea.svelte
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<script>
import { onMount } from 'svelte';
import Errors from './Errors.svelte';
// Textarea Options
// -------------------------------------------------------------------------------------------
let thisTextarea;
const uid = Math.floor(Math.random() * 10000000);
export let name = `textarea-${uid}`;
export let id = `${name}-${uid}`;
export let tabindex = null;
export let placeholder = null;
export let value = '';
export let disabled = null;
export let readonly = null;
export let rows = 5;
export let cols = 30;
export let nonResizable = readonly || disabled ? true : false;
export let autofocus = null; // boolean, **use thoughtfully** (https://tinyurl.com/inputautofocus)
export let autocomplete = null; // hint for form autofill feature; not a boolean (https://tinyurl.com/inputautocomplete)
export let inputmode = null; // hint to browsers as to the type of virtual keyboard configuration to use (https://tinyurl.com/inputmodeattr)
export let minLength = null; // minimum number of characters of value
export let maxLength = null; // maximum number of characters of value
// Textarea Style Options
// -------------------------------------------------------------------------------------------
export let containerClasses = '';
export let textareaClasses = '';
export let inheritFontSize = false;
export let leftPadding = readonly ? false : true;
export let rounded = true;
export let border = true;
export let bgFill = !border ? true : false;
export let shadow = true; // won't be applied, irrespective of value, if border is false
// Label & Description Options
// -------------------------------------------------------------------------------------------
export let label = null;
export let labelHidden = false;
export let showRequiredHint = true; // toggles display of asterisk next to label for required fields
export let note = null;
// Standard Validation Options
// -------------------------------------------------------------------------------------------
// By default, validation and display of error messages will occur 1) after user
// blurs textarea first time and then 2) as user inputs data (after previous blur)
export let validateOnMount = false; // if true, will validate textarea and show any errors when component is mounted
export let validateOnInput = false; // if true, will validate textarea and show any errors when user first touches input
export let validationObjectName = 'text'; // can be used to customize default error messages; e.g. 'credit card'
export let required = null;
let touched = false;
let blurred = false;
let errors = [];
let warnings = [];
// Optional Custom Validation Options
// -------------------------------------------------------------------------------------------
// - expects an object with 'errors' and/or 'warnings' arrays of rules (as objects)
// - first property 'pattern' is regex to evaluate textarea's value against
// - second property 'messageIfMatch' is a boolean that determines if message is displayed when pattern matches or misses
// - third property 'message' is error message displayed when pattern & messageIfMatch align
// - if multiple errors exists they will be displayed one at a time, in the order added to the arrays
// - if errors and warnings are both present, errors will be shown first
export let customValidation = {};
// example
// customValidation = {
// errors: [
// {
// pattern: 'apples',
// messageIfMatch: true,
// message: "Please don't mention apples. That ended poorly the first time.",
// },
// ],
// warnings: [
// {
// pattern: '[\\.]',
// messageIfMatch: false,
// message: 'Consider adding some periods. Like Hemingway.',
// },
// ],
// };
// Handlers
// -------------------------------------------------------------------------------------------
function checkValidity() {
// clear & re-check for current errors or warnings
errors = [];
warnings = [];
thisTextarea.checkValidity(); // will fire 'invalid' event if any of standard constraints fail
if (customValidation?.errors?.length || customValidation?.warnings?.length) {
checkCustomValidation(); // will test custom rules and populate any related errors/warnings
}
}
function checkCustomValidation() {
customValidation?.errors?.forEach((rule) => {
const { pattern, messageIfMatch, message } = rule;
const regex = new RegExp(pattern, 'g');
const validity = regex.test(value); // 'value' is Svelte variable for current value
if ((validity && messageIfMatch) || (!validity && !messageIfMatch)) errors.push(message);
});
customValidation?.warnings?.forEach((rule) => {
const { pattern, messageIfMatch, message } = rule;
const regex = new RegExp(pattern, 'g');
const validity = regex.test(value);
if ((validity && messageIfMatch) || (!validity && !messageIfMatch)) warnings.push(message);
});
}
onMount(() => {
if (validateOnMount) checkValidity();
});
function inputHandler(e) {
touched = true;
value = e.target.value;
if (validateOnInput || blurred) checkValidity();
if (!validateOnInput && blurred) checkValidity();
}
function blurHandler() {
let autofocused = thisTextarea.className.includes('autofocused') || thisTextarea.hasAttribute('autofocus');
if (touched) blurred = true;
if (touched) checkValidity();
if (!touched & required && !autofocused) checkValidity();
}
function invalidHandler() {
// Standard Validation Messages
if (thisTextarea.validity.valueMissing) errors = ['This field is required.'];
if (thisTextarea.validity.badInput || thisTextarea.validity.typeMismatch) errors = [`Please enter valid ${validationObjectName}.`];
if (thisTextarea.validity.tooShort)
errors = [`${validationObjectName.charAt(0).toUpperCase() + validationObjectName.slice(1)} must be at least ${minLength} characters.`];
if (thisTextarea.validity.tooLong)
errors = [`${validationObjectName.charAt(0).toUpperCase() + validationObjectName.slice(1)} must be at less than ${minLength} characters.`];
}
</script>
<div class="flex flex-col {containerClasses}" {...$$restProps}>
{#if label}
<label for={id} id="{id}-label" class:hide={labelHidden} class="block font-medium text-gray-700 mb-3">
{label}
{#if required && showRequiredHint}
<abbr title="Required" class="font-normal text-gray-500">*</abbr>
{/if}
</label>
{/if}
<!-- svelte-ignore a11y-autofocus -->
<textarea
bind:this={thisTextarea}
{name}
{id}
{tabindex}
{rows}
{cols}
{placeholder}
{disabled}
{readonly}
{autofocus}
{autocomplete}
{inputmode}
{minLength}
{maxLength}
{required}
class:inheritFontSize
class:leftPadding
class:nonResizable
class:addRounding={rounded}
class:addBg={bgFill}
class:addBorder={border}
class:addShadow={shadow}
class:hasWarning={warnings.length !== 0}
class:hasError={errors.length !== 0}
class={textareaClasses}
aria-required={required ? true : null}
aria-disabled={disabled ? true : null}
aria-labelledby={label ? `${id}-label` : null}
aria-describedby={note ? `${id}-description` : null}
aria-invalid={errors.length !== 0 ? true : null}
on:input={inputHandler}
on:blur={blurHandler}
on:invalid={invalidHandler}>{value}</textarea>
<!-- using 'add' class names (e.g. 'addShadow') to avoid collisions with Tailwind class names -->
{#if note}
<p id="{id}-description" class="description-block">{note}</p>
{/if}
{#if errors?.length || warnings?.length}
<div class="error-block">
<Errors {errors} {warnings} />
</div>
{/if}
</div>
<style>
.hide {
@apply sr-only;
}
textarea {
@apply block w-full py-2 px-0 appearance-none text-gray-700 border border-transparent focus_outline-none;
}
textarea.addRounding {
@apply rounded-md;
}
textarea.addBg {
@apply bg-gray-100 focus_bg-transparent;
}
textarea.leftPadding {
@apply px-3;
}
textarea:not(.inheritFontSize) {
@apply text-sm;
}
textarea.addBorder:not([readonly]) {
@apply border-gray-300;
}
textarea.nonResizable {
@apply resize-none;
}
textarea:not([readonly], [disabled]) {
@apply placeholder-gray-400 focus_ring-action-hover focus_border-action-hover;
}
textarea[readonly] {
@apply bg-transparent focus_ring-transparent focus_border-transparent cursor-default pointer-events-none;
}
textarea.addShadow:not([readonly], [disabled]) {
@apply shadow-sm;
}
/* Can enable styles for warning state if wanted, but since these are
optional UX is preferrable to reserve added visual weight for errors alone
textarea.hasWarning:not([readonly], [disabled]) {
@apply text-yellow-700 placeholder-yellow-400 focus_ring-yellow-500 focus_border-yellow-500;
}
textarea.addBorder.hasWarning:not([readonly], [disabled]) {
@apply border-yellow-500;
} */
textarea.hasError:not([readonly], [disabled]) {
@apply text-red-700 placeholder-red-400 focus_ring-red-500 focus_border-red-500;
}
textarea.addBorder.hasError:not([readonly], [disabled]) {
@apply border-red-500;
}
/* additional helpful psuedo classes that can be styled
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#ui_pseudo-classes
textarea:placeholder-shown {}
textarea:required {}
textarea:optional {}
textarea:user-invalid {}
*/
textarea.addBorder[disabled] {
@apply border-opacity-40;
}
textarea.addShadow[disabled] {
@apply shadow-none;
}
.description-block {
@apply text-xs text-gray-500 mt-2;
}
.error-block {
@apply mt-2;
}
.description-block + .error-block {
@apply mt-1;
}
</style>