Skip to content

Commit 662f391

Browse files
committed
Let users define labels when creating routes
1 parent 8bca523 commit 662f391

File tree

4 files changed

+44
-17
lines changed

4 files changed

+44
-17
lines changed

app/scripts/controllers/createRoute.js

+17-5
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@ angular.module('openshiftConsole')
1717
AuthorizationService,
1818
DataService,
1919
Navigate,
20-
ProjectsService) {
20+
ProjectsService,
21+
keyValueEditorUtils) {
2122
$scope.alerts = {};
2223
$scope.renderOptions = {
2324
hideFilterWidget: true
2425
};
2526
$scope.projectName = $routeParams.project;
2627
$scope.serviceName = $routeParams.service;
28+
$scope.userDefinedLabels = [];
29+
$scope.systemLabels = [];
2730

2831
// Prefill route name with the service name.
2932
$scope.routing = {
@@ -56,24 +59,33 @@ angular.module('openshiftConsole')
5659
return;
5760
}
5861

59-
var labels = {},
60-
orderByDisplayName = $filter('orderByDisplayName');
62+
var orderByDisplayName = $filter('orderByDisplayName');
6163

6264
DataService.list("services", context, function(services) {
6365
$scope.services = orderByDisplayName(services.by("metadata.name"));
6466
$scope.routing.to = {};
6567
$scope.routing.to.service = _.find($scope.services, function(service) {
6668
return !$scope.serviceName || service.metadata.name === $scope.serviceName;
6769
});
68-
$scope.$watch('routing.to.service', function() {
69-
labels = angular.copy($scope.routing.to.service.metadata.labels);
70+
$scope.$watch('routing.to.service', function(service) {
71+
var serviceLabels = _.get(service, 'metadata.labels', {});
72+
$scope.systemLabels = _.map(serviceLabels, function(value, key) {
73+
return {
74+
name: key,
75+
value: value
76+
};
77+
});
7078
});
7179
});
7280

7381
$scope.createRoute = function() {
7482
if ($scope.createRouteForm.$valid) {
7583
$scope.disableInputs = true;
7684
var serviceName = $scope.routing.to.service.metadata.name;
85+
var userLabels = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.userDefinedLabels));
86+
var systemLabels = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.systemLabels));
87+
var labels = _.extend(systemLabels, userLabels);
88+
7789
var route = ApplicationGenerator.createRoute($scope.routing, serviceName, labels);
7890
var alternateServices = _.get($scope, 'routing.alternateServices', []);
7991
if (!_.isEmpty(alternateServices)) {

app/views/create-route.html

+8-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h1>Create Route</h1>
1818
<div class="help-block">
1919
Routing is a way to make your application publicly visible.
2020
</div>
21-
<form name="createRouteForm" class="mar-top-xl">
21+
<form name="createRouteForm" class="mar-top-xl osc-form">
2222
<div ng-if="!services">Loading...</div>
2323
<div ng-if="services">
2424
<fieldset ng-disabled="disableInputs">
@@ -27,6 +27,13 @@ <h1>Create Route</h1>
2727
services="services"
2828
show-name-input="true">
2929
</osc-routing>
30+
<label-editor
31+
labels="userDefinedLabels"
32+
system-labels="systemLabels"
33+
expand="true"
34+
can-toggle="false"
35+
help-text="Additional labels for this route.">
36+
</label-editor>
3037
<div class="button-group gutter-top gutter-bottom">
3138
<button type="submit"
3239
class="btn btn-primary btn-lg"

dist/scripts/scripts.js

+16-10
Original file line numberDiff line numberDiff line change
@@ -8143,10 +8143,10 @@ details:c("getErrorDetails")(b)
81438143
}
81448144
});
81458145
}));
8146-
} ]), angular.module("openshiftConsole").controller("CreateRouteController", [ "$filter", "$routeParams", "$scope", "$window", "ApplicationGenerator", "AuthorizationService", "DataService", "Navigate", "ProjectsService", function(a, b, c, d, e, f, g, h, i) {
8146+
} ]), angular.module("openshiftConsole").controller("CreateRouteController", [ "$filter", "$routeParams", "$scope", "$window", "ApplicationGenerator", "AuthorizationService", "DataService", "Navigate", "ProjectsService", "keyValueEditorUtils", function(a, b, c, d, e, f, g, h, i, j) {
81478147
c.alerts = {}, c.renderOptions = {
81488148
hideFilterWidget:!0
8149-
}, c.projectName = b.project, c.serviceName = b.service, c.routing = {
8149+
}, c.projectName = b.project, c.serviceName = b.service, c.userDefinedLabels = [], c.systemLabels = [], c.routing = {
81508150
name:c.serviceName || ""
81518151
}, c.breadcrumbs = [ {
81528152
title:c.projectName,
@@ -8156,26 +8156,32 @@ title:"Routes",
81568156
link:"project/" + c.projectName + "/browse/routes"
81578157
}, {
81588158
title:"Create Route"
8159-
} ], i.get(b.project).then(_.spread(function(i, j) {
8159+
} ], i.get(b.project).then(_.spread(function(i, k) {
81608160
if (c.project = i, c.breadcrumbs[0].title = a("displayName")(i), !f.canI("routes", "create", b.project)) return void h.toErrorPage("You do not have authority to create routes in project " + b.project + ".", "access_denied");
8161-
var k = {}, l = a("orderByDisplayName");
8162-
g.list("services", j, function(a) {
8161+
var l = a("orderByDisplayName");
8162+
g.list("services", k, function(a) {
81638163
c.services = l(a.by("metadata.name")), c.routing.to = {}, c.routing.to.service = _.find(c.services, function(a) {
81648164
return !c.serviceName || a.metadata.name === c.serviceName;
8165-
}), c.$watch("routing.to.service", function() {
8166-
k = angular.copy(c.routing.to.service.metadata.labels);
8165+
}), c.$watch("routing.to.service", function(a) {
8166+
var b = _.get(a, "metadata.labels", {});
8167+
c.systemLabels = _.map(b, function(a, b) {
8168+
return {
8169+
name:b,
8170+
value:a
8171+
};
8172+
});
81678173
});
81688174
}), c.createRoute = function() {
81698175
if (c.createRouteForm.$valid) {
81708176
c.disableInputs = !0;
8171-
var b = c.routing.to.service.metadata.name, f = e.createRoute(c.routing, b, k), h = _.get(c, "routing.alternateServices", []);
8172-
_.isEmpty(h) || (f.spec.to.weight = _.get(c, "routing.to.weight"), f.spec.alternateBackends = _.map(h, function(a) {
8177+
var b = c.routing.to.service.metadata.name, f = j.mapEntries(j.compactEntries(c.userDefinedLabels)), h = j.mapEntries(j.compactEntries(c.systemLabels)), i = _.extend(h, f), l = e.createRoute(c.routing, b, i), m = _.get(c, "routing.alternateServices", []);
8178+
_.isEmpty(m) || (l.spec.to.weight = _.get(c, "routing.to.weight"), l.spec.alternateBackends = _.map(m, function(a) {
81738179
return {
81748180
kind:"Service",
81758181
name:_.get(a, "service.metadata.name"),
81768182
weight:a.weight
81778183
};
8178-
})), g.create("routes", null, f, j).then(function() {
8184+
})), g.create("routes", null, l, k).then(function() {
81798185
d.history.back();
81808186
}, function(b) {
81818187
c.disableInputs = !1, c.alerts["create-route"] = {

dist/scripts/templates.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -4455,12 +4455,14 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
44554455
"<div class=\"help-block\">\n" +
44564456
"Routing is a way to make your application publicly visible.\n" +
44574457
"</div>\n" +
4458-
"<form name=\"createRouteForm\" class=\"mar-top-xl\">\n" +
4458+
"<form name=\"createRouteForm\" class=\"mar-top-xl osc-form\">\n" +
44594459
"<div ng-if=\"!services\">Loading...</div>\n" +
44604460
"<div ng-if=\"services\">\n" +
44614461
"<fieldset ng-disabled=\"disableInputs\">\n" +
44624462
"<osc-routing model=\"routing\" services=\"services\" show-name-input=\"true\">\n" +
44634463
"</osc-routing>\n" +
4464+
"<label-editor labels=\"userDefinedLabels\" system-labels=\"systemLabels\" expand=\"true\" can-toggle=\"false\" help-text=\"Additional labels for this route.\">\n" +
4465+
"</label-editor>\n" +
44644466
"<div class=\"button-group gutter-top gutter-bottom\">\n" +
44654467
"<button type=\"submit\" class=\"btn btn-primary btn-lg\" ng-click=\"createRoute()\" ng-disabled=\"createRouteForm.$invalid || disableInputs || !createRoute\" value=\"\">Create</button>\n" +
44664468
"<a class=\"btn btn-default btn-lg\" href=\"#\" back>Cancel</a>\n" +

0 commit comments

Comments
 (0)