mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Updating client dependancies. Switching to using yarn. * Updating React * Moving pure components to using function syntax (performance gains with newer react version) * Updating client dependancies. * Ignore .yarninstall * Enabling pre-lockfile because it's the entire point of using yarn. * Removing old webpack config * Moving to new prop-types * Fixing ESLint Errors * Updating jest snapshots. * Cleaning up package.json
75 lines
1.8 KiB
JavaScript
75 lines
1.8 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
// Copyright (c) 2016-present 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 {
|
|
type: PropTypes.node,
|
|
error: PropTypes.node,
|
|
margin: PropTypes.bool,
|
|
errors: PropTypes.arrayOf(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;
|
|
|
|
if (!message) {
|
|
for (const error of this.props.errors) {
|
|
if (error) {
|
|
message = error;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!message) {
|
|
return null;
|
|
}
|
|
|
|
if (this.props.type === 'backstage') {
|
|
return (
|
|
<div className='pull-left has-error'>
|
|
<label className='control-label'>
|
|
{message}
|
|
</label>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (this.props.margin) {
|
|
return (
|
|
<div className='form-group has-error'>
|
|
<label className='control-label'>
|
|
{message}
|
|
</label>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className='col-sm-12 has-error'>
|
|
<label className='control-label'>
|
|
{message}
|
|
</label>
|
|
</div>
|
|
);
|
|
}
|
|
}
|