mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
import Component from "@ember/component";
|
|
import I18n from "I18n";
|
|
import { action } from "@ember/object";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { equal } from "@ember/object/computed";
|
|
|
|
const CUSTOM_REASON_KEY = "custom";
|
|
|
|
export default Component.extend({
|
|
tagName: "",
|
|
selectedReason: CUSTOM_REASON_KEY,
|
|
customReason: "",
|
|
reasonKeys: [
|
|
"not_listening_to_staff",
|
|
"consuming_staff_time",
|
|
"combative",
|
|
"in_wrong_place",
|
|
"no_constructive_purpose",
|
|
CUSTOM_REASON_KEY,
|
|
],
|
|
isCustomReason: equal("selectedReason", CUSTOM_REASON_KEY),
|
|
|
|
@discourseComputed("reasonKeys")
|
|
reasons(keys) {
|
|
return keys.map((key) => {
|
|
return { id: key, name: I18n.t(`admin.user.suspend_reasons.${key}`) };
|
|
});
|
|
},
|
|
|
|
@action
|
|
setSelectedReason(value) {
|
|
this.set("selectedReason", value);
|
|
this.setReason();
|
|
},
|
|
|
|
@action
|
|
setCustomReason(value) {
|
|
this.set("customReason", value);
|
|
this.setReason();
|
|
},
|
|
|
|
setReason() {
|
|
if (this.isCustomReason) {
|
|
this.set("reason", this.customReason);
|
|
} else {
|
|
this.set(
|
|
"reason",
|
|
I18n.t(`admin.user.suspend_reasons.${this.selectedReason}`)
|
|
);
|
|
}
|
|
},
|
|
});
|