1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-26 03:06:28 +02:00
onion/js/third_party/notifications_handler.js
2016-06-14 17:58:00 +02:00

46 lines
1.2 KiB
JavaScript

'use strict';
import { altThirdParty } from '../alt';
import history from '../history';
import EventActions from '../actions/event_actions';
import NotificationActions from '../actions/notification_actions';
import { getCurrentSubdomain } from '../utils/url';
class NotificationsHandler {
constructor() {
this.bindActions(EventActions);
this.loaded = false;
}
onUserDidAuthenticate() {
if (this.loaded) {
return;
}
const subdomain = getCurrentSubdomain();
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');