mirror of
https://github.com/strapi/strapi.git
synced 2025-09-08 08:08:18 +00:00
187 lines
4.5 KiB
JavaScript
187 lines
4.5 KiB
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* InputSelectWithErrors;
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import { includes, isEmpty, isFunction, mapKeys, reject } from 'lodash';
|
||
|
import cn from 'classnames';
|
||
|
|
||
|
// Design
|
||
|
import Label from 'components/Label';
|
||
|
import InputDescription from 'components/InputDescription';
|
||
|
import InputErrors from 'components/InputErrors';
|
||
|
import InputSelect from 'components/InputSelect'
|
||
|
|
||
|
import styles from './styles.scss';
|
||
|
|
||
|
class InputSelectWithErrors extends React.Component {
|
||
|
state = { errors: [] };
|
||
|
|
||
|
componentDidMount() {
|
||
|
const { errors } = this.props;
|
||
|
// Display input error if it already has some
|
||
|
if (!isEmpty(errors)) {
|
||
|
this.setState({ errors });
|
||
|
}
|
||
|
}
|
||
|
|
||
|
componentWillReceiveProps(nextProps) {
|
||
|
// Check if errors have been updated during validations
|
||
|
if (nextProps.didCheckErrors !== this.props.didCheckErrors) {
|
||
|
// Remove from the state the errors that have already been set
|
||
|
const errors = isEmpty(nextProps.errors) ? [] : nextProps.errors;
|
||
|
this.setState({ errors });
|
||
|
}
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
const {
|
||
|
autoFocus,
|
||
|
className,
|
||
|
customBootstrapClass,
|
||
|
deactivateErrorHighlight,
|
||
|
disabled,
|
||
|
errors,
|
||
|
errorsClassName,
|
||
|
errorsStyle,
|
||
|
inputClassName,
|
||
|
inputDescription,
|
||
|
inputDescriptionClassName,
|
||
|
inputDescriptionStyle,
|
||
|
inputStyle,
|
||
|
label,
|
||
|
labelClassName,
|
||
|
labelStyle,
|
||
|
name,
|
||
|
onBlur,
|
||
|
onChange,
|
||
|
onFocus,
|
||
|
selectOptions,
|
||
|
style,
|
||
|
tabIndex,
|
||
|
value,
|
||
|
} = this.props;
|
||
|
|
||
|
return (
|
||
|
<div className={cn(
|
||
|
styles.container,
|
||
|
customBootstrapClass,
|
||
|
!isEmpty(className) && className,
|
||
|
)}
|
||
|
style={style}
|
||
|
>
|
||
|
<Label
|
||
|
className={labelClassName}
|
||
|
htmlFor={name}
|
||
|
message={label}
|
||
|
style={labelStyle}
|
||
|
/>
|
||
|
<InputSelect
|
||
|
autoFocus={autoFocus}
|
||
|
className={inputClassName}
|
||
|
deactivateErrorHighlight={deactivateErrorHighlight}
|
||
|
disabled={disabled}
|
||
|
error={!isEmpty(this.state.errors)}
|
||
|
name={name}
|
||
|
onBlur={onBlur}
|
||
|
onChange={onChange}
|
||
|
onFocus={onFocus}
|
||
|
selectOptions={selectOptions}
|
||
|
style={inputStyle}
|
||
|
tabIndex={tabIndex}
|
||
|
value={value}
|
||
|
/>
|
||
|
<InputDescription
|
||
|
className={inputDescriptionClassName}
|
||
|
message={inputDescription}
|
||
|
style={inputDescriptionStyle}
|
||
|
/>
|
||
|
<InputErrors
|
||
|
className={errorsClassName}
|
||
|
errors={this.state.errors}
|
||
|
style={errorsStyle}
|
||
|
/>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
InputSelectWithErrors.defaultProps = {
|
||
|
autoFocus: false,
|
||
|
className: '',
|
||
|
customBootstrapClass: 'col-md-6',
|
||
|
deactivateErrorHighlight: false,
|
||
|
didCheckErrors: false,
|
||
|
disabled: false,
|
||
|
errors: [],
|
||
|
errorsClassName: '',
|
||
|
errorsStyle: {},
|
||
|
inputClassName: '',
|
||
|
inputDescription: '',
|
||
|
inputDescriptionClassName: '',
|
||
|
inputDescriptionStyle: {},
|
||
|
inputStyle: {},
|
||
|
label: '',
|
||
|
labelClassName: '',
|
||
|
labelStyle: {},
|
||
|
onBlur: () => {},
|
||
|
onFocus: () => {},
|
||
|
selectOptions: [],
|
||
|
style: {},
|
||
|
tabIndex: '0',
|
||
|
};
|
||
|
|
||
|
InputSelectWithErrors.propTypes = {
|
||
|
autoFocus: PropTypes.bool,
|
||
|
className: PropTypes.string,
|
||
|
customBootstrapClass: PropTypes.string,
|
||
|
deactivateErrorHighlight: PropTypes.bool,
|
||
|
didCheckErrors: PropTypes.bool,
|
||
|
disabled: PropTypes.bool,
|
||
|
errors: PropTypes.array,
|
||
|
errorsClassName: PropTypes.string,
|
||
|
errorsStyle: PropTypes.object,
|
||
|
inputClassName: PropTypes.string,
|
||
|
inputDescription: PropTypes.oneOfType([
|
||
|
PropTypes.string,
|
||
|
PropTypes.func,
|
||
|
PropTypes.shape({
|
||
|
id: PropTypes.string,
|
||
|
params: PropTypes.object,
|
||
|
}),
|
||
|
]),
|
||
|
inputDescriptionClassName: PropTypes.string,
|
||
|
inputDescriptionStyle: PropTypes.object,
|
||
|
inputStyle: PropTypes.object,
|
||
|
label: PropTypes.oneOfType([
|
||
|
PropTypes.string,
|
||
|
PropTypes.func,
|
||
|
PropTypes.shape({
|
||
|
id: PropTypes.string,
|
||
|
params: PropTypes.object,
|
||
|
}),
|
||
|
]),
|
||
|
labelClassName: PropTypes.string,
|
||
|
labelStyle: PropTypes.object,
|
||
|
name: PropTypes.string.isRequired,
|
||
|
onBlur: PropTypes.func,
|
||
|
onChange: PropTypes.func.isRequired,
|
||
|
onFocus: PropTypes.func,
|
||
|
selectOptions: PropTypes.arrayOf(
|
||
|
PropTypes.shape({
|
||
|
id: PropTypes.string,
|
||
|
name: PropTypes.string,
|
||
|
params: PropTypes.object,
|
||
|
value: PropTypes.string.isRequired,
|
||
|
}).isRequired,
|
||
|
),
|
||
|
style: PropTypes.object,
|
||
|
tabIndex: PropTypes.string,
|
||
|
value: PropTypes.string.isRequired,
|
||
|
};
|
||
|
|
||
|
export default InputSelectWithErrors;
|