1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/error/error-component.jsx

29 lines
773 B
React
Raw Normal View History

2016-11-10 14:26:24 +01:00
import Snackbar from 'react-toolbox/lib/snackbar';
import React, { PropTypes } from 'react';
class ErrorComponent extends React.Component {
static propTypes () {
return {
errors: PropTypes.array.isRequired,
muteError: PropTypes.func.isRequired,
};
}
render () {
const showError = this.props.errors.length > 0;
const error = showError ? this.props.errors[0] : undefined;
return (
<Snackbar
action="Dismiss"
active={showError}
icon="question_answer"
label={error}
onClick={() => this.props.muteError(error)}
type="warning"
/>
);
}
}
export default ErrorComponent;