mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:51:36 +08:00
2742595b00
This commit includes a hack to ensure didInsertElement is called only once.
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import Component from "@ember/component";
|
|
import { action } from "@ember/object";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
classNames: ["inline-edit"],
|
|
|
|
buffer: null,
|
|
bufferModelId: null,
|
|
|
|
didReceiveAttrs() {
|
|
this._super(...arguments);
|
|
|
|
if (this.modelId !== this.bufferModelId) {
|
|
// HACK: The condition above ensures this method is called only when its
|
|
// attributes are changed (i.e. only when `checked` changes).
|
|
//
|
|
// Reproduction steps: navigate to theme #1, switch to theme #2 from the
|
|
// left-side panel, then switch back to theme #1 and click on the <input>
|
|
// element wrapped by this component. It will call `didReceiveAttrs` even
|
|
// though none of the attributes have changed (only `buffer` does).
|
|
this.setProperties({
|
|
buffer: this.checked,
|
|
bufferModelId: this.modelId,
|
|
});
|
|
}
|
|
},
|
|
|
|
@discourseComputed("checked", "buffer")
|
|
changed(checked, buffer) {
|
|
return !!checked !== !!buffer;
|
|
},
|
|
|
|
@action
|
|
apply() {
|
|
this.set("checked", this.buffer);
|
|
this.action();
|
|
},
|
|
|
|
@action
|
|
cancel() {
|
|
this.set("buffer", this.checked);
|
|
},
|
|
});
|