forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotificationDrawerWrapper.js
351 lines (311 loc) · 11.9 KB
/
notificationDrawerWrapper.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
'use strict';
(function() {
angular
.module('openshiftConsole')
// shim for communicationg with pfNotificationDrawer
.component('notificationDrawerWrapper', {
templateUrl: 'views/directives/notifications/notification-drawer-wrapper.html',
controller: [
'$filter',
'$interval',
'$location',
'$timeout',
'$routeParams',
'$rootScope',
'Constants',
'DataService',
'EventsService',
'NotificationsService',
NotificationDrawerWrapper
]
});
function NotificationDrawerWrapper(
$filter,
$interval,
$location,
$timeout,
$routeParams,
$rootScope,
Constants,
DataService,
EventsService) {
// kill switch if watching events is too expensive
var DISABLE_GLOBAL_EVENT_WATCH = _.get(Constants, 'DISABLE_GLOBAL_EVENT_WATCH');
var LIMIT_WATCHES = $filter('isIE')();
var drawer = this;
// global event watches
var rootScopeWatches = [];
// this one is treated separately from the rootScopeWatches as
// it may need to be updated outside of the lifecycle of init/destroy
var notificationListener;
var apiEventsWatcher;
// data
var apiEventsMap = {
// projName: { events }
};
var notificationsMap = {
// projName: { notifications }
};
var projects = {};
var hideIfNoProject = function(projectName) {
if(!projectName) {
drawer.drawerHidden = true;
}
};
var projectChanged = function(next, current) {
return _.get(next, 'params.project') !== _.get(current, 'params.project');
};
var getProject = function(projectName) {
return DataService
.get('projects', projectName, {}, {errorNotification: false})
.then(function(project) {
projects[project.metadata.name] = project;
return project;
});
};
var makeProjectGroup = function(projectName, notifications) {
return {
heading: $filter('displayName')(projects[projectName]),
project: projects[projectName],
notifications: notifications
};
};
var unread = function(notifications) {
return _.filter(notifications, 'unread');
};
var countUnreadNotifications = function() {
_.each(drawer.notificationGroups, function(group) {
group.totalUnread = unread(group.notifications).length;
group.hasUnread = !!group.totalUnread;
$rootScope.$emit('NotificationDrawerWrapper.onUnreadNotifications', group.totalUnread);
});
};
var removeNotificationFromGroup = function(notification) {
_.each(drawer.notificationGroups, function(group) {
_.remove(group.notifications, { uid: notification.uid, namespace: notification.namespace });
});
};
var remove = function(notification) {
// remove the notification from the underlying maps.
// this ensures no ghost notifications linger.
if(notificationsMap[$routeParams.project]) {
delete notificationsMap[$routeParams.project][notification.uid];
}
if(apiEventsMap[$routeParams.project]) {
delete apiEventsMap[$routeParams.project][notification.uid];
}
// then remove it from the map that is rendered to UI.
removeNotificationFromGroup(notification);
};
var removeAllForProject = function() {
apiEventsMap[$routeParams.project] = {};
notificationsMap[$routeParams.project] = {};
};
var formatAPIEvents = function(apiEvents) {
return _.reduce(apiEvents, function(result, event) {
result[event.metadata.uid] = {
actions: null,
uid: event.metadata.uid,
trackByID: event.metadata.uid,
unread: !EventsService.isRead(event.metadata.uid),
type: event.type,
lastTimestamp: event.lastTimestamp,
firstTimestamp: event.firstTimestamp,
event: event
};
return result;
}, {});
};
var filterAPIEvents = function(events) {
return _.reduce(events, function(result, event) {
if(EventsService.isImportantAPIEvent(event) && !EventsService.isCleared(event.metadata.uid)) {
result[event.metadata.uid] = event;
}
return result;
}, {});
};
// we have to keep notifications & events separate as
// notifications are ephemerial, but events have a time to live
// set by the server. we can merge them right before we update
// the UI.
var mergeMaps = function(firstMap, secondMap) {
var proj = $routeParams.project;
return _.assign({}, firstMap[proj], secondMap[proj]);
};
var sortMap = function(map) {
// Use `metadata.resourceVersion` as a secondary sort so that the sort
// is stable. In practice, this makes sure that the events with the
// same `lastTimestamp` appear in the correct order since events only
// have second granularity.
return _.orderBy(map, ['event.lastTimestamp', 'event.metadata.resourceVersion'], ['desc', 'desc']);
};
var render = function() {
$rootScope.$evalAsync(function() {
drawer.notificationGroups = [
makeProjectGroup($routeParams.project, sortMap( mergeMaps(apiEventsMap, notificationsMap )))
];
countUnreadNotifications();
});
};
var deregisterRootScopeWatches = function() {
_.each(rootScopeWatches, function(deregister) {
deregister();
});
rootScopeWatches = [];
};
var deregisterAPIEventsWatch = function() {
if(apiEventsWatcher) {
DataService.unwatch(apiEventsWatcher);
apiEventsWatcher = null;
}
};
var deregisterNotificationListener = function() {
notificationListener && notificationListener();
notificationListener = null;
};
var apiEventWatchCallback = function(eventData) {
apiEventsMap[$routeParams.project] = formatAPIEvents(filterAPIEvents(eventData.by('metadata.name')));
render();
};
var notificationWatchCallback = function(event, notification) {
var project = notification.namespace || $routeParams.project;
var id = notification.id ? project + "/" + notification.id : _.uniqueId('notification_') + Date.now();
if(!notification.showInDrawer || EventsService.isCleared(id)) {
return;
}
notificationsMap[project] = notificationsMap[project] || {};
notificationsMap[project][id] = {
actions: notification.actions,
unread: !EventsService.isRead(id),
// using uid to match API events and have one filed to pass
// to EventsService for read/cleared, etc
trackByID: notification.trackByID,
uid: id,
type: notification.type,
// API events have both lastTimestamp & firstTimestamp,
// but we sort based on lastTimestamp first.
lastTimestamp: notification.timestamp,
message: notification.message,
isHTML: notification.isHTML,
details: notification.details,
namespace: project,
links: notification.links
};
render();
};
var watchEvents = function(projectName, cb) {
deregisterAPIEventsWatch();
if(projectName) {
apiEventsWatcher = DataService.watch('events', {namespace: projectName}, _.debounce(cb, 400), { skipDigest: true });
}
};
var watchNotifications = _.once(function(projectName, cb) {
deregisterNotificationListener();
notificationListener = $rootScope.$on('NotificationsService.onNotificationAdded', cb);
});
var reset = function() {
getProject($routeParams.project).then(function() {
watchEvents($routeParams.project, apiEventWatchCallback);
watchNotifications($routeParams.project, notificationWatchCallback);
hideIfNoProject($routeParams.project);
render();
});
};
angular.extend(drawer, {
drawerHidden: true,
allowExpand: true,
drawerExpanded: false,
drawerTitle: 'Notifications',
hasUnread: false,
showClearAll: true,
showMarkAllRead: true,
onClose: function() {
drawer.drawerHidden = true;
},
onMarkAllRead: function(group) {
_.each(group.notifications, function(notification) {
notification.unread = false;
EventsService.markRead(notification.uid);
});
render();
$rootScope.$emit('NotificationDrawerWrapper.onMarkAllRead');
},
onClearAll: function(group) {
_.each(group.notifications, function(notification) {
notification.unread = false;
EventsService.markRead(notification.uid);
EventsService.markCleared(notification.uid);
});
removeAllForProject();
render();
$rootScope.$emit('NotificationDrawerWrapper.onMarkAllRead');
},
notificationGroups: [],
headingInclude: 'views/directives/notifications/header.html',
notificationBodyInclude: 'views/directives/notifications/notification-body.html',
customScope: {
clear: function(notification, index, group) {
EventsService.markRead(notification.uid);
EventsService.markCleared(notification.uid);
group.notifications.splice(index, 1);
remove(notification);
render();
},
markRead: function(notification) {
notification.unread = false;
EventsService.markRead(notification.uid);
render();
},
close: function() {
drawer.drawerHidden = true;
},
onLinkClick: function(link) {
link.onClick();
drawer.drawerHidden = true;
},
countUnreadNotifications: countUnreadNotifications
}
});
var initWatches = function() {
if($routeParams.project) {
reset();
}
// $routeChangeSuccess seems more reliable than $locationChangeSuccess:
// - it fires once on initial load. $locationChangeSuccess does not.
// - it waits for more object resolution (not a huge deal in this use case)
// - tracks route data instead of urls (args to callback fn, also not
// necessary for the current use case)
rootScopeWatches.push($rootScope.$on("$routeChangeSuccess", function (evt, next, current) {
if(projectChanged(next, current)) {
drawer.customScope.projectName = $routeParams.project;
reset();
}
}));
// event from the counter to signal the drawer to open/close
rootScopeWatches.push($rootScope.$on('NotificationDrawerWrapper.toggle', function() {
drawer.drawerHidden = !drawer.drawerHidden;
}));
// event to signal the drawer to close
rootScopeWatches.push($rootScope.$on('NotificationDrawerWrapper.hide', function() {
drawer.drawerHidden = true;
}));
// event to signal the drawer to clear a notification
rootScopeWatches.push($rootScope.$on('NotificationDrawerWrapper.clear', function(event, notification) {
EventsService.markCleared(notification.uid);
remove(notification);
drawer.countUnreadNotifications();
}));
};
drawer.$onInit = function() {
if(DISABLE_GLOBAL_EVENT_WATCH || LIMIT_WATCHES) {
return;
}
initWatches();
};
drawer.$onDestroy = function() {
deregisterNotificationListener();
deregisterAPIEventsWatch();
deregisterRootScopeWatches();
};
}
})();