shoelace/src/components/textarea/textarea.ts

337 wiersze
10 KiB
TypeScript

import { LitElement, html } from 'lit';
import { customElement, property, query, state } from 'lit/decorators.js';
import { classMap } from 'lit/directives/class-map.js';
import { ifDefined } from 'lit/directives/if-defined.js';
import { emit } from '../../internal/event';
import { live } from 'lit/directives/live.js';
import { watch } from '../../internal/watch';
import { getLabelledBy, renderFormControl } from '../../internal/form-control';
import { HasSlotController } from '../../internal/slot';
import styles from './textarea.styles';
let id = 0;
/**
* @since 2.0
* @status stable
*
* @slot label - The textarea's label. Alternatively, you can use the label prop.
* @slot help-text - Help text that describes how to use the input.
*
* @event sl-change - Emitted when the control's value changes.
* @event sl-input - Emitted when the control receives input.
* @event sl-focus - Emitted when the control gains focus.
* @event sl-blur - Emitted when the control loses focus.
*
* @csspart base - The component's base wrapper.
* @csspart form-control - The form control that wraps the label, textarea, and help text.
* @csspart label - The textarea label.
* @csspart textarea - The textarea control.
* @csspart help-text - The textarea help text.
*/
@customElement('sl-textarea')
export default class SlTextarea extends LitElement {
static styles = styles;
@query('.textarea__control') input: HTMLTextAreaElement;
private hasSlotController = new HasSlotController(this, ['help-text', 'label']);
private inputId = `textarea-${++id}`;
private helpTextId = `textarea-help-text-${id}`;
private labelId = `textarea-label-${id}`;
private resizeObserver: ResizeObserver;
@state() private hasFocus = false;
/** The textarea's size. */
@property({ reflect: true }) size: 'small' | 'medium' | 'large' = 'medium';
/** The textarea's name attribute. */
@property() name: string;
/** The textarea's value attribute. */
@property() value = '';
/** Draws a filled textarea. */
@property({ type: Boolean, reflect: true }) filled = false;
/** The textarea's label. Alternatively, you can use the label slot. */
@property() label: string;
/** The textarea's help text. Alternatively, you can use the help-text slot. */
@property({ attribute: 'help-text' }) helpText = '';
/** The textarea's placeholder text. */
@property() placeholder: string;
/** The number of rows to display by default. */
@property({ type: Number }) rows = 4;
/** Controls how the textarea can be resized. */
@property() resize: 'none' | 'vertical' | 'auto' = 'vertical';
/** Disables the textarea. */
@property({ type: Boolean, reflect: true }) disabled = false;
/** Makes the textarea readonly. */
@property({ type: Boolean, reflect: true }) readonly = false;
/** The minimum length of input that will be considered valid. */
@property({ type: Number }) minlength: number;
/** The maximum length of input that will be considered valid. */
@property({ type: Number }) maxlength: number;
/** A pattern to validate input against. */
@property() pattern: string;
/** Makes the textarea a required field. */
@property({ type: Boolean, reflect: true }) required = false;
/**
* This will be true when the control is in an invalid state. Validity is determined by props such as `type`,
* `required`, `minlength`, and `maxlength` using the browser's constraint validation API.
*/
@property({ type: Boolean, reflect: true }) invalid = false;
/** The textarea's autocapitalize attribute. */
@property() autocapitalize: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
/** The textarea's autocorrect attribute. */
@property() autocorrect: string;
/** The textarea's autocomplete attribute. */
@property() autocomplete: string;
/** The textarea's autofocus attribute. */
@property({ type: Boolean }) autofocus: boolean;
/** Enables spell checking on the textarea. */
@property({ type: Boolean }) spellcheck: boolean;
/** The textarea's inputmode attribute. */
@property() inputmode: 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
connectedCallback() {
super.connectedCallback();
this.resizeObserver = new ResizeObserver(() => this.setTextareaHeight());
this.updateComplete.then(() => {
this.setTextareaHeight();
this.resizeObserver.observe(this.input);
});
}
firstUpdated() {
this.invalid = !this.input.checkValidity();
}
disconnectedCallback() {
super.disconnectedCallback();
this.resizeObserver.unobserve(this.input);
}
/** Sets focus on the textarea. */
focus(options?: FocusOptions) {
this.input.focus(options);
}
/** Removes focus from the textarea. */
blur() {
this.input.blur();
}
/** Selects all the text in the textarea. */
select() {
return this.input.select();
}
/** Gets or sets the textarea's scroll position. */
scrollPosition(position?: { top?: number; left?: number }) {
if (position) {
if (typeof position.top === 'number') this.input.scrollTop = position.top;
if (typeof position.left === 'number') this.input.scrollLeft = position.left;
return;
}
return {
top: this.input.scrollTop,
left: this.input.scrollTop
};
}
/** Sets the start and end positions of the text selection (0-based). */
setSelectionRange(
selectionStart: number,
selectionEnd: number,
selectionDirection: 'forward' | 'backward' | 'none' = 'none'
) {
return this.input.setSelectionRange(selectionStart, selectionEnd, selectionDirection);
}
/** Replaces a range of text with a new string. */
setRangeText(
replacement: string,
start: number,
end: number,
selectMode: 'select' | 'start' | 'end' | 'preserve' = 'preserve'
) {
this.input.setRangeText(replacement, start, end, selectMode);
if (this.value !== this.input.value) {
this.value = this.input.value;
emit(this, 'sl-input');
}
if (this.value !== this.input.value) {
this.value = this.input.value;
this.setTextareaHeight();
emit(this, 'sl-input');
emit(this, 'sl-change');
}
}
/** Checks for validity and shows the browser's validation message if the control is invalid. */
reportValidity() {
return this.input.reportValidity();
}
/** Sets a custom validation message. If `message` is not empty, the field will be considered invalid. */
setCustomValidity(message: string) {
this.input.setCustomValidity(message);
this.invalid = !this.input.checkValidity();
}
handleBlur() {
this.hasFocus = false;
emit(this, 'sl-blur');
}
handleChange() {
this.value = this.input.value;
this.setTextareaHeight();
emit(this, 'sl-change');
}
@watch('disabled')
handleDisabledChange() {
// Disabled form controls are always valid, so we need to recheck validity when the state changes
if (this.input) {
this.input.disabled = this.disabled;
this.invalid = !this.input.checkValidity();
}
}
handleFocus() {
this.hasFocus = true;
emit(this, 'sl-focus');
}
handleInput() {
this.value = this.input.value;
this.setTextareaHeight();
emit(this, 'sl-input');
}
@watch('rows')
handleRowsChange() {
this.setTextareaHeight();
}
@watch('value')
handleValueChange() {
if (this.input) {
this.invalid = !this.input.checkValidity();
}
}
setTextareaHeight() {
if (this.input) {
if (this.resize === 'auto') {
this.input.style.height = 'auto';
this.input.style.height = this.input.scrollHeight + 'px';
} else {
(this.input.style.height as string | undefined) = undefined;
}
}
}
render() {
const hasLabelSlot = this.hasSlotController.test('label');
const hasHelpTextSlot = this.hasSlotController.test('help-text');
return renderFormControl(
{
inputId: this.inputId,
label: this.label,
labelId: this.labelId,
hasLabelSlot,
helpTextId: this.helpTextId,
helpText: this.helpText,
hasHelpTextSlot,
size: this.size
},
html`
<div
part="base"
class=${classMap({
textarea: true,
'textarea--small': this.size === 'small',
'textarea--medium': this.size === 'medium',
'textarea--large': this.size === 'large',
'textarea--standard': !this.filled,
'textarea--filled': this.filled,
'textarea--disabled': this.disabled,
'textarea--focused': this.hasFocus,
'textarea--empty': this.value?.length === 0,
'textarea--invalid': this.invalid,
'textarea--resize-none': this.resize === 'none',
'textarea--resize-vertical': this.resize === 'vertical',
'textarea--resize-auto': this.resize === 'auto'
})}
>
<textarea
part="textarea"
id=${this.inputId}
class="textarea__control"
name=${ifDefined(this.name)}
.value=${live(this.value)}
?disabled=${this.disabled}
?readonly=${this.readonly}
?required=${this.required}
placeholder=${ifDefined(this.placeholder)}
rows=${ifDefined(this.rows)}
minlength=${ifDefined(this.minlength)}
maxlength=${ifDefined(this.maxlength)}
autocapitalize=${ifDefined(this.autocapitalize)}
autocorrect=${ifDefined(this.autocorrect)}
?autofocus=${this.autofocus}
spellcheck=${ifDefined(this.spellcheck)}
inputmode=${ifDefined(this.inputmode)}
aria-labelledby=${ifDefined(
getLabelledBy({
label: this.label,
labelId: this.labelId,
hasLabelSlot,
helpText: this.helpText,
helpTextId: this.helpTextId,
hasHelpTextSlot
})
)}
@change=${this.handleChange}
@input=${this.handleInput}
@focus=${this.handleFocus}
@blur=${this.handleBlur}
></textarea>
</div>
`
);
}
}
declare global {
interface HTMLElementTagNameMap {
'sl-textarea': SlTextarea;
}
}