'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 = (
{message ? message : null}
); return (
{text}
); } else { return (
); } } }); export default GlobalNotification;