carbon-components-svelte/src/TextArea/TextArea.svelte

111 lines
2.6 KiB
Svelte

<script>
/** Specify the textarea value */
export let value = "";
/** Specify the placeholder text */
export let placeholder = "";
/** Specify the number of cols */
export let cols = 50;
/** Specify the number of rows */
export let rows = 4;
/** Set to `true` to enable the light variant */
export let light = false;
/** Set to `true` to disable the input */
export let disabled = false;
/** Specify the helper text */
export let helperText = "";
/** Specify the label text */
export let labelText = "";
/** Set to `true` to visually hide the label text */
export let hideLabel = false;
/** Set to `true` to indicate an invalid state */
export let invalid = false;
/** Specify the text for the invalid state */
export let invalidText = "";
/** Set an id for the textarea element */
export let id = "ccs-" + Math.random().toString(36);
/**
* Specify a name attribute for the input
* @type {string}
*/
export let name = undefined;
/** Obtain a reference to the textarea HTML element */
export let ref = null;
import WarningFilled16 from "carbon-icons-svelte/lib/WarningFilled16";
$: errorId = `error-${id}`;
</script>
<div
on:click
on:mouseover
on:mouseenter
on:mouseleave
class:bx--form-item="{true}"
>
{#if labelText && !hideLabel}
<label
for="{id}"
class:bx--label="{true}"
class:bx--visually-hidden="{hideLabel}"
class:bx--label--disabled="{disabled}"
>
{labelText}
</label>
{/if}
<div
class:bx--text-area__wrapper="{true}"
data-invalid="{invalid || undefined}"
>
{#if invalid}
<WarningFilled16 class="bx--text-area__invalid-icon" />
{/if}
<textarea
bind:this="{ref}"
aria-invalid="{invalid || undefined}"
aria-describedby="{invalid ? errorId : undefined}"
disabled="{disabled}"
id="{id}"
name="{name}"
cols="{cols}"
rows="{rows}"
value="{value}"
placeholder="{placeholder}"
class:bx--text-area="{true}"
class:bx--text-area--light="{light}"
class:bx--text-area--invalid="{invalid}"
{...$$restProps}
on:change
on:input
on:input="{({ target }) => {
value = target.value;
}}"
on:focus
on:blur
></textarea>
</div>
{#if !invalid && helperText}
<div
class:bx--form__helper-text="{true}"
class:bx--form__helper-text--disabled="{disabled}"
>
{helperText}
</div>
{/if}
{#if invalid}
<div id="{errorId}" class:bx--form-requirement="{true}">{invalidText}</div>
{/if}
</div>