X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fapp%2F%2Badmin%2Fusers%2Fuser-list%2Fuser-list.component.ts;h=ab225072235711008699f1809e30d49de3f2d4fb;hb=dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb;hp=9697ce202e4540e220334913f7509877cb0193c8;hpb=d466dece0a07555b91f01fa35fcc5dcfe79d9e12;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+admin/users/user-list/user-list.component.ts b/client/src/app/+admin/users/user-list/user-list.component.ts index 9697ce202..ab2250722 100644 --- a/client/src/app/+admin/users/user-list/user-list.component.ts +++ b/client/src/app/+admin/users/user-list/user-list.component.ts @@ -2,13 +2,11 @@ import { Component, OnInit, ViewChild } from '@angular/core' import { NotificationsService } from 'angular2-notifications' import { SortMeta } from 'primeng/components/common/sortmeta' import { ConfirmService } from '../../../core' -import { RestPagination, RestTable } from '../../../shared' -import { UserService } from '../shared' +import { RestPagination, RestTable, UserService } from '../../../shared' import { I18n } from '@ngx-translate/i18n-polyfill' -import { DropdownAction } from '@app/shared/buttons/action-dropdown.component' -import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' -import { UserBanModalComponent } from '@app/+admin/users/user-list/user-ban-modal.component' import { User } from '../../../../../../shared' +import { UserBanModalComponent } from '@app/shared/moderation' +import { DropdownAction } from '@app/shared/buttons/action-dropdown.component' @Component({ selector: 'my-user-list', @@ -23,10 +21,9 @@ export class UserListComponent extends RestTable implements OnInit { rowsPerPage = 10 sort: SortMeta = { field: 'createdAt', order: 1 } pagination: RestPagination = { count: this.rowsPerPage, start: 0 } - userActions: DropdownAction[] = [] - private userToBan: User - private openedModal: NgbModalRef + selectedUsers: User[] = [] + bulkUserActions: DropdownAction[] = [] constructor ( private notificationsService: NotificationsService, @@ -35,85 +32,80 @@ export class UserListComponent extends RestTable implements OnInit { private i18n: I18n ) { super() + } - this.userActions = [ - { - label: this.i18n('Edit'), - linkBuilder: this.getRouterUserEditLink - }, + ngOnInit () { + this.initialize() + + this.bulkUserActions = [ { label: this.i18n('Delete'), - handler: user => this.removeUser(user) + handler: users => this.removeUsers(users) }, { label: this.i18n('Ban'), - handler: user => this.openBanUserModal(user), - isDisplayed: user => !user.blocked + handler: users => this.openBanUserModal(users), + isDisplayed: users => users.every(u => u.blocked === false) }, { label: this.i18n('Unban'), - handler: user => this.unbanUser(user), - isDisplayed: user => user.blocked + handler: users => this.unbanUsers(users), + isDisplayed: users => users.every(u => u.blocked === true) } ] } - ngOnInit () { - this.loadSort() - } - - hideBanUserModal () { - this.userToBan = undefined - this.openedModal.close() - } - - openBanUserModal (user: User) { - if (user.username === 'root') { - this.notificationsService.error(this.i18n('Error'), this.i18n('You cannot ban root.')) - return + openBanUserModal (users: User[]) { + for (const user of users) { + if (user.username === 'root') { + this.notificationsService.error(this.i18n('Error'), this.i18n('You cannot ban root.')) + return + } } - this.userBanModal.openModal(user) + this.userBanModal.openModal(users) } - onUserBanned () { + onUsersBanned () { this.loadData() } - async unbanUser (user: User) { - const message = this.i18n('Do you really want to unban {{username}}?', { username: user.username }) + async unbanUsers (users: User[]) { + const message = this.i18n('Do you really want to unban {{num}} users?', { num: users.length }) + const res = await this.confirmService.confirm(message, this.i18n('Unban')) if (res === false) return - this.userService.unbanUser(user) - .subscribe( - () => { - this.notificationsService.success( - this.i18n('Success'), - this.i18n('User {{username}} unbanned.', { username: user.username }) - ) - this.loadData() - }, - - err => this.notificationsService.error(this.i18n('Error'), err.message) - ) + this.userService.unbanUsers(users) + .subscribe( + () => { + const message = this.i18n('{{num}} users unbanned.', { num: users.length }) + + this.notificationsService.success(this.i18n('Success'), message) + this.loadData() + }, + + err => this.notificationsService.error(this.i18n('Error'), err.message) + ) } - async removeUser (user: User) { - if (user.username === 'root') { - this.notificationsService.error(this.i18n('Error'), this.i18n('You cannot delete root.')) - return + async removeUsers (users: User[]) { + for (const user of users) { + if (user.username === 'root') { + this.notificationsService.error(this.i18n('Error'), this.i18n('You cannot delete root.')) + return + } } - const message = this.i18n('If you remove this user, you will not be able to create another with the same username!') + const message = this.i18n('If you remove these users, you will not be able to create others with the same username!') const res = await this.confirmService.confirm(message, this.i18n('Delete')) if (res === false) return - this.userService.removeUser(user).subscribe( + this.userService.removeUser(users).subscribe( () => { this.notificationsService.success( this.i18n('Success'), - this.i18n('User {{username}} deleted.', { username: user.username }) + this.i18n('{{num}} users deleted.', { num: users.length }) ) this.loadData() }, @@ -122,12 +114,14 @@ export class UserListComponent extends RestTable implements OnInit { ) } - getRouterUserEditLink (user: User) { - return [ '/admin', 'users', 'update', user.id ] + isInSelectionMode () { + return this.selectedUsers.length !== 0 } protected loadData () { - this.userService.getUsers(this.pagination, this.sort) + this.selectedUsers = [] + + this.userService.getUsers(this.pagination, this.sort, this.search) .subscribe( resultList => { this.users = resultList.data