mirror of https://github.com/linkerd/linkerd2.git
50 lines
1.0 KiB
JavaScript
50 lines
1.0 KiB
JavaScript
import _ from 'lodash';
|
|
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { Col, Row } from 'antd';
|
|
|
|
const defaultErrorMsg = "An error has occurred";
|
|
|
|
class ErrorMessage extends React.Component {
|
|
static propTypes = {
|
|
message: PropTypes.string.isRequired,
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.hideMessage = this.hideMessage.bind(this);
|
|
this.state = {
|
|
visible: true
|
|
};
|
|
}
|
|
|
|
componentWillReceiveProps(newProps) {
|
|
if (!_.isEmpty(newProps.message)) {
|
|
this.setState({ visible :true });
|
|
}
|
|
}
|
|
|
|
hideMessage() {
|
|
this.setState({
|
|
visible: false
|
|
});
|
|
}
|
|
|
|
render() {
|
|
return !this.state.visible ? null : (
|
|
<Row gutter={0}>
|
|
<div className="error-message-container">
|
|
<Col span={20}>
|
|
{this.props.message || defaultErrorMsg}
|
|
</Col>
|
|
<Col span={4}>
|
|
<div className="dismiss" onClick={this.hideMessage} role="presentation">Dismiss X</div>
|
|
</Col>
|
|
</div>
|
|
</Row>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ErrorMessage;
|