Skip to content

Commit 8bfd50b

Browse files
Add track by to notification drawer
1 parent 04d694f commit 8bfd50b

File tree

7 files changed

+68
-53
lines changed

7 files changed

+68
-53
lines changed

app/scripts/directives/notifications/notificationDrawerWrapper.js

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

5151
var eventsWatcher;
52-
var eventsByNameData = {};
52+
var eventsByUID = {};
5353
var eventsMap = {};
5454

5555
// TODO:
@@ -154,11 +154,12 @@
154154
var formatAndFilterEvents = function(eventMap) {
155155
var filtered = {};
156156
ensureProjectGroupExists(filtered, $routeParams.project);
157-
_.each(eventMap, function(event) {
157+
_.each(eventMap, function(event, eventUID) {
158158
if(EventsService.isImportantEvent(event) && !EventsService.isCleared(event)) {
159159
ensureProjectGroupExists(filtered, event.metadata.namespace);
160160
filtered[event.metadata.namespace].notifications.push({
161161
unread: !EventsService.isRead(event),
162+
uid: eventUID,
162163
event: event,
163164
actions: null
164165
});
@@ -198,8 +199,8 @@
198199
// TODO: follow-on PR to decide which of these events to toast,
199200
// via config in constants.js
200201
var eventWatchCallback = function(eventData) {
201-
eventsByNameData = eventData.by('metadata.name');
202-
eventsMap = formatAndFilterEvents(eventsByNameData);
202+
eventsByUID = eventData.by('metadata.uid');
203+
eventsMap = formatAndFilterEvents(eventsByUID);
203204
// TODO: Update to an intermediate map, so that we can then combine both
204205
// events + notifications into the final notificationGroups output
205206
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

+1-1
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",

dist/scripts/scripts.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -13902,9 +13902,10 @@ e.notifications = T(e.notifications), e.counts = R(e);
1390213902
}), t;
1390313903
}, N = function(e) {
1390413904
var t = {};
13905-
return S(t, r.project), _.each(e, function(e) {
13905+
return S(t, r.project), _.each(e, function(e, n) {
1390613906
l.isImportantEvent(e) && !l.isCleared(e) && (S(t, e.metadata.namespace), t[e.metadata.namespace].notifications.push({
1390713907
unread: !l.isRead(e),
13908+
uid: n,
1390813909
event: e,
1390913910
actions: null
1391013911
}));
@@ -13922,7 +13923,7 @@ return e.project.metadata.name === r.project;
1392213923
});
1392313924
});
1392413925
}, B = function(e) {
13925-
h = e.by("metadata.name"), v = N(h), y = I(v), A();
13926+
h = e.by("metadata.uid"), v = N(h), y = I(v), A();
1392613927
}, L = {
1392713928
Normal: "pficon pficon-info",
1392813929
Warning: "pficon pficon-warning-triangle-o"

dist/scripts/templates.js

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

77997799

78007800
$templateCache.put('views/directives/notifications/notification-drawer-wrapper.html',
7801-
"<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>"
7801+
"<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>"
78027802
);
78037803

78047804

dist/scripts/vendor.js

+42-39
Large diffs are not rendered by default.

dist/styles/vendor.css

+9
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,15 @@ pf-filter-panel .toolbar-pf-results .single-label .pficon-close{padding-right:6p
181181
pf-filter-panel .toolbar-pf-results p{padding-right:10px;padding-left:10px}
182182
.pf-filter-label-category{background-color:#39a5dc;font-weight:700;padding:6px}
183183
.pf-filter-label-category .category-values{padding-left:4px}
184+
.filter-pf.inline-filter-pf{flex:1 1 100%;margin:15px 15px 7px 0}
185+
.filter-pf.inline-filter-pf pf-filter-fields,.filter-pf.inline-filter-pf pf-filter-results{display:inline-block}
186+
.filter-pf.inline-filter-pf .form-group{margin-bottom:0;margin-right:15px}
187+
.filter-pf.inline-filter-pf .toolbar-pf-results{border-top:none;margin:0}
188+
.filter-pf.inline-filter-pf .toolbar-pf-results .col-sm-12{float:left;padding:0}
189+
.filter-pf.inline-filter-pf .toolbar-pf-results h5,.filter-pf.inline-filter-pf .toolbar-pf-results p,.filter-pf.inline-filter-pf .toolbar-pf-results ul{line-height:1.43;padding-bottom:6px;padding-top:6px}
190+
.filter-pf.inline-filter-pf .toolbar-pf-results .list-inline{margin-bottom:-5px;padding-right:5px}
191+
.filter-pf.inline-filter-pf .toolbar-pf-results .list-inline>li{margin-bottom:5px}
192+
.filter-pf .toolbar-pf-results .list-inline{margin-left:0}
184193
.sort-pf .btn-link{color:#252525;font-size:16px;line-height:1;margin-left:10px;padding:4px 0}
185194
.sort-pf .btn-link:hover{color:#0088ce}
186195
.list-group-item-header.list-group-item-not-selectable{cursor:inherit}

0 commit comments

Comments
 (0)