mirror of
https://github.com/discourse/discourse.git
synced 2025-05-24 01:14:12 +08:00
DEV: Convert delete-user-posts-progress
modal to component-based API (#22916)
https://github.com/discourse/discourse/assets/50783505/414ffcc5-06e9-470f-b160-83b4c12bbb96
This commit is contained in:
@ -0,0 +1,42 @@
|
||||
import Component from "@glimmer/component";
|
||||
import { action } from "@ember/object";
|
||||
import { tracked } from "@glimmer/tracking";
|
||||
import AdminUser from "admin/models/admin-user";
|
||||
import { extractError } from "discourse/lib/ajax-error";
|
||||
import I18n from "I18n";
|
||||
|
||||
export default class DeleteUserPostsProgress extends Component {
|
||||
@tracked deletedPosts = 0;
|
||||
@tracked flash;
|
||||
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.deletePosts();
|
||||
}
|
||||
|
||||
get userPostCount() {
|
||||
return this.args.model.user.get("post_count");
|
||||
}
|
||||
|
||||
get deletedPercentage() {
|
||||
return Math.floor((this.deletedPosts * 100) / this.userPostCount);
|
||||
}
|
||||
|
||||
@action
|
||||
async deletePosts() {
|
||||
try {
|
||||
const progress = await this.args.model.user.deleteAllPosts();
|
||||
this.deletedPosts = progress.posts_deleted;
|
||||
this.args.model.updateUserPostCount(
|
||||
this.userPostCount - this.deletedPosts
|
||||
);
|
||||
// continue deleting posts if more remain, otherwise exit
|
||||
this.userPostCount > 0 ? this.deletePosts() : this.args.closeModal();
|
||||
} catch (e) {
|
||||
AdminUser.find(this.args.model.user.id).then((u) =>
|
||||
this.args.model.user.setProperties(u)
|
||||
);
|
||||
this.flash = extractError(e, I18n.t("admin.user.delete_posts_failed"));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user