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

Failed to ignore revisions in .git-blame-ignore-revs.

43 lines
857 B
JavaScript
Raw Normal View History

import I18n from "I18n";
import Component from "@ember/component";
import discourseComputed, { observes } from "discourse-common/utils/decorators";
export default Component.extend({
classNames: ["inline-edit"],
checked: null,
checkedInternal: null,
2018-06-15 11:03:24 -04:00
init() {
this._super(...arguments);
this.set("checkedInternal", this.checked);
},
@observes("checked")
checkedChanged() {
this.set("checkedInternal", this.checked);
},
@discourseComputed("labelKey")
label(key) {
return I18n.t(key);
},
@discourseComputed("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.checked);
},
2018-06-15 11:03:24 -04:00
finished() {
this.set("checked", this.checkedInternal);
this.action();
}
}
});