mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 18:05:06 +08:00
c34f8b65cb
As of #23867 this is now a real package, so updating the imports to use the real package name, rather than relying on the alias. The name change in the package name is because `I18n` is not a valid name as NPM packages must be all lowercase. This commit also introduces an eslint rule to prevent importing from the old I18n path. For themes/plugins, the old 'i18n' name remains functional.
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
import Component from "@glimmer/component";
|
|
import { tracked } from "@glimmer/tracking";
|
|
import { action } from "@ember/object";
|
|
import { extractError } from "discourse/lib/ajax-error";
|
|
import I18n from "discourse-i18n";
|
|
import AdminUser from "admin/models/admin-user";
|
|
|
|
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"));
|
|
}
|
|
}
|
|
}
|