@financial-times/n-conversion-forms
Version:
Containing jsx components and styles for forms included on Accounts and Acqusition apps (next-signup, next-profile, next-retention, etc).
74 lines (69 loc) • 1.73 kB
JSX
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
export function TextInput({
dataTrackable,
errorText = 'Please enter a value',
fieldId,
hasError = false,
inputId,
inputName,
isDisabled = false,
isRequired = false,
label = '',
placeHolder = '',
value = '',
description,
}) {
// Use inputId if inputName is not explicitly passed.
inputName = inputName || inputId;
const inputWrapperClassNames = classNames([
'o-forms-input',
'o-forms-input--text',
{ 'o-forms-input--invalid': hasError },
{ 'o-forms-field--optional': !isRequired },
]);
return (
<label
id={fieldId}
className="o-forms-field ncf__validation-error"
data-validate="required"
htmlFor={inputId}
>
<span className="o-forms-title">
<span className="o-forms-title__main">{label}</span>
{description ? (
<span className="o-forms-title__prompt">{description}</span>
) : null}
</span>
<span className={inputWrapperClassNames}>
<input
type="text"
id={inputId}
name={inputName}
placeholder={placeHolder}
data-trackable={dataTrackable}
aria-required={isRequired}
required={isRequired}
disabled={isDisabled}
defaultValue={value}
/>
<span className="o-forms-input__error">{errorText}</span>
</span>
</label>
);
}
TextInput.propTypes = {
dataTrackable: PropTypes.string,
errorText: PropTypes.string,
fieldId: PropTypes.string,
hasError: PropTypes.bool,
inputId: PropTypes.string,
inputName: PropTypes.string,
isDisabled: PropTypes.bool,
isRequired: PropTypes.bool,
label: PropTypes.string,
placeHolder: PropTypes.string,
value: PropTypes.string,
description: PropTypes.string,
};