1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 08:37:59 +02:00
onion/js/third_party/notifications_handler.js
2016-02-05 10:38:59 +01:00

47 lines
1.2 KiB
JavaScript

'use strict';
import history from '../history';
import { altThirdParty } from '../alt';
import EventActions from '../actions/event_actions';
import NotificationActions from '../actions/notification_actions';
import { getSubdomain } from '../utils/general_utils';
class NotificationsHandler {
constructor() {
this.bindActions(EventActions);
this.loaded = false;
}
onUserDidAuthenticate() {
if (this.loaded) {
return;
}
const subdomain = getSubdomain();
if (subdomain === 'ikonotv') {
NotificationActions.fetchContractAgreementListNotifications().then(
(res) => {
if (res.notifications && res.notifications.length > 0) {
console.log('Contractagreement notifications loaded');
this.loaded = true;
history.push('/contract_notifications');
}
}
);
}
this.loaded = true;
}
onUserDidLogout() {
this.loaded = false;
}
}
export default altThirdParty.createStore(NotificationsHandler, 'NotificationsHandler');