2016-03-28 09:41:03 -04:00
|
|
|
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
export default class FormError extends React.Component {
|
|
|
|
|
static get propTypes() {
|
|
|
|
|
// accepts either a single error or an array of errors
|
|
|
|
|
return {
|
|
|
|
|
error: React.PropTypes.node,
|
2016-06-16 22:20:43 +05:00
|
|
|
noMargin: React.PropTypes.node,
|
2016-03-28 09:41:03 -04:00
|
|
|
errors: React.PropTypes.arrayOf(React.PropTypes.node)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static get defaultProps() {
|
|
|
|
|
return {
|
|
|
|
|
error: null,
|
|
|
|
|
errors: []
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
if (!this.props.error && this.props.errors.length === 0) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// look for the first truthy error to display
|
|
|
|
|
let message = this.props.error;
|
2016-06-16 22:20:43 +05:00
|
|
|
const noMargin = this.props.noMargin;
|
2016-03-28 09:41:03 -04:00
|
|
|
|
|
|
|
|
if (!message) {
|
|
|
|
|
for (const error of this.props.errors) {
|
|
|
|
|
if (error) {
|
|
|
|
|
message = error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!message) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-16 22:20:43 +05:00
|
|
|
if (noMargin) {
|
|
|
|
|
return (
|
|
|
|
|
<div className='has-error'>
|
|
|
|
|
<label className='control-label'>
|
|
|
|
|
{message}
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-28 09:41:03 -04:00
|
|
|
return (
|
|
|
|
|
<div className='form-group has-error'>
|
|
|
|
|
<label className='control-label'>
|
|
|
|
|
{message}
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|