insomnia/app/ui/components/Toast.js

118 lines
3.1 KiB
JavaScript
Raw Normal View History

import React, {PropTypes, Component} from 'react';
import classnames from 'classnames';
2016-11-23 22:55:09 +00:00
import Link from './base/Link';
import * as fetch from '../../common/fetch';
import {trackEvent} from '../../analytics/index';
const LOCALSTORAGE_KEY = 'insomnia::notifications::seen';
class Toast extends Component {
2016-11-26 08:29:16 +00:00
state = {notification: null, visible: false};
_loadSeen () {
try {
return JSON.parse(localStorage.getItem(LOCALSTORAGE_KEY)) || {};
} catch (e) {
return {};
}
}
2016-11-23 22:55:09 +00:00
_handleDismissActiveNotification () {
const {notification} = this.state;
if (!notification) {
return;
}
// Hide the currently showing notification
this.setState({visible: false});
// Give time for toast to fade out, then remove it
setTimeout(() => {
this.setState({notification: null});
}, 1000);
}
2016-11-23 22:55:09 +00:00
async _handleCheckNotifications () {
// If there is a notification open, skip check
if (this.state.notification) {
2016-11-17 21:22:19 +00:00
return;
}
2016-11-23 22:55:09 +00:00
const seenNotifications = this._loadSeen();
2016-11-23 22:55:09 +00:00
let notification;
try {
notification = await fetch.get('/notification');
} catch (e) {
console.warn('[toast] Failed to fetch notifications', e);
}
2016-11-23 22:55:09 +00:00
// No new notifications
if (!notification) {
return;
}
2016-11-23 22:55:09 +00:00
// We've already seen this one, so bail
if (seenNotifications && seenNotifications[notification.key]) {
return;
}
2016-11-23 23:12:32 +00:00
// Remember that we've seen it
seenNotifications[notification.key] = true;
localStorage.setItem(LOCALSTORAGE_KEY, JSON.stringify(seenNotifications, null, 2));
2016-11-23 22:55:09 +00:00
// Show the notification
this.setState({notification, visible: false});
// Fade the notification in
setTimeout(() => this.setState({visible: true}), 1000);
2016-11-23 23:12:32 +00:00
trackEvent('Notification', 'Shown', notification.key);
}
componentDidMount () {
2016-11-23 23:42:10 +00:00
setTimeout(() => this._handleCheckNotifications(), 1000 * 10);
setInterval(() => this._handleCheckNotifications(), 1000 * 60 * 10);
}
render () {
const {notification, visible} = this.state;
if (!notification) {
return null;
}
return (
<div className={classnames('toast', {'toast--show': visible})}>
<div className="toast__message">
{notification ? notification.message : 'Unknown'}
</div>
2016-11-23 23:12:32 +00:00
<div className="toast__action">
<Link className="btn btn--super-duper-compact btn--outlined no-wrap"
onClick={e => {
trackEvent('Notification', 'Click', notification.key);
this._handleDismissActiveNotification();
}}
button={true}
href={notification.url}>
{notification.cta}
</Link>
</div>
2016-11-23 22:55:09 +00:00
<div className="toast__action toast__action--close">
<button className="btn btn--super-duper-compact"
2016-11-23 23:12:32 +00:00
onClick={e => {
this._handleDismissActiveNotification();
trackEvent('Notification', 'Dismiss', notification.key);
}}>
2016-11-23 22:55:09 +00:00
<i className="fa fa-close"></i>
</button>
</div>
</div>
)
}
}
Toast.propTypes = {};
export default Toast;