- Upgrade angular-strap to fix an NPE

- Start the download of the rest of the repo information after the repo itself loads
This commit is contained in:
Joseph Schorr 2015-03-23 16:10:33 -04:00
parent 1ed814a469
commit d9c3c6689a
4 changed files with 29 additions and 21 deletions

View file

@ -1,11 +1,13 @@
<li ng-class="tabActive == 'true' ? 'active' : ''"> <li ng-class="tabActive == 'true' ? 'active' : ''">
<a href="javascript:void(0)" data-title="{{ tabTitle }}" <a href="javascript:void(0)" data-toggle="tab"
data-toggle="tab"
data-target="{{ tabTarget }}" data-target="{{ tabTarget }}"
data-placement="right" ng-click="tabInit()">
data-container="body" <span data-title="{{ tabTitle }}"
ng-click="tabInit()" data-placement="right"
bs-tooltip> data-container="body"
<span ng-transclude/> style="display:inline-block"
bs-tooltip>
<span ng-transclude/></span>
</span>
</a> </a>
</li> </li>

View file

@ -13,7 +13,7 @@
}, ['old-layout']); }, ['old-layout']);
}]); }]);
function RepoViewCtrl($scope, $routeParams, $location, ApiService, UserService, AngularPollChannel) { function RepoViewCtrl($scope, $routeParams, $location, $timeout, ApiService, UserService, AngularPollChannel) {
$scope.namespace = $routeParams.namespace; $scope.namespace = $routeParams.namespace;
$scope.name = $routeParams.name; $scope.name = $routeParams.name;
@ -64,11 +64,19 @@
$scope.repositoryResource = ApiService.getRepoAsResource(params).get(function(repo) { $scope.repositoryResource = ApiService.getRepoAsResource(params).get(function(repo) {
$scope.viewScope.repository = repo; $scope.viewScope.repository = repo;
$scope.setTags($routeParams.tag);
// Track builds. // Load the remainder of the data async, so we don't block the initial view from
buildPollChannel = AngularPollChannel.create($scope, loadRepositoryBuilds, 5000 /* 5s */); // showing.
buildPollChannel.start(); $timeout(function() {
$scope.setTags($routeParams.tag);
// Load the images.
loadImages();
// Track builds.
buildPollChannel = AngularPollChannel.create($scope, loadRepositoryBuilds, 5000 /* 5s */);
buildPollChannel.start();
}, 10);
}); });
}; };
@ -98,9 +106,8 @@
}, errorHandler); }, errorHandler);
}; };
// Load the repository and images. // Load the repository.
loadRepository(); loadRepository();
loadImages();
$scope.setTags = function(tagNames) { $scope.setTags = function(tagNames) {
if (!tagNames) { if (!tagNames) {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long