This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/js/directives/ui/repo-list-grid.js
Joseph Schorr 3da8814787 Create a common repo-list-view control and use it everywhere
This allows users to choose grid view or table view in all repo lists

Fixes #732
2016-01-04 15:42:25 -05:00

26 lines
No EOL
769 B
JavaScript

/**
* An element that displays a list of repositories in a grid.
*/
angular.module('quay').directive('repoListGrid', function () {
var directiveDefinitionObject = {
priority: 0,
templateUrl: '/static/directives/repo-list-grid.html',
replace: false,
transclude: true,
restrict: 'C',
scope: {
repositoriesResource: '=repositoriesResource',
starred: '=starred',
namespace: '=namespace',
starToggled: '&starToggled',
hideTitle: '=hideTitle',
hideNamespaces: '=hideNamespaces'
},
controller: function($scope, $element, UserService) {
$scope.isOrganization = function(namespace) {
return !!UserService.getOrganization(namespace);
};
}
};
return directiveDefinitionObject;
});