
start row layouting work on dropup rearrange markup, make tofu toggle bäm use placeholder instead of variable, doh add border replace all the icons adjust icons sizes use icon classes instead of svg more icons adjustments more icon tweaks on caches update coloring mixins fix stateMap, update db coloring mixin cleanup owner page even more icon fun popup tweaks tweak api icon change to new broadcast icon change icon path responsive tweaks dashboard filter hack around Safari's not quite standard flexbox behaviour update row labels and icon spacing rearrange links in sidebar make last builds a component, tweak svg stroke-width more icon tweaks fiddle around with svg view props rearrange links in branch-row tweak request icon add integration test more tweaks
26 lines
580 B
JavaScript
26 lines
580 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: 'span',
|
|
classNames: ['request-icon', 'icon'],
|
|
classNameBindings: ['event', 'state'],
|
|
|
|
isPush: function() {
|
|
return this.get('event') === 'push';
|
|
}.property('event'),
|
|
|
|
isPR: function() {
|
|
return this.get('event') === 'pull_request';
|
|
}.property('event'),
|
|
|
|
isAPI: function() {
|
|
return this.get('event') === 'api';
|
|
}.property('event'),
|
|
|
|
isEmpty: function() {
|
|
if (this.get('event') === null || this.get('event') === null) {
|
|
return true;
|
|
}
|
|
}.property('event')
|
|
});
|