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
This commit is contained in:
parent
16f16e8a15
commit
3da8814787
13 changed files with 115 additions and 77 deletions
38
static/directives/repo-list-view.html
Normal file
38
static/directives/repo-list-view.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<div class="repo-list-view-element">
|
||||
<!-- Toggle -->
|
||||
<div class="repo-list-toggleb btn-group">
|
||||
<i class="btn btn-default fa fa-th-large" ng-class="!showAsList ? 'active' : ''"
|
||||
ng-click="setShowAsList(false)" title="Grid View" data-container="body" bs-tooltip></i>
|
||||
<i class="btn btn-default fa fa-th-list" ng-class="showAsList ? 'active' : ''"
|
||||
ng-click="setShowAsList(true)" title="List View" data-container="body" bs-tooltip></i>
|
||||
</div>
|
||||
|
||||
<div ng-transclude/>
|
||||
|
||||
<!-- Table View -->
|
||||
<div ng-if="showAsList">
|
||||
<div class="repo-list-table" repositories-resources="resources" namespaces="namespaces"
|
||||
star-toggled="starToggled({'repository': repository})">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Grid View -->
|
||||
<div ng-if="!showAsList">
|
||||
<!-- Starred Repository Listing -->
|
||||
<div class="repo-list-grid" repositories-resource="starredRepositories"
|
||||
starred="true"
|
||||
star-toggled="starToggled({'repository': repository})"
|
||||
ng-if="starredRepositories">
|
||||
</div>
|
||||
|
||||
<!-- User and Org Repository Listings -->
|
||||
<div ng-repeat="namespace in namespaces">
|
||||
<div class="repo-list-grid" repositories-resource="namespace.repositories"
|
||||
starred="false" namespace="namespace"
|
||||
star-toggled="starToggled({'repository': repository})"
|
||||
hide-title="namespaces.length == 1"
|
||||
hide-namespaces="namespaces.length == 1">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in a new issue