mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:50:24 +08:00
d87a0216bb
* FEATURE: add penalty history when silencing a user Display penalty history (last 6 months) when silencing/suspending a user * FEATURE: allow default penalty values to be chosen Adds a site setting that designates default penalty values in hours. Silence/suspend modals will auto-fill in the default values, but otherwise will still allow moderators to pick and overwrite values as normal. First silence/suspend: first value Second silence/suspend: second value etc. Penalty counts are forgiven at the same rate as tl3 promotion requirements do. Co-authored-by: jjaffeux <j.jaffeux@gmail.com>
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
import Controller from "@ember/controller";
|
|
import PenaltyController from "admin/mixins/penalty-controller";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { isEmpty } from "@ember/utils";
|
|
|
|
export default Controller.extend(PenaltyController, {
|
|
silenceUntil: null,
|
|
silencing: false,
|
|
|
|
onShow() {
|
|
this.resetModal();
|
|
this.setProperties({ silenceUntil: null, silencing: false });
|
|
},
|
|
|
|
finishedSetup() {
|
|
this.set("silenceUntil", this.user?.next_penalty);
|
|
},
|
|
|
|
@discourseComputed("silenceUntil", "reason", "silencing")
|
|
submitDisabled(silenceUntil, reason, silencing) {
|
|
return silencing || isEmpty(silenceUntil) || !reason || reason.length < 1;
|
|
},
|
|
|
|
actions: {
|
|
silence() {
|
|
if (this.submitDisabled) {
|
|
return;
|
|
}
|
|
|
|
this.set("silencing", true);
|
|
this.penalize(() => {
|
|
return this.user.silence({
|
|
silenced_till: this.silenceUntil,
|
|
reason: this.reason,
|
|
message: this.message,
|
|
post_id: this.postId,
|
|
post_action: this.postAction,
|
|
post_edit: this.postEdit,
|
|
});
|
|
}).finally(() => this.set("silencing", false));
|
|
},
|
|
},
|
|
});
|