1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 07:19:41 +02:00

Add size and actions to container view

This commit is contained in:
Michael Crosby 2013-06-19 12:39:33 -09:00
parent 2d199eec5d
commit dd8c4ce672
3 changed files with 63 additions and 5 deletions

View file

@ -68,8 +68,7 @@ function ContainerController($scope, $routeParams, $location, Container) {
$scope.start = function(){
Container.start({id: $routeParams.id}, function(d) {
console.log(d);
setSuccessfulResponse($scope, 'Container started.', '#response');
console.log(d); setSuccessfulResponse($scope, 'Container started.', '#response');
}, function(e) {
console.log(e);
setFailedResponse($scope, e.data, '#response');
@ -137,14 +136,31 @@ function ContainerController($scope, $routeParams, $location, Container) {
function ContainersController($scope, Container, Settings, ViewSpinner) {
$scope.displayAll = Settings.displayAll;
$scope.predicate = '-Created';
$scope.toggle = false;
var update = function(data) {
ViewSpinner.spin();
Container.query(data, function(d) {
$scope.containers = d;
$scope.containers = d.map(function(item) { return new ContainerViewModel(item); });
ViewSpinner.stop();
});
};
var batch = function(items, action) {
angular.forEach(items, function(c) {
if (c.Checked) {
action({id: c.Id}, function(d) {
console.log(d);
});
}
});
};
$scope.toggleSelectAll = function() {
angular.forEach($scope.containers, function(i) {
i.Checked = $scope.toggle;
});
};
$scope.toggleGetAll = function() {
Settings.displayAll = $scope.displayAll;
@ -157,6 +173,22 @@ function ContainersController($scope, Container, Settings, ViewSpinner) {
u(data);
};
$scope.startAction = function() {
batch($scope.containers, Container.start);
};
$scope.stopAction = function() {
batch($scope.containers, Container.stop);
};
$scope.killAction = function() {
batch($scope.containers, Container.kill);
};
$scope.removeAction = function() {
batch($scope.containers, Container.remove);
};
update({all: $scope.displayAll ? 1 : 0});
}