From 30f7249948272bacd77d8f8f4f64ea31e62436d5 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 4 Jun 2026 19:51:42 +0300 Subject: [PATCH] cleanup user list menu, leftovers from moderation copypaste --- .../user_list_menu/user_list_menu.js | 56 ------------------- 1 file changed, 56 deletions(-) diff --git a/src/components/user_list_menu/user_list_menu.js b/src/components/user_list_menu/user_list_menu.js index 47a84a6bb..cb3d27a2f 100644 --- a/src/components/user_list_menu/user_list_menu.js +++ b/src/components/user_list_menu/user_list_menu.js @@ -1,6 +1,5 @@ import { mapState } from 'pinia' -import DialogModal from '../dialog_modal/dialog_modal.vue' import Popover from '../popover/popover.vue' import { useListsStore } from 'src/stores/lists.js' @@ -16,7 +15,6 @@ const UserListMenu = { return {} }, components: { - DialogModal, Popover, }, created() { @@ -64,60 +62,6 @@ const UserListMenu = { }) } }, - toggleRight(right) { - const store = this.$store - if (this.user.rights[right]) { - store.state.api.backendInteractor - .deleteRight({ user: this.user, right }) - .then((response) => { - if (!response.ok) { - return - } - store.commit('updateRight', { - user: this.user, - right, - value: false, - }) - }) - } else { - store.state.api.backendInteractor - .addRight({ user: this.user, right }) - .then((response) => { - if (!response.ok) { - return - } - store.commit('updateRight', { user: this.user, right, value: true }) - }) - } - }, - toggleActivationStatus() { - this.$store.dispatch('toggleActivationStatus', { user: this.user }) - }, - deleteUserDialog(show) { - this.showDeleteUserDialog = show - }, - deleteUser() { - const store = this.$store - const user = this.user - const { id, name } = user - store.state.api.backendInteractor.deleteUser({ user }).then(() => { - this.$store.dispatch( - 'markStatusesAsDeleted', - (status) => user.id === status.user.id, - ) - const isProfile = - this.$route.name === 'external-user-profile' || - this.$route.name === 'user-profile' - const isTargetUser = - this.$route.params.name === name || this.$route.params.id === id - if (isProfile && isTargetUser) { - window.history.back() - } - }) - }, - setToggled(value) { - this.toggled = value - }, }, }