Update time also for finished builds, but only every minute

This commit is contained in:
Piotr Sarnacki 2016-01-25 17:55:48 +01:00
parent 069f7ddbeb
commit e919906f99
7 changed files with 82 additions and 40 deletions

View File

@ -3,6 +3,8 @@ import config from 'travis/config/environment';
export default Ember.Component.extend({
store: Ember.inject.service(),
updateTimesService: Ember.inject.service('updateTimes'),
init() {
this._super.apply(this, arguments);
if (!Ember.testing) {
@ -11,11 +13,6 @@ export default Ember.Component.extend({
},
updateTimes() {
var jobs;
if (jobs = this.get('jobs')) {
return jobs.forEach(function(job) {
return job.updateTimes();
});
}
this.get('updateTimesService').push(this.get('jobs'));
}
});

View File

@ -4,6 +4,7 @@ import config from 'travis/config/environment';
export default Ember.Component.extend(Polling, {
store: Ember.inject.service(),
updateTimesService: Ember.inject.service('updateTimes'),
pollHook(store) {
return this.get('store').find('job', {});
@ -17,11 +18,6 @@ export default Ember.Component.extend(Polling, {
},
updateTimes() {
var jobs;
if (jobs = this.get('jobs')) {
return jobs.forEach(function(job) {
return job.updateTimes();
});
}
this.get('updateTimesService').push(this.get('jobs'));
}
});

View File

@ -4,6 +4,7 @@ import config from 'travis/config/environment';
export default Ember.Controller.extend({
updateTimesService: Ember.inject.service('updateTimes'),
popup: Ember.inject.service(),
jobController: Ember.inject.controller('job'),
@ -49,27 +50,16 @@ export default Ember.Controller.extend({
init() {
this._super.apply(this, arguments);
if (!Ember.testing) {
return Visibility.every(this.config.intervals.updateTimes, this.updateTimes.bind(this));
Visibility.every(this.config.intervals.updateTimes, this.updateTimes.bind(this));
}
},
updateTimes() {
return Ember.run(this, function() {
var build, builds, jobs;
if (builds = this.get('builds')) {
builds.forEach(function(b) {
return b.updateTimes();
});
}
if (build = this.get('build')) {
build.updateTimes();
}
if (build && (jobs = build.get('jobs'))) {
return jobs.forEach(function(j) {
return j.updateTimes();
});
}
});
let updateTimesService = this.get('updateTimesService');
updateTimesService.push(this.get('build'));
updateTimesService.push(this.get('builds'));
updateTimesService.push(this.get('jobs'));
},
deactivate() {

View File

@ -51,6 +51,7 @@ var sortCallback = function(repo1, repo2) {
var Controller = Ember.Controller.extend({
ajax: Ember.inject.service(),
updateTimesService: Ember.inject.service('updateTimes'),
actions: {
activate: function(name) {
@ -97,7 +98,7 @@ var Controller = Ember.Controller.extend({
init() {
this._super.apply(this, arguments);
if (!Ember.testing) {
return Visibility.every(this.config.intervals.updateTimes, this.updateTimes.bind(this));
Visibility.every(this.config.intervals.updateTimes, this.updateTimes.bind(this));
}
},
@ -133,12 +134,13 @@ var Controller = Ember.Controller.extend({
}.property(),
updateTimes() {
var repos;
if (repos = this.get('repos')) {
return repos.forEach(function(r) {
return r.updateTimes();
});
let records = this.get('repos');
if(Config.useV3API) {
let callback = (record) => { return record.get('lastBuild'); };
records = records.filter(callback).map(callback);
}
this.get('updateTimesService').push(records);
},
activate(tab, params) {

View File

@ -55,7 +55,12 @@ if (Config.useV3API) {
duration = durationFromHelper(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));
}
return duration;
}.property('_lastBuildDuration', 'lastBuildStartedAt', 'lastBuildFinishedAt')
}.property('_lastBuildDuration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),
isFinished: function() {
let state = this.get('lastBuildState');
return ['passed', 'failed', 'errored', 'canceled'].contains(state);
}.property('lastBuildState')
});
}

View File

@ -0,0 +1,54 @@
import Ember from 'ember';
import Config from 'travis/config/environment';
export default Ember.Service.extend({
records: [],
allowFinishedBuilds: false,
init() {
Visibility.every(Config.intervals.updateTimes, this.updateTimes.bind(this));
setInterval(this.resetAllowFinishedBuilds.bind(this), 60000);
return this._super(...arguments);
},
resetAllowFinishedBuilds() {
this.set('allowFinishedBuilds', true);
},
updateTimes() {
let records = this.get('records');
records.filter((record) => {
return this.get('allowFinishedBuilds') || !record.get('isFinished');
}).forEach((record) => {
record.updateTimes();
});
this.set('records', []);
if(this.get('allowFinishedBuilds')) {
this.set('allowFinishedBuilds', false);
}
},
pushObject(record) {
let records = this.get('records');
if(!records.contains(record)) {
records.pushObject(record);
}
},
push(model) {
if(!model) { return; }
if(model.forEach) {
model.forEach( (element) => {
this.pushObject(element);
});
} else {
this.pushObject(model);
}
}
});

View File

@ -14,9 +14,7 @@ export default Ember.Mixin.create({
}.property('_duration', 'finishedAt', 'startedAt', 'notStarted', '_finishedAt', '_startedAt'),
updateTimes() {
if (!this.get('isFinished')) {
this.notifyPropertyChange('duration');
return this.notifyPropertyChange('finishedAt');
}
this.notifyPropertyChange('duration');
return this.notifyPropertyChange('finishedAt');
}
});