2017-03-03 20:09:08 +00:00
|
|
|
import React, {PureComponent} from 'react';
|
2017-03-03 01:44:07 +00:00
|
|
|
import autobind from 'autobind-decorator';
|
2016-11-16 17:18:39 +00:00
|
|
|
import classnames from 'classnames';
|
2017-03-08 05:52:17 +00:00
|
|
|
import Link from './base/link';
|
2016-11-23 22:55:09 +00:00
|
|
|
import * as fetch from '../../common/fetch';
|
|
|
|
import {trackEvent} from '../../analytics/index';
|
2017-01-11 20:58:37 +00:00
|
|
|
import * as models from '../../models/index';
|
|
|
|
import * as constants from '../../common/constants';
|
|
|
|
import * as db from '../../common/database';
|
2016-11-16 17:18:39 +00:00
|
|
|
|
|
|
|
const LOCALSTORAGE_KEY = 'insomnia::notifications::seen';
|
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
@autobind
|
2017-02-28 21:32:23 +00:00
|
|
|
class Toast extends PureComponent {
|
2017-03-03 01:44:07 +00:00
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {notification: null, visible: false};
|
|
|
|
}
|
2016-11-16 17:18:39 +00:00
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
_handlePostCTACleanup () {
|
2016-11-28 07:12:17 +00:00
|
|
|
trackEvent('Notification', 'Click', this.state.notification.key);
|
|
|
|
this._dismissNotification();
|
2017-03-03 01:44:07 +00:00
|
|
|
}
|
2016-11-23 22:55:09 +00:00
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
_handleCancelClick () {
|
2016-11-28 07:12:17 +00:00
|
|
|
trackEvent('Notification', 'Dismiss', this.state.notification.key);
|
|
|
|
this._dismissNotification();
|
2017-03-03 01:44:07 +00:00
|
|
|
}
|
2016-11-23 22:55:09 +00:00
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
async _handleCheckNotifications () {
|
2016-11-23 22:55:09 +00:00
|
|
|
// 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();
|
2017-01-11 20:58:37 +00:00
|
|
|
const stats = await models.stats.get();
|
2016-11-16 17:18:39 +00:00
|
|
|
|
2016-11-23 22:55:09 +00:00
|
|
|
let notification;
|
|
|
|
try {
|
2017-02-08 00:31:48 +00:00
|
|
|
const data = {
|
|
|
|
lastLaunch: stats.lastLaunch,
|
|
|
|
firstLaunch: stats.created,
|
|
|
|
launches: stats.launches,
|
|
|
|
platform: constants.getAppPlatform(),
|
|
|
|
version: constants.getAppVersion(),
|
|
|
|
requests: await db.count(models.request.type),
|
|
|
|
requestGroups: await db.count(models.requestGroup.type),
|
|
|
|
environments: await db.count(models.environment.type),
|
2017-03-03 20:09:08 +00:00
|
|
|
workspaces: await db.count(models.workspace.type)
|
2017-02-08 00:31:48 +00:00
|
|
|
};
|
2017-01-11 20:58:37 +00:00
|
|
|
|
2017-02-08 00:31:48 +00:00
|
|
|
notification = await fetch.post(`/notification`, data);
|
2016-11-23 22:55:09 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.warn('[toast] Failed to fetch notifications', e);
|
|
|
|
}
|
2016-11-16 17:18:39 +00:00
|
|
|
|
2016-11-23 22:55:09 +00:00
|
|
|
// No new notifications
|
|
|
|
if (!notification) {
|
|
|
|
return;
|
2016-11-16 17:18:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-23 22:55:09 +00:00
|
|
|
// We've already seen this one, so bail
|
|
|
|
if (seenNotifications && seenNotifications[notification.key]) {
|
|
|
|
return;
|
2016-11-16 17:18:39 +00:00
|
|
|
}
|
2016-11-23 19:33:24 +00:00
|
|
|
|
2016-11-23 23:12:32 +00:00
|
|
|
// Remember that we've seen it
|
|
|
|
seenNotifications[notification.key] = true;
|
2017-03-03 20:09:08 +00:00
|
|
|
const obj = JSON.stringify(seenNotifications, null, 2);
|
|
|
|
window.localStorage.setItem(LOCALSTORAGE_KEY, obj);
|
2016-11-23 23:12:32 +00:00
|
|
|
|
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);
|
2017-03-03 01:44:07 +00:00
|
|
|
}
|
2016-11-28 07:12:17 +00:00
|
|
|
|
|
|
|
_loadSeen () {
|
|
|
|
try {
|
2017-03-03 20:09:08 +00:00
|
|
|
return JSON.parse(window.localStorage.getItem(LOCALSTORAGE_KEY)) || {};
|
2016-11-28 07:12:17 +00:00
|
|
|
} catch (e) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_dismissNotification () {
|
|
|
|
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-16 17:18:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount () {
|
2016-11-28 07:12:17 +00:00
|
|
|
setTimeout(this._handleCheckNotifications, 1000 * 10);
|
|
|
|
this._interval = setInterval(this._handleCheckNotifications, 1000 * 60 * 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
clearInterval(this._interval);
|
2016-11-16 17:18:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const {notification, visible} = this.state;
|
|
|
|
|
2016-11-23 19:33:24 +00:00
|
|
|
if (!notification) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-11-16 17:18:39 +00:00
|
|
|
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"
|
2016-11-28 07:12:17 +00:00
|
|
|
onClick={this._handlePostCTACleanup}
|
2017-03-01 21:15:56 +00:00
|
|
|
button
|
2016-11-23 23:12:32 +00:00
|
|
|
href={notification.url}>
|
|
|
|
{notification.cta}
|
|
|
|
</Link>
|
|
|
|
</div>
|
2016-11-23 22:55:09 +00:00
|
|
|
<div className="toast__action toast__action--close">
|
2017-01-19 22:36:42 +00:00
|
|
|
<button className="btn btn--super-duper-compact"
|
|
|
|
title="Dismiss notification"
|
|
|
|
onClick={this._handleCancelClick}>
|
2016-11-23 22:55:09 +00:00
|
|
|
<i className="fa fa-close"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
2016-11-16 17:18:39 +00:00
|
|
|
</div>
|
2017-03-03 20:09:08 +00:00
|
|
|
);
|
2016-11-16 17:18:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Toast.propTypes = {};
|
|
|
|
|
|
|
|
export default Toast;
|