mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import GlobalNotificationStore from '../stores/global_notification_store';
|
|
|
|
import Row from 'react-bootstrap/lib/Row';
|
|
import Col from 'react-bootstrap/lib/Col';
|
|
|
|
let GlobalNotification = React.createClass({
|
|
|
|
componentDidMount() {
|
|
GlobalNotificationStore.listen(this.onChange);
|
|
},
|
|
|
|
componentWillUnmount() {
|
|
GlobalNotificationStore.unlisten(this.onChange);
|
|
},
|
|
|
|
getInititalState() {
|
|
return this.extractFirstElem(GlobalNotificationStore.getState().notificationQue);
|
|
},
|
|
|
|
extractFirstElem(l) {
|
|
return l.length > 0 ? l[0] : null;
|
|
},
|
|
|
|
onChange(state) {
|
|
let notification = this.extractFirstElem(state.notificationQue);
|
|
|
|
if(notification) {
|
|
this.setState(notification);
|
|
} else {
|
|
this.replaceState(null);
|
|
}
|
|
},
|
|
|
|
render() {
|
|
let notificationClass = 'ascribe-global-notification ';
|
|
let message = this.state && this.state.message ? this.state.message : null;
|
|
|
|
if(message) {
|
|
let colors = {
|
|
warning: '#f0ad4e',
|
|
success: '#5cb85c',
|
|
info: 'rgba(2, 182, 163, 1)',
|
|
danger: '#d9534f'
|
|
};
|
|
|
|
let text = (<div style={{color: colors[this.state.type]}}>{message ? message : null}</div>);
|
|
|
|
return (
|
|
<Row>
|
|
<Col>
|
|
<div className={notificationClass + 'ascribe-global-notification-on'}>
|
|
{text}
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
);
|
|
} else {
|
|
return (
|
|
<Row>
|
|
<Col>
|
|
<div className={notificationClass + 'ascribe-global-notification-off'} />
|
|
</Col>
|
|
</Row>
|
|
);
|
|
}
|
|
}
|
|
});
|
|
|
|
export default GlobalNotification; |