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

27 lines
681 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'a',
classNames: ['travis-switch', 'switch'],
classNameBindings: ['_active:active'],
_active: function() {
return this.get('target.active') || this.get('active');
}.property('target.active', 'active'),
click() {
var target;
target = this.get('target');
if (this.get('toggleAutomatically') !== 'false') {
if (target) {
this.set('target.active', !this.get('target.active'));
} else {
this.set('active', !this.get('active'));
}
}
return Ember.run.next(this, function() {
return this.sendAction('action', target);
});
}
});