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
2019-11-12 11:09:47 -05:00

28 lines
No EOL
873 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',
repoKind: '@repoKind'
},
controller: function($scope, $element, UserService, StateService) {
$scope.inReadOnlyMode = StateService.inReadOnlyMode();
$scope.isOrganization = function(namespace) {
return !!UserService.getOrganization(namespace);
};
}
};
return directiveDefinitionObject;
});