UNPKG

soft-components

Version:

Simple soft flexible set of web components

701 lines (700 loc) 20 kB
import { Component, Host, h, Prop, // Element, Event, Method, State, } from '@stencil/core'; import { validityMessages } from '../../utils/validity-messages'; export class Input { constructor() { /** * Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user. */ this.autocapitalize = 'off'; /** * Indicates whether the value of the control can be automatically completed by the browser. */ this.autocomplete = 'off'; /** * Whether auto correction should be enabled when the user is entering/editing the text value. */ this.autocorrect = 'off'; /** * This Boolean attribute lets you specify that a form control should have input focus when the page loads. */ this.autofocus = false; /** * If `true`, the user cannot interact with the input. */ this.disabled = false; /** * The name of the control, which is submitted with the form data. */ this.name = ''; /** * If `true`, the user cannot modify the value. */ this.readonly = false; /** * If `true`, the user must fill in a value before submitting a form. */ this.required = false; /** * The type of control to display. The default type is text. */ this.type = 'text'; /** * The value of the input. */ this.value = ''; /** * Aria labelby */ this.ariaLabelledby = ''; /** * Engrave level (0-9) note if 0 there will be no visible border around the element, so you'll need to add border via css. */ this.engraved = 1; /** * Takes the entire width of the row */ this.block = false; this.error = ''; this.focused = false; this.onInput = (ev) => { const input = ev.target; if (input) { this.value = input.value || ''; } for (var key in input.validity) { if (input.validity[key]) { if (key === 'valid') { this.error = ''; break; } this.error = validityMessages(this)[key] || ''; // "" catch all break; } } this.inputEvent.emit(ev); }; this.onBlur = () => { this.blurEvent.emit(); this.focused = false; }; this.onFocus = () => { this.focusEvent.emit(); this.focused = true; }; this.onKeydown = () => { this.keyDownEvent.emit(); }; this.onChange = (e) => { this.changeEvent.emit(e); }; } /** * Sets focus on the specified `sc-input`. Use this method instead of the global * `input.focus()`. */ async setFocus() { if (this.nativeInput) { this.nativeInput.focus(); } } /** * Returns the native `<input>` element used under the hood. */ getInputElement() { return Promise.resolve(this.nativeInput); } getValue() { return this.value || ''; } hasValue() { return this.getValue().length > 0; } renderInput() { const value = this.getValue(); const engravedLevel = this.focused ? this.engraved + 1 : this.engraved; return h("span", null, h("input", { class: `engraved-${engravedLevel}`, ref: input => (this.nativeInput = input), "aria-labelledby": this.ariaLabelledby, disabled: this.disabled, accept: this.accept, autoCapitalize: this.autocapitalize, autoComplete: this.autocomplete, autoCorrect: this.autocorrect, autoFocus: this.autofocus, inputMode: this.inputmode, min: this.min, max: this.max, minLength: this.minlength, maxLength: this.maxlength, multiple: this.multiple, name: this.name, pattern: this.pattern, placeholder: this.placeholder || '', readOnly: this.readonly, required: this.required, step: this.step, size: this.size, type: this.type, value: value, onInput: this.onInput, onBlur: this.onBlur, onFocus: this.onFocus, onKeyDown: this.onKeydown, onChange: this.onChange }), this.type === 'radio' ? h("span", { class: "after" }) : null); } render() { return (h(Host, { "aria-disabled": this.disabled ? 'true' : null, class: { 'has-value': this.hasValue(), 'has-error': this.error.length > 0, block: this.block, } }, this.label ? h("label", { class: "label" }, this.label, this.renderInput()) : this.renderInput(), this.error && this.error.length > 0 && (h("div", { class: "error-message" }, this.error)))); } static get is() { return "sc-input"; } static get originalStyleUrls() { return { "$": ["sc-input.scss"] }; } static get styleUrls() { return { "$": ["sc-input.css"] }; } static get properties() { return { "accept": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "If the value of the type attribute is `\"file\"`, then this attribute will indicate the types of files that the server accepts, otherwise it will be ignored. The value must be a comma-separated list of unique content type specifiers." }, "attribute": "accept", "reflect": false }, "autocapitalize": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user." }, "attribute": "autocapitalize", "reflect": false, "defaultValue": "'off'" }, "autocomplete": { "type": "string", "mutable": false, "complexType": { "original": "'on' | 'off'", "resolved": "\"off\" | \"on\"", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "Indicates whether the value of the control can be automatically completed by the browser." }, "attribute": "autocomplete", "reflect": false, "defaultValue": "'off'" }, "autocorrect": { "type": "string", "mutable": false, "complexType": { "original": "'on' | 'off'", "resolved": "\"off\" | \"on\"", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "Whether auto correction should be enabled when the user is entering/editing the text value." }, "attribute": "autocorrect", "reflect": false, "defaultValue": "'off'" }, "autofocus": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "This Boolean attribute lets you specify that a form control should have input focus when the page loads." }, "attribute": "autofocus", "reflect": false, "defaultValue": "false" }, "disabled": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "If `true`, the user cannot interact with the input." }, "attribute": "disabled", "reflect": false, "defaultValue": "false" }, "inputmode": { "type": "string", "mutable": false, "complexType": { "original": "| 'none'\n | 'text'\n | 'tel'\n | 'url'\n | 'email'\n | 'numeric'\n | 'decimal'\n | 'search'", "resolved": "\"decimal\" | \"email\" | \"none\" | \"numeric\" | \"search\" | \"tel\" | \"text\" | \"url\"", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "A hint to the browser for which keyboard to display.\nPossible values: `\"none\"`, `\"text\"`, `\"tel\"`, `\"url\"`,\n`\"email\"`, `\"numeric\"`, `\"decimal\"`, and `\"search\"`." }, "attribute": "inputmode", "reflect": false }, "max": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "The maximum value, which must not be less than its minimum (min attribute) value." }, "attribute": "max", "reflect": false }, "maxlength": { "type": "number", "mutable": false, "complexType": { "original": "number", "resolved": "number", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the maximum number of characters that the user can enter." }, "attribute": "maxlength", "reflect": false }, "min": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "The minimum value, which must not be greater than its maximum (max attribute) value." }, "attribute": "min", "reflect": false }, "minlength": { "type": "number", "mutable": false, "complexType": { "original": "number", "resolved": "number", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the minimum number of characters that the user can enter." }, "attribute": "minlength", "reflect": false }, "multiple": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "If `true`, the user can enter more than one value. This attribute applies when the type attribute is set to `\"email\"` or `\"file\"`, otherwise it is ignored." }, "attribute": "multiple", "reflect": false }, "name": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "The name of the control, which is submitted with the form data." }, "attribute": "name", "reflect": false, "defaultValue": "''" }, "pattern": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "A regular expression that the value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is `\"text\"`, `\"search\"`, `\"tel\"`, `\"url\"`, `\"email\"`, or `\"password\"`, otherwise it is ignored." }, "attribute": "pattern", "reflect": false }, "placeholder": { "type": "string", "mutable": false, "complexType": { "original": "string | null", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "Instructional text that shows before the input has a value." }, "attribute": "placeholder", "reflect": false }, "readonly": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "If `true`, the user cannot modify the value." }, "attribute": "readonly", "reflect": false, "defaultValue": "false" }, "required": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "If `true`, the user must fill in a value before submitting a form." }, "attribute": "required", "reflect": false, "defaultValue": "false" }, "step": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number." }, "attribute": "step", "reflect": false }, "size": { "type": "number", "mutable": false, "complexType": { "original": "number", "resolved": "number", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "The initial size of the control. This value is in pixels unless the value of the type attribute is `\"text\"` or `\"password\"`, in which case it is an integer number of characters. This attribute applies only when the `type` attribute is set to `\"text\"`, `\"search\"`, `\"tel\"`, `\"url\"`, `\"email\"`, or `\"password\"`, otherwise it is ignored." }, "attribute": "size", "reflect": false }, "type": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "The type of control to display. The default type is text." }, "attribute": "type", "reflect": false, "defaultValue": "'text'" }, "value": { "type": "string", "mutable": true, "complexType": { "original": "string | null", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "The value of the input." }, "attribute": "value", "reflect": false, "defaultValue": "''" }, "ariaLabelledby": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "Aria labelby" }, "attribute": "aria-labelledby", "reflect": true, "defaultValue": "''" }, "engraved": { "type": "number", "mutable": false, "complexType": { "original": "number", "resolved": "number", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "Engrave level (0-9) note if 0 there will be no visible border around the element, so you'll need to add border via css." }, "attribute": "engraved", "reflect": false, "defaultValue": "1" }, "block": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "Takes the entire width of the row" }, "attribute": "block", "reflect": false, "defaultValue": "false" }, "label": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "Label for input" }, "attribute": "label", "reflect": false } }; } static get states() { return { "error": {}, "focused": {} }; } static get events() { return [{ "method": "inputEvent", "name": "inputEvent", "bubbles": true, "cancelable": true, "composed": true, "docs": { "tags": [], "text": "Emitted when a keyboard input occurred." }, "complexType": { "original": "KeyboardEvent", "resolved": "KeyboardEvent", "references": { "KeyboardEvent": { "location": "global" } } } }, { "method": "changeEvent", "name": "changeEvent", "bubbles": true, "cancelable": true, "composed": true, "docs": { "tags": [], "text": "Emitted when the value has changed." }, "complexType": { "original": "any", "resolved": "any", "references": {} } }, { "method": "blurEvent", "name": "blurEvent", "bubbles": true, "cancelable": true, "composed": true, "docs": { "tags": [], "text": "Emitted when the input loses focus." }, "complexType": { "original": "void", "resolved": "void", "references": {} } }, { "method": "focusEvent", "name": "focusEvent", "bubbles": true, "cancelable": true, "composed": true, "docs": { "tags": [], "text": "Emitted when the input has focus." }, "complexType": { "original": "void", "resolved": "void", "references": {} } }, { "method": "keyDownEvent", "name": "keyDownEvent", "bubbles": true, "cancelable": true, "composed": true, "docs": { "tags": [], "text": "Emitted when a key is pressed down" }, "complexType": { "original": "void", "resolved": "void", "references": {} } }]; } static get methods() { return { "setFocus": { "complexType": { "signature": "() => Promise<void>", "parameters": [], "references": { "Promise": { "location": "global" } }, "return": "Promise<void>" }, "docs": { "text": "Sets focus on the specified `sc-input`. Use this method instead of the global\n`input.focus()`.", "tags": [] } }, "getInputElement": { "complexType": { "signature": "() => Promise<HTMLInputElement>", "parameters": [], "references": { "Promise": { "location": "global" }, "HTMLInputElement": { "location": "global" } }, "return": "Promise<HTMLInputElement>" }, "docs": { "text": "Returns the native `<input>` element used under the hood.", "tags": [] } } }; } }