summaryrefslogtreecommitdiffstats
path: root/client/components/notifications/notificationsDrawer.js
blob: 98d4750da642a9a0dadaf670c8b21f17b91a2c70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { toggleNotificationsDrawer } from './notifications.js';

Template.notificationsDrawer.onCreated(function() {
  Meteor.subscribe('notificationActivities');
  Meteor.subscribe('notificationCards');
  Meteor.subscribe('notificationUsers');
  Meteor.subscribe('notificationsAttachments');
  Meteor.subscribe('notificationChecklistItems');
  Meteor.subscribe('notificationChecklists');
  Meteor.subscribe('notificationComments');
  Meteor.subscribe('notificationLists');
  Meteor.subscribe('notificationSwimlanes');
});

Template.notificationsDrawer.helpers({
  transformedProfile() {
    return Users.findOne(Meteor.userId());
  },
});

Template.notificationsDrawer.events({
  'click .all-read'() {
    const notifications = Meteor.user().profile.notifications;
    for (const index in notifications) {
      if (notifications.hasOwnProperty(index) && !notifications[index].read) {
        const update = {};
        update[`profile.notifications.${index}.read`] = Date.now();
        Users.update(Meteor.userId(), { $set: update });
      }
    }
  },
  'click .close'() {
    toggleNotificationsDrawer();
  },
  'click .toggle-read'() {
    Session.set('showReadNotifications', !Session.get('showReadNotifications'));
  },
});