mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-15 18:48:40 +08:00
70 lines
1.9 KiB
Text
70 lines
1.9 KiB
Text
/* eslint-disable ember/no-classic-components */
|
|
import Component, { Input } from "@ember/component";
|
|
import { action } from "@ember/object";
|
|
import { classNames } from "@ember-decorators/component";
|
|
import DButton from "discourse/components/d-button";
|
|
import discourseComputed from "discourse/lib/decorators";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
@classNames("inline-edit")
|
|
export default class InlineEditCheckbox extends Component {
|
|
buffer = null;
|
|
bufferModelId = null;
|
|
|
|
didReceiveAttrs() {
|
|
super.didReceiveAttrs(...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);
|
|
}
|
|
|
|
<template>
|
|
<label class="checkbox-label">
|
|
<Input
|
|
@type="checkbox"
|
|
disabled={{this.disabled}}
|
|
@checked={{this.buffer}}
|
|
/>
|
|
{{i18n this.labelKey}}
|
|
</label>
|
|
{{#if this.changed}}
|
|
<DButton
|
|
@action={{this.apply}}
|
|
@icon="check"
|
|
class="btn-primary btn-small submit-edit"
|
|
/>
|
|
<DButton
|
|
@action={{this.cancel}}
|
|
@icon="xmark"
|
|
class="btn-small cancel-edit"
|
|
/>
|
|
{{/if}}
|
|
</template>
|
|
}
|