mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 12:23:02 +00:00
140 lines
3.5 KiB
Svelte
140 lines
3.5 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;
|
|
|
|
/** Set to `true` to use the read-only variant */
|
|
export let readonly = 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 to `true` to indicate an warning state */
|
|
export let warn = false;
|
|
|
|
/** Specify the warning state text */
|
|
export let warnText = "";
|
|
|
|
/** 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 "../icons/WarningFilled16.svelte";
|
|
import WarningAltFilled16 from "../icons/WarningAltFilled16.svelte";
|
|
|
|
$: errorId = `error-${id}`;
|
|
$: warnId = `warn-${id}`;
|
|
</script>
|
|
|
|
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
|
|
<div
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
class:bx--form-item="{true}"
|
|
>
|
|
{#if (labelText || $$slots.labelText) && !hideLabel}
|
|
<label
|
|
for="{id}"
|
|
class:bx--label="{true}"
|
|
class:bx--visually-hidden="{hideLabel}"
|
|
class:bx--label--disabled="{disabled}"
|
|
>
|
|
<slot name="labelText">
|
|
{labelText}
|
|
</slot>
|
|
</label>
|
|
{/if}
|
|
<div
|
|
class:bx--text-area__wrapper="{true}"
|
|
data-invalid="{invalid || undefined}"
|
|
data-warn="{warn || undefined}"
|
|
>
|
|
{#if invalid}
|
|
<WarningFilled16 class="bx--text-area__invalid-icon" />
|
|
{/if}
|
|
{#if !invalid && warn}
|
|
<WarningAltFilled16
|
|
class="bx--text-area__invalid-icon
|
|
bx--text-area__invalid-icon--warning"
|
|
/>
|
|
{/if}
|
|
<textarea
|
|
bind:this="{ref}"
|
|
data-invalid="{invalid || undefined}"
|
|
aria-invalid="{invalid || undefined}"
|
|
data-warn="{warn || undefined}"
|
|
aria-describedby="{invalid ? errorId : warn ? warnId : undefined}"
|
|
disabled="{disabled}"
|
|
id="{id}"
|
|
name="{name}"
|
|
cols="{cols}"
|
|
rows="{rows}"
|
|
value="{value ?? ''}"
|
|
placeholder="{placeholder}"
|
|
readonly="{readonly}"
|
|
class:bx--text-area="{true}"
|
|
class:bx--text-area--light="{light}"
|
|
class:bx--text-area--invalid="{invalid}"
|
|
class:bx--text-area--warn="{warn}"
|
|
{...$$restProps}
|
|
on:change
|
|
on:input
|
|
on:input="{({ target }) => {
|
|
value = target.value;
|
|
}}"
|
|
on:keydown
|
|
on:keyup
|
|
on:focus
|
|
on:blur></textarea>
|
|
</div>
|
|
{#if !invalid && !warn && 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}
|
|
{#if !invalid && warn}
|
|
<div id="{warnId}" class:bx--form-requirement="{true}">{warnText}</div>
|
|
{/if}
|
|
</div>
|