]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/users/user-list/user-list.component.ts
Update FAQ.md
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / users / user-list / user-list.component.ts
CommitLineData
141b177d 1import { Component, OnInit, ViewChild } from '@angular/core'
df98563e 2import { NotificationsService } from 'angular2-notifications'
1f30a185 3import { SortMeta } from 'primeng/components/common/sortmeta'
df98563e 4import { ConfirmService } from '../../../core'
8569a870 5import { RestPagination, RestTable } from '../../../shared'
df98563e 6import { UserService } from '../shared'
b1d40cff 7import { I18n } from '@ngx-translate/i18n-polyfill'
eacb25c4 8import { DropdownAction } from '@app/shared/buttons/action-dropdown.component'
141b177d
C
9import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref'
10import { UserBanModalComponent } from '@app/+admin/users/user-list/user-ban-modal.component'
8569a870 11import { User } from '../../../../../../shared'
7da18e44
C
12
13@Component({
14 selector: 'my-user-list',
ec8d8440
C
15 templateUrl: './user-list.component.html',
16 styleUrls: [ './user-list.component.scss' ]
7da18e44 17})
ab998f7b 18export class UserListComponent extends RestTable implements OnInit {
141b177d
C
19 @ViewChild('userBanModal') userBanModal: UserBanModalComponent
20
d592e0a9
C
21 users: User[] = []
22 totalRecords = 0
23 rowsPerPage = 10
ab998f7b 24 sort: SortMeta = { field: 'createdAt', order: 1 }
d592e0a9 25 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
eacb25c4 26 userActions: DropdownAction<User>[] = []
7da18e44 27
141b177d
C
28 private openedModal: NgbModalRef
29
df98563e 30 constructor (
7ddd02c9 31 private notificationsService: NotificationsService,
5769e1db 32 private confirmService: ConfirmService,
b1d40cff
C
33 private userService: UserService,
34 private i18n: I18n
28798b5d 35 ) {
d592e0a9 36 super()
eacb25c4
C
37
38 this.userActions = [
39 {
141b177d 40 label: this.i18n('Edit'),
eacb25c4
C
41 linkBuilder: this.getRouterUserEditLink
42 },
43 {
141b177d 44 label: this.i18n('Delete'),
eacb25c4 45 handler: user => this.removeUser(user)
141b177d
C
46 },
47 {
48 label: this.i18n('Ban'),
49 handler: user => this.openBanUserModal(user),
50 isDisplayed: user => !user.blocked
51 },
52 {
53 label: this.i18n('Unban'),
54 handler: user => this.unbanUser(user),
55 isDisplayed: user => user.blocked
eacb25c4
C
56 }
57 ]
7da18e44
C
58 }
59
ab998f7b
C
60 ngOnInit () {
61 this.loadSort()
62 }
63
141b177d 64 hideBanUserModal () {
141b177d
C
65 this.openedModal.close()
66 }
67
68 openBanUserModal (user: User) {
69 if (user.username === 'root') {
70 this.notificationsService.error(this.i18n('Error'), this.i18n('You cannot ban root.'))
71 return
72 }
73
74 this.userBanModal.openModal(user)
75 }
76
77 onUserBanned () {
78 this.loadData()
79 }
80
81 async unbanUser (user: User) {
82 const message = this.i18n('Do you really want to unban {{username}}?', { username: user.username })
83 const res = await this.confirmService.confirm(message, this.i18n('Unban'))
84 if (res === false) return
85
86 this.userService.unbanUser(user)
87 .subscribe(
88 () => {
89 this.notificationsService.success(
90 this.i18n('Success'),
91 this.i18n('User {{username}} unbanned.', { username: user.username })
92 )
93 this.loadData()
94 },
95
96 err => this.notificationsService.error(this.i18n('Error'), err.message)
97 )
98 }
99
1f30a185 100 async removeUser (user: User) {
28798b5d 101 if (user.username === 'root') {
b1d40cff 102 this.notificationsService.error(this.i18n('Error'), this.i18n('You cannot delete root.'))
df98563e 103 return
28798b5d 104 }
7da18e44 105
d466dece
C
106 const message = this.i18n('If you remove this user, you will not be able to create another with the same username!')
107 const res = await this.confirmService.confirm(message, this.i18n('Delete'))
1f30a185 108 if (res === false) return
5769e1db 109
1f30a185
C
110 this.userService.removeUser(user).subscribe(
111 () => {
b1d40cff
C
112 this.notificationsService.success(
113 this.i18n('Success'),
25acef90 114 this.i18n('User {{username}} deleted.', { username: user.username })
b1d40cff 115 )
1f30a185
C
116 this.loadData()
117 },
5769e1db 118
b1d40cff 119 err => this.notificationsService.error(this.i18n('Error'), err.message)
df98563e 120 )
7da18e44 121 }
d592e0a9
C
122
123 getRouterUserEditLink (user: User) {
9b9b1805 124 return [ '/admin', 'users', 'update', user.id ]
d592e0a9
C
125 }
126
127 protected loadData () {
128 this.userService.getUsers(this.pagination, this.sort)
129 .subscribe(
130 resultList => {
131 this.users = resultList.data
132 this.totalRecords = resultList.total
133 },
134
b1d40cff 135 err => this.notificationsService.error(this.i18n('Error'), err.message)
d592e0a9
C
136 )
137 }
7da18e44 138}