travis-web/app/components/dashboard-row.js
2016-01-04 13:15:14 +01:00

24 lines
661 B
JavaScript

import Ember from 'ember';
import { githubCommit as githubCommitUrl } from 'travis/utils/urls';
import config from 'travis/config/environment';
export default Ember.Component.extend({
tagName: 'li',
classNameBindings: ['repo.default_branch.last_build.state'],
classNames: ['dashboard-row', 'row-li'],
isLoading: false,
isTriggering: false,
hasTriggered: false,
urlGithubCommit: function() {
return githubCommitUrl(this.get('repo.slug'), this.get('repo.default_branch.last_build.commit.sha'));
}.property('repo'),
actions: {
tiggerBuild(branch) {
this.set('isTriggering', true);
return this.triggerBuild();
}
}
});