forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditEnvironmentVariables.js
156 lines (138 loc) · 5.15 KB
/
editEnvironmentVariables.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
'use strict';
(function() {
angular.module('openshiftConsole').component('editEnvironmentVariables', {
controller: [
'$filter',
'APIService',
'DataService',
'EnvironmentService',
'NotificationsService',
EditEnvironmentVariables
],
controllerAs: '$ctrl',
bindings: {
apiObject: '<',
ngReadonly: '<',
disableValueFrom: '<'
},
templateUrl: 'views/directives/edit-environment-variables.html'
});
function EditEnvironmentVariables($filter,
APIService,
DataService,
EnvironmentService,
NotificationsService) {
var ctrl = this;
var displayKind, name, rgv, saveEnvPromise;
var previousEnvConflict = false;
var configMapDataOrdered = [];
var secretDataOrdered = [];
var valueFromDataLoaded = false;
var canI = $filter('canI');
var getErrorDetails = $filter('getErrorDetails');
var humanizeKind = $filter('humanizeKind');
var orderByDisplayName = $filter('orderByDisplayName');
var updateEnvironment = function(currentValue, previousValue) {
if (previousEnvConflict) {
return;
}
if (!ctrl.form || ctrl.form.$pristine || !ctrl.updatedObject) {
ctrl.updatedObject = EnvironmentService.copyAndNormalize(currentValue);
return;
}
// The env var form has changed and the deployment config has been
// updated. See if there were any background changes to the environment
// variables. If not, merge the environment edits into the updated
// deployment config object.
if (EnvironmentService.isEnvironmentEqual(currentValue, previousValue)) {
ctrl.updatedObject = EnvironmentService.mergeEdits(ctrl.updatedObject, currentValue);
return;
}
previousEnvConflict = true;
NotificationsService.addNotification({
type: "warning",
message: "The environment variables for the " + displayKind + " have been updated in the background.",
details: "Saving your changes may create a conflict or cause loss of data."
});
};
var loadConfigMaps = function() {
DataService.list("configmaps", {
namespace: ctrl.apiObject.metadata.namespace
}).then(function(resp) {
configMapDataOrdered = orderByDisplayName(resp.by("metadata.name"));
ctrl.valueFromObjects = configMapDataOrdered.concat(secretDataOrdered);
});
};
var loadSecrets = function() {
if (!canI('secrets', 'list')) {
return;
}
DataService.list("secrets", {
namespace: ctrl.apiObject.metadata.namespace
}).then(function(resp) {
secretDataOrdered = orderByDisplayName(resp.by("metadata.name"));
ctrl.valueFromObjects = configMapDataOrdered.concat(secretDataOrdered);
});
};
var loadValueFromData = function() {
if (valueFromDataLoaded) {
return;
}
valueFromDataLoaded = true;
loadConfigMaps();
loadSecrets();
};
var updateAPIObject = function(currentValue, previousValue) {
displayKind = humanizeKind(currentValue.kind);
name = currentValue.metadata.name;
rgv = APIService.objectToResourceGroupVersion(currentValue);
ctrl.canIUpdate = canI(rgv, 'update');
if (saveEnvPromise) {
saveEnvPromise.finally(function() {
updateEnvironment(currentValue, previousValue);
});
} else {
updateEnvironment(currentValue, previousValue);
}
ctrl.containers = EnvironmentService.getContainers(ctrl.updatedObject);
if (!ctrl.disableValueFrom && !ctrl.ngReadonly && ctrl.canIUpdate) {
loadValueFromData();
}
};
ctrl.$onChanges = function(changes) {
if (changes.apiObject && changes.apiObject.currentValue) {
updateAPIObject(changes.apiObject.currentValue, changes.apiObject.previousValue);
}
};
ctrl.save = function() {
var errorID = 'save-env-error-' + name;
NotificationsService.hideNotification(errorID);
EnvironmentService.compact(ctrl.updatedObject);
saveEnvPromise = DataService.update(rgv, name, ctrl.updatedObject, {
namespace: ctrl.updatedObject.metadata.namespace
});
saveEnvPromise.then(function success(){
NotificationsService.addNotification({
type: "success",
message: "Environment variables for " + displayKind + " " + name + " were successfully updated."
});
ctrl.form.$setPristine();
}, function error(e){
NotificationsService.addNotification({
id: errorID,
type: "error",
message: "An error occurred updating environment variables for " + displayKind + " " + name + ".",
details: getErrorDetails(e)
});
}).finally(function() {
saveEnvPromise = null;
});
};
ctrl.clearChanges = function() {
ctrl.updatedObject = EnvironmentService.copyAndNormalize(ctrl.apiObject);
ctrl.containers = EnvironmentService.getContainers(ctrl.updatedObject);
ctrl.form.$setPristine();
previousEnvConflict = false;
};
}
})();