mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
509aa111ab
Conflicts: gulpfile.js added notifications cleaned up proptypes
40 lines
754 B
JavaScript
40 lines
754 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Alert from 'react-bootstrap/lib/Alert';
|
|
|
|
let AlertDismissable = React.createClass({
|
|
propTypes: {
|
|
error: React.PropTypes.array.isRequired
|
|
},
|
|
|
|
getInitialState() {
|
|
return {
|
|
alertVisible: true
|
|
};
|
|
},
|
|
|
|
show() {
|
|
this.setState({alertVisible: true});
|
|
},
|
|
|
|
hide() {
|
|
this.setState({alertVisible: false});
|
|
},
|
|
|
|
render() {
|
|
if (this.state.alertVisible) {
|
|
return (
|
|
<Alert bsStyle='danger' onDismiss={this.hide}>
|
|
{this.props.error}
|
|
</Alert>
|
|
);
|
|
}
|
|
return (
|
|
<span />
|
|
);
|
|
}
|
|
});
|
|
|
|
export default AlertDismissable;
|