forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserviceGroup.js
196 lines (172 loc) · 6.75 KB
/
serviceGroup.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
'use strict';
angular.module('openshiftConsole')
.directive('overviewServiceGroup', function($filter,
$uibModal,
RoutesService,
ServicesService) {
return {
restrict: 'E',
// Inherit scope from OverviewController. This directive is only used for the overview.
// We want to do all of the grouping of resources once in the overview controller watch callbacks.
scope: true,
templateUrl: 'views/overview/_service-group.html',
link: function($scope) {
var localStorageCollapseKey = function() {
var uid = _.get($scope, 'service.metadata.uid');
if (!uid) {
return null;
}
return 'collapse/service/' + uid;
};
var wasCollapsed = function() {
var key = localStorageCollapseKey();
if (!key) {
return false;
}
return localStorage.getItem(key) === 'true';
};
var saveCollapsedState = function() {
var key = localStorageCollapseKey();
if (!key) {
return;
}
var value = $scope.collapse ? 'true' : 'false';
localStorage.setItem(key, value);
};
// Restore previous collapsed state.
$scope.collapse = wasCollapsed();
$scope.toggleCollapse = function(e) {
// Don't collapse when clicking on the route link.
if (e && e.target && e.target.tagName === 'A') {
return;
}
$scope.collapse = !$scope.collapse;
saveCollapsedState();
};
$scope.linkService = function() {
var modalInstance = $uibModal.open({
animation: true,
templateUrl: 'views/modals/link-service.html',
controller: 'LinkServiceModalController',
scope: $scope
});
modalInstance.result.then(function(child) {
ServicesService.linkService($scope.service, child).then(
// success
_.noop,
// failure
function(result) {
$scope.alerts = $scope.alerts || {};
$scope.alerts["link-service"] =
{
type: "error",
message: "Could not link services.",
details: $filter('getErrorDetails')(result)
};
});
});
};
$scope.removeLink = function(service) {
var modalInstance = $uibModal.open({
animation: true,
templateUrl: 'views/modals/confirm.html',
controller: 'ConfirmModalController',
resolve: {
modalConfig: function() {
return {
message: "Remove service '" + service.metadata.name + "' from group?",
details: "Services '" +
$scope.primaryService.metadata.name +
"' and '" +
service.metadata.name +
"' will no longer be displayed together on the overview.",
okButtonText: "Remove",
okButtonClass: "btn-danger",
cancelButtonText: "Cancel"
};
}
}
});
modalInstance.result.then(function() {
ServicesService.removeServiceLink($scope.primaryService, service).then(
// success
_.noop,
// failure
function(result) {
$scope.alerts = $scope.alerts || {};
$scope.alerts["remove-service-link"] = {
type: "error",
message: "Could not remove service link.",
details: $filter('getErrorDetails')(result)
};
}
);
});
};
$scope.$watch('service.metadata.labels.app', function(appName) {
$scope.appName = appName;
});
var getDisplayRoute = function(routes) {
var displayRoute;
_.each(routes, function(candidate) {
if (!displayRoute) {
displayRoute = candidate;
return;
}
// Is candidate better than the current display route?
displayRoute = RoutesService.getPreferredDisplayRoute(displayRoute, candidate);
});
return displayRoute;
};
var addAlternateServices = function() {
$scope.weightByService = {};
$scope.alternateServices = [];
// Keep track of the total weight of all services so we can show A/B
// traffic as percentages.
$scope.totalWeight = 0;
var primaryServiceWeight = _.get($scope.displayRoute, 'spec.to.weight');
$scope.weightByService[$scope.service.metadata.name] = primaryServiceWeight;
$scope.totalWeight += primaryServiceWeight;
var alternateBackends = _.get($scope.displayRoute, 'spec.alternateBackends', []);
_.each(alternateBackends, function(routeTarget) {
if (routeTarget.kind !== 'Service') {
return;
}
var service = $scope.services[routeTarget.name];
if (service) {
$scope.alternateServices.push(service);
}
$scope.weightByService[routeTarget.name] = routeTarget.weight;
$scope.totalWeight += routeTarget.weight;
});
};
$scope.$watch(function() {
var serviceName = _.get($scope, 'service.metadata.name');
return _.get($scope, ['routesByService', serviceName]);
}, function(routes) {
$scope.displayRoute = getDisplayRoute(routes);
$scope.primaryServiceRoutes = routes;
addAlternateServices();
});
$scope.$watchGroup(['service', 'childServicesByParent'], function() {
if (!$scope.service) {
return;
}
$scope.primaryService = $scope.service;
$scope.childServices = _.get($scope, ['childServicesByParent', $scope.service.metadata.name], []);
});
$scope.$watchGroup(['service', 'childServices', 'alternateServices', 'deploymentConfigsByService'], function() {
if (!$scope.deploymentConfigsByService) {
return;
}
var allSvcs = [$scope.service].concat($scope.alternateServices).concat($scope.childServices);
allSvcs = _.map(allSvcs, "metadata.name");
var allDCs = {};
_.each(allSvcs, function(svc) {
_.extend(allDCs, $scope.deploymentConfigsByService[svc]);
});
$scope.allDeploymentConfigsInGroup = allDCs;
});
}
};
});