forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.js
171 lines (153 loc) · 5.5 KB
/
events.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
'use strict';
angular.module('openshiftConsole')
.directive('events', function($routeParams, $filter, DataService, KeywordService, ProjectsService, Logger) {
return {
restrict: 'E',
scope: {
apiObjects: "=?",
projectContext: "="
},
templateUrl: 'views/directives/events.html',
controller: function($scope) {
var allEvents;
var uids = {};
var watches = [];
$scope.filter = {
text: ''
};
var filterForResource = function(events) {
if (_.isEmpty(uids)) {
return events;
}
return _.filter(events, function(event) {
return uids[event.involvedObject.uid];
});
};
var sortedEvents = [];
var currentID = _.get($scope, 'sortConfig.currentField.id');
var defaultIsReversed = {
lastTimestamp: true
};
var sortEvents = function() {
var sortID = _.get($scope, 'sortConfig.currentField.id', 'lastTimestamp');
// only change if sort dropdown field is changed
if (currentID !== sortID) {
// set currentID to sortID
currentID = sortID;
// reverse the sort
$scope.sortConfig.isAscending = !(defaultIsReversed[currentID]);
}
var order = $scope.sortConfig.isAscending ? 'asc' : 'desc';
// 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.
sortedEvents = _.orderBy($scope.events, [sortID, 'metadata.resourceVersion'], [order, order]);
};
var filterExpressions = [];
var updateKeywords = function() {
$scope.filterExpressions = filterExpressions = KeywordService.generateKeywords(_.get($scope, 'filter.text'));
};
// Only filter by keyword on certain fields.
var filterFields = [
'reason',
'message',
'type'
];
if (!$scope.resourceKind || !$scope.resourceName) {
filterFields.splice(0, 0, 'involvedObject.name', 'involvedObject.kind');
}
var filterForKeyword = function() {
$scope.filteredEvents = KeywordService.filterForKeywords(sortedEvents, filterFields, filterExpressions);
};
$scope.$watch('filter.text', _.debounce(function() {
updateKeywords();
$scope.$evalAsync(filterForKeyword);
}, 50, { maxWait: 250 }));
var update = function() {
// Sort first so we can update the filter as the user types without resorting.
sortEvents();
filterForKeyword();
};
// Invoke update when first called, debouncing subsequent calls.
var debounceUpdate = _.debounce(function() {
if (!allEvents) {
return;
}
$scope.$evalAsync(function() {
// Assign `$scope.events` here instead of the watch callback to
// avoid the "Filter hiding all events" message from flickering
// briefly before the debounced filter and update calls.
$scope.events = filterForResource(allEvents);
update();
});
}, 250, {
leading: true,
trailing: true,
maxWait: 1000
});
$scope.$watch('apiObjects', function(apiObjects) {
// Create a map of UIDs to for quick lookup (key UID, value `true`).
uids = {};
_.each(apiObjects, function(apiObject) {
var uid = _.get(apiObject, 'metadata.uid');
if (uid) {
uids[apiObject.metadata.uid] = true;
}
});
$scope.showKindAndName = _.size(uids) !== 1;
if (allEvents) {
debounceUpdate();
}
});
$scope.$watch('showKindAndName', function(showKindAndName) {
// Set up the sort configuration for `pf-sort`.
$scope.sortConfig = {
fields: [{
id: 'lastTimestamp',
title: 'Time',
sortType: 'alpha'
}, {
id: 'type',
title: 'Severity',
sortType: 'alpha'
}, {
id: 'reason',
title: 'Reason',
sortType: 'alpha'
}, {
id: 'message',
title: 'Message',
sortType: 'alpha'
}, {
id: 'count',
title: 'Count',
sortType: 'numeric'
}],
isAscending: true,
onSortChange: update
};
// Conditionally add kind and name to sort fields if not passed to the directive.
if (showKindAndName) {
$scope.sortConfig.fields.splice(1, 0, {
id: 'involvedObject.name',
title: 'Name',
sortType: 'alpha'
}, {
id: 'involvedObject.kind',
title: 'Kind',
sortType: 'alpha'
});
}
});
watches.push(DataService.watch("events", $scope.projectContext, function(events) {
allEvents = events.by("metadata.name");
debounceUpdate();
Logger.log("events (subscribe)", $scope.filteredEvents);
}, { skipDigest: true }));
$scope.$on('$destroy', function(){
DataService.unwatchAll(watches);
});
},
};
});