Sha256: bbab8604e74e042cbbdba49e6250769698cfd21abfdd2420eea84178f8cbf50a

Contents?: true

Size: 1.36 KB

Versions: 98

Compression:

Stored size: 1.36 KB

Contents

/**
 * @ngdoc object
 * @name  Bastion.host-collections.controller:HostCollectionsController
 *
 * @requires $scope
 * @requires $location
 * @requires translate
 * @requires Nutupane
 * @requires HostCollection
 * @requires CurrentOrganization
 *
 * @description
 *   Provides the functionality specific to host collections for use with the Nutupane UI pattern.
 *   Defines the columns to display and the transform function for how to generate each row
 *   within the table.
 */
angular.module('Bastion.host-collections').controller('HostCollectionsController',
    ['$scope', '$location', 'translate', 'Nutupane', 'HostCollection', 'CurrentOrganization',
    function ($scope, $location, translate, Nutupane, HostCollection, CurrentOrganization) {
        var params = {
            'organization_id': CurrentOrganization,
            'search': $location.search().search || "",
            'sort_by': 'name',
            'sort_order': 'ASC',
            'paged': true
        };

        var nutupane = new Nutupane(HostCollection, params);
        $scope.controllerName = 'katello_host_collections';
        nutupane.primaryOnly = true;

        $scope.table = nutupane.table;
        $scope.removeRow = nutupane.removeRow;

        $scope.$on("updateContentHostCollection", function (event, hostCollectionRow) {
            $scope.table.replaceRow(hostCollectionRow);
        });

    }]
);

Version data entries

98 entries across 98 versions & 1 rubygems

Version Path
katello-4.10.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.9.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.10.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.10.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.8.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.9.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.8.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.9.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.7.6 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.8.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.9.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.9.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.8.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.7.5 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.8.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.8.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.7.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.8.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.7.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js
katello-4.7.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js