2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2018-06-15 23:03:24 +08:00
|
|
|
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
import PenaltyController from "admin/mixins/penalty-controller";
|
2014-08-13 07:04:36 +08:00
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend(PenaltyController, {
|
2017-09-14 04:44:47 +08:00
|
|
|
suspendUntil: null,
|
2017-09-15 02:10:39 +08:00
|
|
|
suspending: false,
|
2013-11-01 22:47:03 +08:00
|
|
|
|
2017-09-14 02:11:33 +08:00
|
|
|
onShow() {
|
2018-01-31 05:31:29 +08:00
|
|
|
this.resetModal();
|
|
|
|
this.setProperties({ suspendUntil: null, suspending: false });
|
2017-09-14 02:11:33 +08:00
|
|
|
},
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
@computed("suspendUntil", "reason", "suspending")
|
2017-09-15 02:10:39 +08:00
|
|
|
submitDisabled(suspendUntil, reason, suspending) {
|
2018-06-15 23:03:24 +08:00
|
|
|
return (
|
|
|
|
suspending || Ember.isEmpty(suspendUntil) || !reason || reason.length < 1
|
|
|
|
);
|
2017-09-14 02:11:33 +08:00
|
|
|
},
|
2014-02-05 00:03:35 +08:00
|
|
|
|
2013-11-01 22:47:03 +08:00
|
|
|
actions: {
|
2017-09-14 02:11:33 +08:00
|
|
|
suspend() {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (this.submitDisabled) {
|
2018-06-15 23:03:24 +08:00
|
|
|
return;
|
|
|
|
}
|
2017-09-14 02:11:33 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
this.set("suspending", true);
|
2018-01-31 05:31:29 +08:00
|
|
|
|
|
|
|
this.penalize(() => {
|
2019-05-27 16:15:39 +08:00
|
|
|
return this.user.suspend({
|
|
|
|
suspend_until: this.suspendUntil,
|
|
|
|
reason: this.reason,
|
|
|
|
message: this.message,
|
|
|
|
post_id: this.postId,
|
|
|
|
post_action: this.postAction,
|
|
|
|
post_edit: this.postEdit
|
2018-01-31 05:31:29 +08:00
|
|
|
});
|
2018-06-15 23:03:24 +08:00
|
|
|
}).finally(() => this.set("suspending", false));
|
2013-11-01 22:47:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|