mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00

resolves #22976 BREAKING CHANGE: Updated the `placeholder` property on `ion-input`, `ion-textarea`, and `ion-select` to have a type of `string | undefined`.
455 lines
13 KiB
TypeScript
455 lines
13 KiB
TypeScript
import { Build, Component, ComponentInterface, Element, Event, EventEmitter, Host, Method, Prop, State, Watch, h } from '@stencil/core';
|
|
|
|
import { getIonMode } from '../../global/ionic-global';
|
|
import { AutocompleteTypes, Color, InputChangeEventDetail, StyleEventDetail, TextFieldTypes } from '../../interface';
|
|
import { debounceEvent, findItemLabel, inheritAttributes } from '../../utils/helpers';
|
|
import { createColorClasses } from '../../utils/theme';
|
|
|
|
/**
|
|
* @virtualProp {"ios" | "md"} mode - The mode determines which platform styles to use.
|
|
*/
|
|
@Component({
|
|
tag: 'ion-input',
|
|
styleUrls: {
|
|
ios: 'input.ios.scss',
|
|
md: 'input.md.scss'
|
|
},
|
|
scoped: true
|
|
})
|
|
export class Input implements ComponentInterface {
|
|
|
|
private nativeInput?: HTMLInputElement;
|
|
private inputId = `ion-input-${inputIds++}`;
|
|
private didBlurAfterEdit = false;
|
|
private inheritedAttributes: { [k: string]: any } = {};
|
|
|
|
/**
|
|
* This is required for a WebKit bug which requires us to
|
|
* blur and focus an input to properly focus the input in
|
|
* an item with delegatesFocus. It will no longer be needed
|
|
* with iOS 14.
|
|
*
|
|
* @internal
|
|
*/
|
|
@Prop() fireFocusEvents = true;
|
|
|
|
@State() hasFocus = false;
|
|
|
|
@Element() el!: HTMLElement;
|
|
|
|
/**
|
|
* The color to use from your application's color palette.
|
|
* Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`.
|
|
* For more information on colors, see [theming](/docs/theming/basics).
|
|
*/
|
|
@Prop({ reflect: true }) color?: Color;
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
@Prop() accept?: string;
|
|
|
|
/**
|
|
* Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
|
|
* Available options: `"off"`, `"none"`, `"on"`, `"sentences"`, `"words"`, `"characters"`.
|
|
*/
|
|
@Prop() autocapitalize = 'off';
|
|
|
|
/**
|
|
* Indicates whether the value of the control can be automatically completed by the browser.
|
|
*/
|
|
@Prop() autocomplete: AutocompleteTypes = 'off';
|
|
|
|
/**
|
|
* Whether auto correction should be enabled when the user is entering/editing the text value.
|
|
*/
|
|
@Prop() autocorrect: 'on' | 'off' = 'off';
|
|
|
|
/**
|
|
* This Boolean attribute lets you specify that a form control should have input focus when the page loads.
|
|
*/
|
|
@Prop() autofocus = false;
|
|
|
|
/**
|
|
* If `true`, a clear icon will appear in the input when there is a value. Clicking it clears the input.
|
|
*/
|
|
@Prop() clearInput = false;
|
|
|
|
/**
|
|
* If `true`, the value will be cleared after focus upon edit. Defaults to `true` when `type` is `"password"`, `false` for all other types.
|
|
*/
|
|
@Prop() clearOnEdit?: boolean;
|
|
|
|
/**
|
|
* Set the amount of time, in milliseconds, to wait to trigger the `ionChange` event after each keystroke. This also impacts form bindings such as `ngModel` or `v-model`.
|
|
*/
|
|
@Prop() debounce = 0;
|
|
|
|
@Watch('debounce')
|
|
protected debounceChanged() {
|
|
this.ionChange = debounceEvent(this.ionChange, this.debounce);
|
|
}
|
|
|
|
/**
|
|
* If `true`, the user cannot interact with the input.
|
|
*/
|
|
@Prop() disabled = false;
|
|
|
|
@Watch('disabled')
|
|
protected disabledChanged() {
|
|
this.emitStyle();
|
|
}
|
|
|
|
/**
|
|
* A hint to the browser for which enter key to display.
|
|
* Possible values: `"enter"`, `"done"`, `"go"`, `"next"`,
|
|
* `"previous"`, `"search"`, and `"send"`.
|
|
*/
|
|
@Prop() enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
|
|
|
|
/**
|
|
* A hint to the browser for which keyboard to display.
|
|
* Possible values: `"none"`, `"text"`, `"tel"`, `"url"`,
|
|
* `"email"`, `"numeric"`, `"decimal"`, and `"search"`.
|
|
*/
|
|
@Prop() inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
|
|
/**
|
|
* The maximum value, which must not be less than its minimum (min attribute) value.
|
|
*/
|
|
@Prop() max?: string;
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
@Prop() maxlength?: number;
|
|
|
|
/**
|
|
* The minimum value, which must not be greater than its maximum (max attribute) value.
|
|
*/
|
|
@Prop() min?: string;
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
@Prop() minlength?: number;
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
@Prop() multiple?: boolean;
|
|
|
|
/**
|
|
* The name of the control, which is submitted with the form data.
|
|
*/
|
|
@Prop() name: string = this.inputId;
|
|
|
|
/**
|
|
* 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"`, `"date"`, or `"password"`, otherwise it is ignored. When the type attribute is `"date"`, `pattern` will only be used in browsers that do not support the `"date"` input type natively. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date for more information.
|
|
*/
|
|
@Prop() pattern?: string;
|
|
|
|
/**
|
|
* Instructional text that shows before the input has a value.
|
|
*/
|
|
@Prop() placeholder?: string;
|
|
|
|
/**
|
|
* If `true`, the user cannot modify the value.
|
|
*/
|
|
@Prop() readonly = false;
|
|
|
|
/**
|
|
* If `true`, the user must fill in a value before submitting a form.
|
|
*/
|
|
@Prop() required = false;
|
|
|
|
/**
|
|
* If `true`, the element will have its spelling and grammar checked.
|
|
*/
|
|
@Prop() spellcheck = false;
|
|
|
|
/**
|
|
* Works with the min and max attributes to limit the increments at which a value can be set.
|
|
* Possible values are: `"any"` or a positive floating point number.
|
|
*/
|
|
@Prop() step?: string;
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
@Prop() size?: number;
|
|
|
|
/**
|
|
* The type of control to display. The default type is text.
|
|
*/
|
|
@Prop() type: TextFieldTypes = 'text';
|
|
|
|
/**
|
|
* The value of the input.
|
|
*/
|
|
@Prop({ mutable: true }) value?: string | number | null = '';
|
|
|
|
/**
|
|
* Emitted when a keyboard input occurred.
|
|
*/
|
|
@Event() ionInput!: EventEmitter<KeyboardEvent>;
|
|
|
|
/**
|
|
* Emitted when the value has changed.
|
|
*/
|
|
@Event() ionChange!: EventEmitter<InputChangeEventDetail>;
|
|
|
|
/**
|
|
* Emitted when the input loses focus.
|
|
*/
|
|
@Event() ionBlur!: EventEmitter<FocusEvent>;
|
|
|
|
/**
|
|
* Emitted when the input has focus.
|
|
*/
|
|
@Event() ionFocus!: EventEmitter<FocusEvent>;
|
|
|
|
/**
|
|
* Emitted when the styles change.
|
|
* @internal
|
|
*/
|
|
@Event() ionStyle!: EventEmitter<StyleEventDetail>;
|
|
|
|
/**
|
|
* Update the item classes when the placeholder changes
|
|
*/
|
|
@Watch('placeholder')
|
|
protected placeholderChanged() {
|
|
this.emitStyle();
|
|
}
|
|
|
|
/**
|
|
* Update the native input element when the value changes
|
|
*/
|
|
@Watch('value')
|
|
protected valueChanged() {
|
|
this.emitStyle();
|
|
this.ionChange.emit({ value: this.value == null ? this.value : this.value.toString() });
|
|
}
|
|
|
|
componentWillLoad() {
|
|
this.inheritedAttributes = inheritAttributes(this.el, ['aria-label', 'tabindex', 'title']);
|
|
}
|
|
|
|
connectedCallback() {
|
|
this.emitStyle();
|
|
this.debounceChanged();
|
|
if (Build.isBrowser) {
|
|
document.dispatchEvent(new CustomEvent('ionInputDidLoad', {
|
|
detail: this.el
|
|
}));
|
|
}
|
|
}
|
|
|
|
disconnectedCallback() {
|
|
if (Build.isBrowser) {
|
|
document.dispatchEvent(new CustomEvent('ionInputDidUnload', {
|
|
detail: this.el
|
|
}));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets focus on the native `input` in `ion-input`. Use this method instead of the global
|
|
* `input.focus()`.
|
|
*/
|
|
@Method()
|
|
async setFocus() {
|
|
if (this.nativeInput) {
|
|
this.nativeInput.focus();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets blur on the native `input` in `ion-input`. Use this method instead of the global
|
|
* `input.blur()`.
|
|
* @internal
|
|
*/
|
|
@Method()
|
|
async setBlur() {
|
|
if (this.nativeInput) {
|
|
this.nativeInput.blur();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the native `<input>` element used under the hood.
|
|
*/
|
|
@Method()
|
|
getInputElement(): Promise<HTMLInputElement> {
|
|
return Promise.resolve(this.nativeInput!);
|
|
}
|
|
|
|
private shouldClearOnEdit() {
|
|
const { type, clearOnEdit } = this;
|
|
return (clearOnEdit === undefined)
|
|
? type === 'password'
|
|
: clearOnEdit;
|
|
}
|
|
|
|
private getValue(): string {
|
|
return typeof this.value === 'number' ? this.value.toString() :
|
|
(this.value || '').toString();
|
|
}
|
|
|
|
private emitStyle() {
|
|
this.ionStyle.emit({
|
|
'interactive': true,
|
|
'input': true,
|
|
'has-placeholder': this.placeholder !== undefined,
|
|
'has-value': this.hasValue(),
|
|
'has-focus': this.hasFocus,
|
|
'interactive-disabled': this.disabled,
|
|
});
|
|
}
|
|
|
|
private onInput = (ev: Event) => {
|
|
const input = ev.target as HTMLInputElement | null;
|
|
if (input) {
|
|
this.value = input.value || '';
|
|
}
|
|
this.ionInput.emit(ev as KeyboardEvent);
|
|
}
|
|
|
|
private onBlur = (ev: FocusEvent) => {
|
|
this.hasFocus = false;
|
|
this.focusChanged();
|
|
this.emitStyle();
|
|
|
|
if (this.fireFocusEvents) {
|
|
this.ionBlur.emit(ev);
|
|
}
|
|
}
|
|
|
|
private onFocus = (ev: FocusEvent) => {
|
|
this.hasFocus = true;
|
|
this.focusChanged();
|
|
this.emitStyle();
|
|
|
|
if (this.fireFocusEvents) {
|
|
this.ionFocus.emit(ev);
|
|
}
|
|
}
|
|
|
|
private onKeydown = (ev: KeyboardEvent) => {
|
|
if (this.shouldClearOnEdit()) {
|
|
// Did the input value change after it was blurred and edited?
|
|
// Do not clear if user is hitting Enter to submit form
|
|
if (this.didBlurAfterEdit && this.hasValue() && ev.key !== 'Enter') {
|
|
// Clear the input
|
|
this.clearTextInput();
|
|
}
|
|
|
|
// Reset the flag
|
|
this.didBlurAfterEdit = false;
|
|
}
|
|
}
|
|
|
|
private clearTextOnEnter = (ev: KeyboardEvent) => {
|
|
if (ev.key === 'Enter') { this.clearTextInput(ev); }
|
|
}
|
|
|
|
private clearTextInput = (ev?: Event) => {
|
|
if (this.clearInput && !this.readonly && !this.disabled && ev) {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
|
|
// Attempt to focus input again after pressing clear button
|
|
this.setFocus();
|
|
}
|
|
|
|
this.value = '';
|
|
|
|
/**
|
|
* This is needed for clearOnEdit
|
|
* Otherwise the value will not be cleared
|
|
* if user is inside the input
|
|
*/
|
|
if (this.nativeInput) {
|
|
this.nativeInput.value = '';
|
|
}
|
|
}
|
|
|
|
private focusChanged() {
|
|
// If clearOnEdit is enabled and the input blurred but has a value, set a flag
|
|
if (!this.hasFocus && this.shouldClearOnEdit() && this.hasValue()) {
|
|
this.didBlurAfterEdit = true;
|
|
}
|
|
}
|
|
|
|
private hasValue(): boolean {
|
|
return this.getValue().length > 0;
|
|
}
|
|
|
|
render() {
|
|
const mode = getIonMode(this);
|
|
const value = this.getValue();
|
|
const labelId = this.inputId + '-lbl';
|
|
const label = findItemLabel(this.el);
|
|
if (label) {
|
|
label.id = labelId;
|
|
}
|
|
|
|
return (
|
|
<Host
|
|
aria-disabled={this.disabled ? 'true' : null}
|
|
class={createColorClasses(this.color, {
|
|
[mode]: true,
|
|
'has-value': this.hasValue(),
|
|
'has-focus': this.hasFocus
|
|
})}
|
|
>
|
|
<input
|
|
class="native-input"
|
|
ref={input => this.nativeInput = input}
|
|
aria-labelledby={label ? labelId : null}
|
|
disabled={this.disabled}
|
|
accept={this.accept}
|
|
autoCapitalize={this.autocapitalize}
|
|
autoComplete={this.autocomplete}
|
|
autoCorrect={this.autocorrect}
|
|
autoFocus={this.autofocus}
|
|
enterKeyHint={this.enterkeyhint}
|
|
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}
|
|
spellcheck={this.spellcheck}
|
|
step={this.step}
|
|
size={this.size}
|
|
type={this.type}
|
|
value={value}
|
|
onInput={this.onInput}
|
|
onBlur={this.onBlur}
|
|
onFocus={this.onFocus}
|
|
onKeyDown={this.onKeydown}
|
|
{...this.inheritedAttributes}
|
|
/>
|
|
{(this.clearInput && !this.readonly && !this.disabled) && <button
|
|
aria-label="reset"
|
|
type="button"
|
|
class="input-clear-icon"
|
|
onTouchStart={this.clearTextInput}
|
|
onMouseDown={this.clearTextInput}
|
|
onKeyDown={this.clearTextOnEnter}
|
|
/>}
|
|
</Host>
|
|
);
|
|
}
|
|
}
|
|
|
|
let inputIds = 0;
|