travis-web/app/controllers/builds.js
Piotr Sarnacki 6efb2ac449 No need to load builds into repo.builds
Builds on repo model already incorporate all of the builds that belong
to a given repo and are loaded into a store, so no need to load them to
expandable array.
2016-01-18 13:18:19 +01:00

60 lines
1.5 KiB
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
buildsSorting: ['number:desc'],
builds: Ember.computed.sort('model', 'buildsSorting'),
repoController: Ember.inject.controller('repo'),
repoBinding: 'repoController.repo',
tabBinding: 'repoController.tab',
isLoadedBinding: 'model.isLoaded',
isLoadingBinding: 'model.isLoading',
showMore() {
var id, number, type;
id = this.get('repo.id');
number = this.get('builds.lastObject.number');
type = this.get('tab') === "builds" ? 'push' : 'pull_request';
this.olderThanNumber(id, number, type);
},
displayShowMoreButton: function() {
return this.get('tab') !== 'branches' && parseInt(this.get('builds.lastObject.number')) > 1;
}.property('tab', 'builds.lastObject.number'),
displayPullRequests: function() {
return this.get('tab') === 'pull_requests';
}.property('tab'),
displayBranches: function() {
return this.get('tab') === 'branches';
}.property('tab'),
noticeData: function() {
return {
repo: this.get('repo'),
auth: this.auth.token()
};
}.property('repo'),
olderThanNumber(id, number, type) {
var options;
options = {
repository_id: id,
after_number: number
};
if (type != null) {
options.event_type = type.replace(/s$/, '');
if (options.event_type === 'push') {
options.event_type = ['push', 'api'];
}
}
return this.store.query('build', options);
},
actions: {
showMoreBuilds() {
return this.showMore();
}
}
});