insomnia/app/ui/components/toast.js

153 lines
4.2 KiB
JavaScript
Raw Normal View History

import React, {PureComponent} from 'react';
import autobind from 'autobind-decorator';
import classnames from 'classnames';
import GravatarImg from './gravatar-img';
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';
const LOCALSTORAGE_KEY = 'insomnia::notifications::seen';
@autobind
class Toast extends PureComponent {
constructor (props) {
super(props);
this.state = {notification: null, visible: false};
}
_handlePostCTACleanup () {
2016-11-28 07:12:17 +00:00
trackEvent('Notification', 'Click', this.state.notification.key);
this._dismissNotification();
}
2016-11-23 22:55:09 +00:00
_handleCancelClick () {
2016-11-28 07:12:17 +00:00
trackEvent('Notification', 'Dismiss', this.state.notification.key);
this._dismissNotification();
}
2016-11-23 22:55:09 +00:00
_hasSeenNotification (notification) {
const seenNotifications = this._loadSeen();
return seenNotifications[notification.key];
}
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;
}
2017-01-11 20:58:37 +00:00
const stats = await models.stats.get();
2016-11-23 22:55:09 +00:00
let notification;
2017-01-11 20:58:37 +00:00
// Try fetching user notification
2017-07-31 21:14:16 +00:00
try {
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),
workspaces: await db.count(models.workspace.type)
};
2017-07-31 21:14:16 +00:00
notification = await fetch.post(`/notification`, data);
} catch (err) {
console.warn('[toast] Failed to fetch user notifications', err);
}
// No new notifications
if (!notification || this._hasSeenNotification(notification)) {
2016-11-23 22:55:09 +00:00
return;
}
2016-11-23 23:12:32 +00:00
// Remember that we've seen it
const seenNotifications = this._loadSeen();
2016-11-23 23:12:32 +00:00
seenNotifications[notification.key] = true;
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);
}
2016-11-28 07:12:17 +00:00
_loadSeen () {
try {
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);
}
componentDidMount () {
2016-11-28 07:12:17 +00:00
setTimeout(this._handleCheckNotifications, 1000 * 10);
2017-07-31 20:45:47 +00:00
this._interval = setInterval(this._handleCheckNotifications, 1000 * 60 * 30);
2016-11-28 07:12:17 +00:00
}
componentWillUnmount () {
clearInterval(this._interval);
}
render () {
const {notification, visible} = this.state;
if (!notification) {
return null;
}
return (
<div className={classnames('toast', {'toast--show': visible})}>
<div className="toast__image">
<GravatarImg email={notification.email || 'gschier1990@gmail.com'} size={100}/>
</div>
<div className="toast__content">
<p className="toast__message">
{notification ? notification.message : 'Unknown'}
</p>
<footer className="toast__actions">
<button className="btn btn--super-duper-compact btn--outlined"
onClick={this._handleCancelClick}>
Dismiss
</button>
&nbsp;&nbsp;
<Link button
className="btn btn--super-duper-compact btn--outlined no-wrap"
onClick={this._handlePostCTACleanup}
href={notification.url}>
{notification.cta}
</Link>
</footer>
2016-11-23 22:55:09 +00:00
</div>
</div>
);
}
}
Toast.propTypes = {};
export default Toast;