Skip to content

Commit 362717c

Browse files
Add track by to notification drawer
1 parent 5709d8a commit 362717c

File tree

7 files changed

+114
-133
lines changed

7 files changed

+114
-133
lines changed

app/scripts/directives/notifications/notificationDrawerWrapper.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
// var clientGeneratedNotifications = [];
5050

5151
var eventsWatcher;
52-
var eventsByNameData = {};
5352
var eventsMap = {};
5453

5554
// TODO:
@@ -159,6 +158,7 @@
159158
ensureProjectGroupExists(filtered, event.metadata.namespace);
160159
filtered[event.metadata.namespace].notifications.push({
161160
unread: !EventsService.isRead(event),
161+
uid: event.metadata.uid,
162162
event: event,
163163
actions: null
164164
});
@@ -198,8 +198,7 @@
198198
// TODO: follow-on PR to decide which of these events to toast,
199199
// via config in constants.js
200200
var eventWatchCallback = function(eventData) {
201-
eventsByNameData = eventData.by('metadata.name');
202-
eventsMap = formatAndFilterEvents(eventsByNameData);
201+
eventsMap = formatAndFilterEvents(eventData.by('metadata.uid'));
203202
// TODO: Update to an intermediate map, so that we can then combine both
204203
// events + notifications into the final notificationGroups output
205204
notificationGroups = sortNotificationGroups(eventsMap);
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<pf-notification-drawer
2-
drawer-hidden="$ctrl.drawerHidden"
32
allow-expand="$ctrl.allowExpand"
3+
custom-scope="$ctrl.customScope"
44
drawer-expanded="$ctrl.drawerExpanded"
5+
drawer-hidden="$ctrl.drawerHidden"
56
drawer-title="{{$ctrl.drawerTitle}}"
6-
show-clear-all="$ctrl.showClearAll"
7-
show-mark-all-read="$ctrl.showMarkAllRead"
8-
notification-groups="$ctrl.notificationGroups"
97
heading-include="{{$ctrl.headingInclude}}"
108
notification-body-include="{{$ctrl.notificationBodyInclude}}"
9+
notification-groups="$ctrl.notificationGroups"
10+
notification-track-field="uid"
1111
on-close="$ctrl.onClose"
12-
on-mark-all-read="$ctrl.onMarkAllRead"
1312
on-clear-all="$ctrl.onClearAll"
14-
custom-scope="$ctrl.customScope"></pf-notification-drawer>
13+
on-mark-all-read="$ctrl.onMarkAllRead"
14+
show-clear-all="$ctrl.showClearAll"
15+
show-mark-all-read="$ctrl.showMarkAllRead"></pf-notification-drawer>

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"angular-touch": "1.5.11",
1414
"angular-route": "1.5.11",
1515
"angular-bootstrap": "0.14.3",
16-
"angular-patternfly": "4.5.6",
16+
"angular-patternfly": "4.7.1",
1717
"angular-gettext": "2.3.9",
1818
"uri.js": "1.18.12",
1919
"moment": "2.14.2",
@@ -47,7 +47,7 @@
4747
"angular-utf8-base64": "0.0.5",
4848
"file-saver": "1.3.3",
4949
"origin-web-common": "0.0.51",
50-
"origin-web-catalog": "0.0.41"
50+
"origin-web-catalog": "0.0.42"
5151
},
5252
"devDependencies": {
5353
"angular-mocks": "1.5.11",

dist/scripts/scripts.js

+44-43
Original file line numberDiff line numberDiff line change
@@ -13884,69 +13884,70 @@ u(), d();
1388413884
angular.module("openshiftConsole").component("notificationDrawerWrapper", {
1388513885
templateUrl: "views/directives/notifications/notification-drawer-wrapper.html",
1388613886
controller: [ "$filter", "$interval", "$location", "$timeout", "$routeParams", "$rootScope", "Constants", "DataService", "NotificationsService", "EventsService", function(e, t, n, a, r, o, i, s, c, l) {
13887-
var u, d, m = _.get(i, "DISABLE_GLOBAL_EVENT_WATCH"), p = e("isIE")() || e("isEdge")(), f = this, g = [], h = {}, v = {}, y = [], b = {}, C = function(e) {
13887+
var u, d, m = _.get(i, "DISABLE_GLOBAL_EVENT_WATCH"), p = e("isIE")() || e("isEdge")(), f = this, g = [], h = {}, v = [], y = {}, b = function(e) {
1388813888
return s.get("projects", e, {}, {
1388913889
errorNotification: !1
1389013890
}).then(function(e) {
13891-
return b[e.metadata.name] = e, e;
13891+
return y[e.metadata.name] = e, e;
1389213892
});
13893-
}, S = function(t, n) {
13893+
}, C = function(t, n) {
1389413894
n && !t[n] && (t[n] = {
13895-
heading: e("displayName")(b[n]) || n,
13896-
project: b[n],
13895+
heading: e("displayName")(y[n]) || n,
13896+
project: y[n],
1389713897
notifications: []
1389813898
});
13899-
}, w = function() {
13899+
}, S = function() {
1390013900
d && s.unwatch(d);
13901-
}, k = function(e, t) {
13902-
w(), e && (d = s.watch("events", {
13901+
}, w = function(e, t) {
13902+
S(), e && (d = s.watch("events", {
1390313903
namespace: e
1390413904
}, _.debounce(t, 400), {
1390513905
skipDigest: !0
1390613906
}));
13907-
}, j = function() {
13907+
}, k = function() {
1390813908
u && u(), u = null;
13909-
}, P = function(e) {
13909+
}, j = function(e) {
1391013910
return _.filter(e, "unread");
13911-
}, R = function(e) {
13911+
}, P = function(e) {
1391213912
o.$applyAsync(function() {
13913-
e.totalUnread = P(e.notifications).length, e.hasUnread = !!e.totalUnread, o.$emit("NotificationDrawerWrapper.count", e.totalUnread);
13913+
e.totalUnread = j(e.notifications).length, e.hasUnread = !!e.totalUnread, o.$emit("NotificationDrawerWrapper.count", e.totalUnread);
1391413914
});
13915-
}, E = function() {
13916-
_.each(y, R);
13917-
}, T = function(e) {
13915+
}, R = function() {
13916+
_.each(v, P);
13917+
}, E = function(e) {
1391813918
return _.orderBy(e, [ "event.lastTimestamp", "event.firstTimestamp" ], [ "desc", "desc" ]);
13919-
}, I = function(e) {
13919+
}, T = function(e) {
1392013920
var t = _.sortBy(e, function(e) {
1392113921
return e.heading;
1392213922
});
1392313923
return _.each(t, function(e) {
13924-
e.notifications = T(e.notifications), e.counts = R(e);
13924+
e.notifications = E(e.notifications), e.counts = P(e);
1392513925
}), t;
13926-
}, N = function(e) {
13926+
}, I = function(e) {
1392713927
var t = {};
13928-
return S(t, r.project), _.each(e, function(e) {
13929-
l.isImportantEvent(e) && !l.isCleared(e) && (S(t, e.metadata.namespace), t[e.metadata.namespace].notifications.push({
13928+
return C(t, r.project), _.each(e, function(e) {
13929+
l.isImportantEvent(e) && !l.isCleared(e) && (C(t, e.metadata.namespace), t[e.metadata.namespace].notifications.push({
1393013930
unread: !l.isRead(e),
13931+
uid: e.metadata.uid,
1393113932
event: e,
1393213933
actions: null
1393313934
}));
1393413935
}), t;
13935-
}, D = function() {
13936+
}, N = function() {
1393613937
_.each(g, function(e) {
1393713938
e();
1393813939
}), g = [];
13939-
}, $ = function(e) {
13940+
}, D = function(e) {
1394013941
e || (f.drawerHidden = !0);
13941-
}, A = function() {
13942+
}, $ = function() {
1394213943
o.$evalAsync(function() {
13943-
E(), f.notificationGroups = _.filter(y, function(e) {
13944+
R(), f.notificationGroups = _.filter(v, function(e) {
1394413945
return e.project.metadata.name === r.project;
1394513946
});
1394613947
});
13947-
}, B = function(e) {
13948-
h = e.by("metadata.name"), v = N(h), y = I(v), A();
13949-
}, L = {
13948+
}, A = function(e) {
13949+
h = I(e.by("metadata.uid")), v = T(h), $();
13950+
}, B = {
1395013951
Normal: "pficon pficon-info",
1395113952
Warning: "pficon pficon-warning-triangle-o"
1395213953
};
@@ -13964,51 +13965,51 @@ f.drawerHidden = !0;
1396413965
onMarkAllRead: function(e) {
1396513966
_.each(e.notifications, function(e) {
1396613967
e.unread = !1, l.markRead(e.event);
13967-
}), A(), o.$emit("NotificationDrawerWrapper.onMarkAllRead");
13968+
}), $(), o.$emit("NotificationDrawerWrapper.onMarkAllRead");
1396813969
},
1396913970
onClearAll: function(e) {
1397013971
_.each(e.notifications, function(e) {
1397113972
l.markRead(e.event), l.markCleared(e.event);
13972-
}), e.notifications = [], A(), o.$emit("NotificationDrawerWrapper.onMarkAllRead");
13973+
}), e.notifications = [], $(), o.$emit("NotificationDrawerWrapper.onMarkAllRead");
1397313974
},
13974-
notificationGroups: y,
13975+
notificationGroups: v,
1397513976
headingInclude: "views/directives/notifications/header.html",
1397613977
notificationBodyInclude: "views/directives/notifications/notification-body.html",
1397713978
customScope: {
1397813979
clear: function(e, t, n) {
13979-
l.markCleared(e.event), n.notifications.splice(t, 1), E();
13980+
l.markCleared(e.event), n.notifications.splice(t, 1), R();
1398013981
},
1398113982
markRead: function(e) {
13982-
e.unread = !1, l.markRead(e.event), E();
13983+
e.unread = !1, l.markRead(e.event), R();
1398313984
},
1398413985
getNotficationStatusIconClass: function(e) {
13985-
return L[e.type] || L.info;
13986+
return B[e.type] || B.info;
1398613987
},
1398713988
getStatusForCount: function(e) {
13988-
return L[e] || L.info;
13989+
return B[e] || B.info;
1398913990
},
1399013991
close: function() {
1399113992
f.drawerHidden = !0;
1399213993
}
1399313994
}
1399413995
});
13995-
var U = function(e, t) {
13996+
var L = function(e, t) {
1399613997
return _.get(e, "params.project") !== _.get(t, "params.project");
13997-
}, O = function() {
13998-
C(r.project).then(function() {
13999-
k(r.project, B), $(r.project), A();
13998+
}, U = function() {
13999+
b(r.project).then(function() {
14000+
w(r.project, A), D(r.project), $();
1400014001
});
14001-
}, F = function() {
14002-
r.project && O(), g.push(o.$on("$routeChangeSuccess", function(e, t, n) {
14003-
U(t, n) && (f.customScope.projectName = r.project, O());
14002+
}, O = function() {
14003+
r.project && U(), g.push(o.$on("$routeChangeSuccess", function(e, t, n) {
14004+
L(t, n) && (f.customScope.projectName = r.project, U());
1400414005
})), g.push(o.$on("NotificationDrawerWrapper.toggle", function() {
1400514006
f.drawerHidden = !f.drawerHidden;
1400614007
}));
1400714008
};
1400814009
f.$onInit = function() {
14009-
m || p || F();
14010+
m || p || O();
1401014011
}, f.$onDestroy = function() {
14011-
j(), w(), D();
14012+
k(), S(), N();
1401214013
};
1401314014
} ]
1401414015
});

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7533,7 +7533,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
75337533

75347534

75357535
$templateCache.put('views/directives/notifications/notification-drawer-wrapper.html',
7536-
"<pf-notification-drawer drawer-hidden=\"$ctrl.drawerHidden\" allow-expand=\"$ctrl.allowExpand\" drawer-expanded=\"$ctrl.drawerExpanded\" drawer-title=\"{{$ctrl.drawerTitle}}\" show-clear-all=\"$ctrl.showClearAll\" show-mark-all-read=\"$ctrl.showMarkAllRead\" notification-groups=\"$ctrl.notificationGroups\" heading-include=\"{{$ctrl.headingInclude}}\" notification-body-include=\"{{$ctrl.notificationBodyInclude}}\" on-close=\"$ctrl.onClose\" on-mark-all-read=\"$ctrl.onMarkAllRead\" on-clear-all=\"$ctrl.onClearAll\" custom-scope=\"$ctrl.customScope\"></pf-notification-drawer>"
7536+
"<pf-notification-drawer allow-expand=\"$ctrl.allowExpand\" custom-scope=\"$ctrl.customScope\" drawer-expanded=\"$ctrl.drawerExpanded\" drawer-hidden=\"$ctrl.drawerHidden\" drawer-title=\"{{$ctrl.drawerTitle}}\" heading-include=\"{{$ctrl.headingInclude}}\" notification-body-include=\"{{$ctrl.notificationBodyInclude}}\" notification-groups=\"$ctrl.notificationGroups\" notification-track-field=\"uid\" on-close=\"$ctrl.onClose\" on-clear-all=\"$ctrl.onClearAll\" on-mark-all-read=\"$ctrl.onMarkAllRead\" show-clear-all=\"$ctrl.showClearAll\" show-mark-all-read=\"$ctrl.showMarkAllRead\"></pf-notification-drawer>"
75377537
);
75387538

75397539

0 commit comments

Comments
 (0)