mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
import PenaltyController from "admin/mixins/penalty-controller";
|
|
|
|
export default Ember.Controller.extend(PenaltyController, {
|
|
silenceUntil: null,
|
|
silencing: false,
|
|
|
|
onShow() {
|
|
this.resetModal();
|
|
this.setProperties({ silenceUntil: null, silencing: false });
|
|
},
|
|
|
|
@computed("silenceUntil", "reason", "silencing")
|
|
submitDisabled(silenceUntil, reason, silencing) {
|
|
return (
|
|
silencing || Ember.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));
|
|
}
|
|
}
|
|
});
|