You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.4 KiB
59 lines
1.4 KiB
6 years ago
|
import PropTypes from 'prop-types';
|
||
|
import React from 'react';
|
||
|
import { kinds } from 'Helpers/Props';
|
||
|
import Alert from 'Components/Alert';
|
||
|
import styles from './Form.css';
|
||
|
|
||
|
function Form({ children, validationErrors, validationWarnings, ...otherProps }) {
|
||
|
return (
|
||
|
<div>
|
||
|
{
|
||
|
validationErrors.length || validationWarnings.length ?
|
||
|
<div className={styles.validationFailures}>
|
||
|
{
|
||
|
validationErrors.map((error, index) => {
|
||
|
return (
|
||
|
<Alert
|
||
|
key={index}
|
||
|
kind={kinds.DANGER}
|
||
|
>
|
||
|
{error.errorMessage}
|
||
|
</Alert>
|
||
|
);
|
||
|
})
|
||
|
}
|
||
|
|
||
|
{
|
||
|
validationWarnings.map((warning, index) => {
|
||
|
return (
|
||
|
<Alert
|
||
|
key={index}
|
||
|
kind={kinds.WARNING}
|
||
|
>
|
||
|
{warning.errorMessage}
|
||
|
</Alert>
|
||
|
);
|
||
|
})
|
||
|
}
|
||
|
</div> :
|
||
|
null
|
||
|
}
|
||
|
|
||
|
{children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
Form.propTypes = {
|
||
|
children: PropTypes.node.isRequired,
|
||
|
validationErrors: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||
|
validationWarnings: PropTypes.arrayOf(PropTypes.object).isRequired
|
||
|
};
|
||
|
|
||
|
Form.defaultProps = {
|
||
|
validationErrors: [],
|
||
|
validationWarnings: []
|
||
|
};
|
||
|
|
||
|
export default Form;
|