mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
37 lines
760 B
Plaintext
37 lines
760 B
Plaintext
|
import {default as computed, observes} from "ember-addons/ember-computed-decorators";
|
||
|
|
||
|
export default Ember.Component.extend({
|
||
|
init(){
|
||
|
this._super();
|
||
|
this.set("checkedInternal", this.get("checked"));
|
||
|
},
|
||
|
|
||
|
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) {
|
||
|
return (!!checked) !== (!!checkedInternal);
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
cancelled(){
|
||
|
this.set("checkedInternal", this.get("checked"));
|
||
|
},
|
||
|
|
||
|
finished(){
|
||
|
this.set("checked", this.get("checkedInternal"));
|
||
|
this.sendAction();
|
||
|
}
|
||
|
}
|
||
|
});
|