2015-09-04 11:49:55 +02:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-06 16:47:59 +02:00
|
|
|
import { altThirdParty } from '../alt';
|
2015-09-04 11:49:55 +02:00
|
|
|
import EventActions from '../actions/event_actions';
|
|
|
|
|
|
|
|
import NotificationActions from '../actions/notification_actions';
|
|
|
|
|
2015-09-29 14:58:56 +02:00
|
|
|
import { getSubdomain } from '../utils/general_utils';
|
|
|
|
|
2015-09-04 11:49:55 +02:00
|
|
|
|
|
|
|
class NotificationsHandler {
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.bindActions(EventActions);
|
|
|
|
this.loaded = false;
|
|
|
|
}
|
|
|
|
|
2015-09-29 14:58:56 +02:00
|
|
|
onProfileDidLoad() {
|
2015-09-04 11:49:55 +02:00
|
|
|
if (this.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
2015-09-29 14:58:56 +02:00
|
|
|
let subdomain = getSubdomain();
|
2015-09-04 11:49:55 +02:00
|
|
|
if (subdomain === 'ikonotv') {
|
|
|
|
NotificationActions.fetchContractAgreementListNotifications().then(
|
|
|
|
(res) => {
|
|
|
|
if (res.notifications && res.notifications.length > 0) {
|
|
|
|
this.loaded = true;
|
|
|
|
console.log('Contractagreement notifications loaded');
|
|
|
|
setTimeout(() => window.appRouter.transitionTo('contract_notifications'), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
this.loaded = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-06 16:47:59 +02:00
|
|
|
export default altThirdParty.createStore(NotificationsHandler, 'NotificationsHandler');
|