discourse/app/assets/javascripts/admin/components/penalty-post-action.js.es6

38 lines
972 B
Plaintext
Raw Normal View History

import { equal } from "@ember/object/computed";
import { scheduleOnce } from "@ember/runloop";
import Component from "@ember/component";
2018-06-15 11:03:24 -04:00
import computed from "ember-addons/ember-computed-decorators";
const ACTIONS = ["delete", "delete_replies", "edit", "none"];
export default Component.extend({
postId: null,
postAction: null,
postEdit: null,
@computed
penaltyActions() {
return ACTIONS.map(id => {
return { id, name: I18n.t(`admin.user.penalty_post_${id}`) };
});
},
editing: equal("postAction", "edit"),
actions: {
penaltyChanged() {
let postAction = this.postAction;
// If we switch to edit mode, jump to the edit textarea
2018-06-15 11:03:24 -04:00
if (postAction === "edit") {
scheduleOnce("afterRender", () => {
let elem = this.element;
let body = elem.closest(".modal-body");
body.scrollTop(body.height());
elem.querySelector(".post-editor").focus();
});
}
}
}
});