discourse/app/assets/javascripts/admin/components/inline-edit-checkbox.js.es6

40 lines
765 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import {
default as computed,
observes
} from "ember-addons/ember-computed-decorators";
export default Ember.Component.extend({
2018-06-15 11:03:24 -04:00
init() {
this._super();
this.set("checkedInternal", this.get("checked"));
},
2018-06-15 11:03:24 -04:00
classNames: ["inline-edit"],
@observes("checked")
checkedChanged() {
this.set("checkedInternal", this.get("checked"));
},
@computed("labelKey")
label(key) {
return I18n.t(key);
},
@computed("checked", "checkedInternal")
changed(checked, checkedInternal) {
2018-06-15 11:03:24 -04:00
return !!checked !== !!checkedInternal;
},
actions: {
2018-06-15 11:03:24 -04:00
cancelled() {
this.set("checkedInternal", this.get("checked"));
},
2018-06-15 11:03:24 -04:00
finished() {
this.set("checked", this.get("checkedInternal"));
this.sendAction();
}
}
});