Skip to content

Commit 7a0efae

Browse files
committed
Make route services pie chart responsive
Fix problems on mobile and with long names
1 parent 8a5a5f1 commit 7a0efae

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

app/scripts/directives/routeServicePie.js

+7-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ angular.module('openshiftConsole')
1010
template: '<div ng-show="totalWeight" ng-attr-id="{{chartId}}"></div>',
1111
link: function($scope) {
1212
var chart, config;
13+
var mobile = window.matchMedia("(max-width: 400px)").matches;
1314

1415
$scope.chartId = _.uniqueId('route-service-chart-');
1516

@@ -20,16 +21,15 @@ angular.module('openshiftConsole')
2021
},
2122
legend: {
2223
show: true,
23-
position: 'right'
24+
position: mobile ? 'bottom' : 'right'
2425
},
2526
pie: {
2627
label: {
2728
show: false
2829
}
2930
},
3031
size: {
31-
height: 115,
32-
width: 260
32+
height: mobile ? 150 : 115
3333
},
3434
data: {
3535
type: "pie",
@@ -69,14 +69,17 @@ angular.module('openshiftConsole')
6969

7070
function updateChart() {
7171
var data = {
72-
columns: []
72+
columns: [],
73+
names: {}
7374
};
7475

7576
if ($scope.route) {
7677
data.columns.push(getData($scope.route.spec.to));
78+
data.names[$scope.route.spec.to.name] = _.trunc($scope.route.spec.to.name, { length: 30 });
7779
$scope.totalWeight = $scope.route.spec.to.weight;
7880
_.each($scope.route.spec.alternateBackends, function(routeTarget) {
7981
data.columns.push(getData(routeTarget));
82+
data.names[routeTarget.name] = _.trunc(routeTarget.name, { length: 30 });
8083
$scope.totalWeight += routeTarget.weight;
8184
});
8285
}

app/views/browse/route.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ <h4>Traffic</h4>
124124
This route splits traffic across multiple services.
125125
</div>
126126
</div>
127-
<div class="col-sm-5 col-sm-push-7 mar-bottom-lg">
127+
<div class="col-sm-12 col-md-5 col-md-push-7 mar-bottom-lg">
128128
<route-service-pie route="route"></route-service-pie>
129129
</div>
130-
<div class="col-sm-7 col-sm-pull-5">
130+
<div class="cold-sm-12 col-md-7 col-md-pull-5">
131131
<table class="table table-bordered">
132132
<thead>
133133
<tr>

0 commit comments

Comments
 (0)