mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:51:36 +08:00
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import Controller, { inject as controller } from "@ember/controller";
|
|
import I18n from "I18n";
|
|
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
|
import { action, get } from "@ember/object";
|
|
import { alias } from "@ember/object/computed";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default Controller.extend(ModalFunctionality, {
|
|
adminUserIndex: controller(),
|
|
username: alias("model.username"),
|
|
|
|
onShow() {
|
|
this.set("targetUsername", null);
|
|
},
|
|
|
|
@discourseComputed("username", "targetUsername")
|
|
mergeDisabled(username, targetUsername) {
|
|
return !targetUsername || username === targetUsername;
|
|
},
|
|
|
|
@discourseComputed("username")
|
|
mergeButtonText(username) {
|
|
return I18n.t(`admin.user.merge.confirmation.transfer_and_delete`, {
|
|
username,
|
|
});
|
|
},
|
|
|
|
@action
|
|
showConfirmation() {
|
|
this.send("closeModal");
|
|
this.adminUserIndex.send("showMergeConfirmation", this.targetUsername);
|
|
},
|
|
|
|
@action
|
|
close() {
|
|
this.send("closeModal");
|
|
},
|
|
|
|
@action
|
|
updateUsername(selected) {
|
|
this.set("targetUsername", get(selected, "firstObject"));
|
|
},
|
|
});
|