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:
Isaac Janzen
2023-08-01 15:49:26 -05:00
committed by GitHub
parent 514f5d25e6
commit 7c8b0b9869
6 changed files with 69 additions and 55 deletions

View File

@ -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"));
}
}
}