|
|
import { FormInputValidation, FormLabel } from '@automattic/components'; |
|
|
import clsx from 'clsx'; |
|
|
import { Component } from 'react'; |
|
|
import FormSettingExplanation from 'calypso/components/forms/form-setting-explanation'; |
|
|
import FormTextInput from 'calypso/components/forms/form-text-input'; |
|
|
import { gaRecordEvent } from 'calypso/lib/analytics/ga'; |
|
|
import scrollIntoViewport from 'calypso/lib/scroll-into-viewport'; |
|
|
|
|
|
export default class Input extends Component { |
|
|
static defaultProps = { autoFocus: false, autoComplete: 'on' }; |
|
|
|
|
|
inputRef = ( element ) => { |
|
|
this.inputElement = element; |
|
|
|
|
|
if ( ! this.props.inputRef ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
if ( typeof inputRef === 'function' ) { |
|
|
this.props.inputRef( element ); |
|
|
} else { |
|
|
this.props.inputRef.current = element; |
|
|
} |
|
|
}; |
|
|
|
|
|
componentDidMount() { |
|
|
this.setupInputModeHandlers(); |
|
|
this.autoFocusInput(); |
|
|
} |
|
|
|
|
|
setupInputModeHandlers = () => { |
|
|
const inputElement = this.inputRef.current; |
|
|
|
|
|
if ( inputElement && this.props.inputMode === 'numeric' ) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inputElement.addEventListener( 'touchstart', () => ( inputElement.pattern = '\\d*' ) ); |
|
|
|
|
|
[ 'keydown', 'blur' ].forEach( ( eventName ) => |
|
|
inputElement.addEventListener( eventName, () => ( inputElement.pattern = '.*' ) ) |
|
|
); |
|
|
} |
|
|
}; |
|
|
|
|
|
componentDidUpdate( oldProps ) { |
|
|
if ( oldProps.disabled && ! this.props.disabled ) { |
|
|
|
|
|
|
|
|
this.autoFocusInput(); |
|
|
} |
|
|
} |
|
|
|
|
|
focus = () => { |
|
|
const node = this.inputElement; |
|
|
if ( node ) { |
|
|
node.focus(); |
|
|
scrollIntoViewport( node, { |
|
|
behavior: 'smooth', |
|
|
scrollMode: 'if-needed', |
|
|
} ); |
|
|
} |
|
|
}; |
|
|
|
|
|
autoFocusInput = () => { |
|
|
if ( this.props.autoFocus ) { |
|
|
this.focus(); |
|
|
} |
|
|
}; |
|
|
|
|
|
recordFieldClick = () => { |
|
|
if ( this.props.eventFormName ) { |
|
|
gaRecordEvent( 'Upgrades', `Clicked ${ this.props.eventFormName } Field`, this.props.name ); |
|
|
} |
|
|
}; |
|
|
|
|
|
render() { |
|
|
const classes = clsx( |
|
|
this.props.additionalClasses, |
|
|
this.props.name, |
|
|
this.props.labelClass, |
|
|
this.props.classes |
|
|
); |
|
|
|
|
|
const validationId = `validation-field-${ this.props.name }`; |
|
|
|
|
|
return ( |
|
|
<div className={ classes }> |
|
|
<FormLabel htmlFor={ this.props.name } { ...this.props.labelProps }> |
|
|
{ this.props.label } |
|
|
</FormLabel> |
|
|
<FormTextInput |
|
|
aria-invalid={ this.props.isError } |
|
|
aria-describedby={ validationId } |
|
|
placeholder={ this.props.placeholder ? this.props.placeholder : this.props.label } |
|
|
id={ this.props.name } |
|
|
value={ this.props.value } |
|
|
name={ this.props.name } |
|
|
autoFocus={ this.props.autoFocus } // eslint-disable-line jsx-a11y/no-autofocus |
|
|
autoComplete={ this.props.autoComplete } |
|
|
disabled={ this.props.disabled } |
|
|
maxLength={ this.props.maxLength } |
|
|
onBlur={ this.props.onBlur } |
|
|
onChange={ this.props.onChange } |
|
|
onClick={ this.recordFieldClick } |
|
|
isError={ this.props.isError } |
|
|
inputRef={ this.inputRef } |
|
|
/> |
|
|
{ this.props.errorMessage && ( |
|
|
<FormInputValidation id={ validationId } text={ this.props.errorMessage } isError /> |
|
|
) } |
|
|
{ this.props.description && ! this.props.errorMessage && ( |
|
|
<FormSettingExplanation>{ this.props.description }</FormSettingExplanation> |
|
|
) } |
|
|
</div> |
|
|
); |
|
|
} |
|
|
} |
|
|
|