Skip to content

Commit 7513f20

Browse files
committed
Let users define labels when creating routes
1 parent 8bca523 commit 7513f20

File tree

4 files changed

+47
-19
lines changed

4 files changed

+47
-19
lines changed

app/scripts/controllers/createRoute.js

+18-6
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ 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.labels = [];
2729

2830
// Prefill route name with the service name.
2931
$scope.routing = {
@@ -56,24 +58,34 @@ angular.module('openshiftConsole')
5658
return;
5759
}
5860

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

6263
DataService.list("services", context, function(services) {
6364
$scope.services = orderByDisplayName(services.by("metadata.name"));
6465
$scope.routing.to = {};
6566
$scope.routing.to.service = _.find($scope.services, function(service) {
6667
return !$scope.serviceName || service.metadata.name === $scope.serviceName;
6768
});
68-
$scope.$watch('routing.to.service', function() {
69-
labels = angular.copy($scope.routing.to.service.metadata.labels);
70-
});
7169
});
7270

71+
$scope.copyServiceLabels = function() {
72+
var serviceLabels = _.get($scope, 'routing.to.service.metadata.labels', {});
73+
var existing = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels));
74+
var updated = _.assign(existing, serviceLabels);
75+
$scope.labels = _.map(updated, function(value, key) {
76+
return {
77+
name: key,
78+
value: value
79+
};
80+
});
81+
};
82+
7383
$scope.createRoute = function() {
7484
if ($scope.createRouteForm.$valid) {
7585
$scope.disableInputs = true;
7686
var serviceName = $scope.routing.to.service.metadata.name;
87+
var labels = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels));
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="labels"
32+
expand="true"
33+
can-toggle="false"
34+
help-text="Labels for this route.">
35+
</label-editor>
36+
<a href="" ng-click="copyServiceLabels()">Copy service labels</a>
3037
<div class="button-group gutter-top gutter-bottom">
3138
<button type="submit"
3239
class="btn btn-primary btn-lg"

dist/scripts/scripts.js

+17-11
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.labels = [], 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);
81678165
});
8168-
}), c.createRoute = function() {
8166+
}), c.copyServiceLabels = function() {
8167+
var a = _.get(c, "routing.to.service.metadata.labels", {}), b = j.mapEntries(j.compactEntries(c.labels)), d = _.assign(b, a);
8168+
c.labels = _.map(d, function(a, b) {
8169+
return {
8170+
name:b,
8171+
value:a
8172+
};
8173+
});
8174+
}, 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.labels)), h = e.createRoute(c.routing, b, f), i = _.get(c, "routing.alternateServices", []);
8178+
_.isEmpty(i) || (h.spec.to.weight = _.get(c, "routing.to.weight"), h.spec.alternateBackends = _.map(i, 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, h, k).then(function() {
81798185
d.history.back();
81808186
}, function(b) {
81818187
c.disableInputs = !1, c.alerts["create-route"] = {

dist/scripts/templates.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -4455,12 +4455,15 @@ 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=\"labels\" expand=\"true\" can-toggle=\"false\" help-text=\"Labels for this route.\">\n" +
4465+
"</label-editor>\n" +
4466+
"<a href=\"\" ng-click=\"copyServiceLabels()\">Copy service labels</a>\n" +
44644467
"<div class=\"button-group gutter-top gutter-bottom\">\n" +
44654468
"<button type=\"submit\" class=\"btn btn-primary btn-lg\" ng-click=\"createRoute()\" ng-disabled=\"createRouteForm.$invalid || disableInputs || !createRoute\" value=\"\">Create</button>\n" +
44664469
"<a class=\"btn btn-default btn-lg\" href=\"#\" back>Cancel</a>\n" +

0 commit comments

Comments
 (0)