]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/users/user-list/user-list.component.ts
Better help on markdown fields
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / users / user-list / user-list.component.ts
CommitLineData
7e9334c3 1import { Component } from '@angular/core'
7da18e44 2
df98563e 3import { NotificationsService } from 'angular2-notifications'
1f30a185 4import { SortMeta } from 'primeng/components/common/sortmeta'
7ddd02c9 5
df98563e 6import { ConfirmService } from '../../../core'
1f30a185 7import { RestPagination, RestTable, User } from '../../../shared'
df98563e 8import { UserService } from '../shared'
7da18e44
C
9
10@Component({
11 selector: 'my-user-list',
ec8d8440
C
12 templateUrl: './user-list.component.html',
13 styleUrls: [ './user-list.component.scss' ]
7da18e44 14})
7e9334c3 15export class UserListComponent extends RestTable {
d592e0a9
C
16 users: User[] = []
17 totalRecords = 0
18 rowsPerPage = 10
19 sort: SortMeta = { field: 'id', order: 1 }
20 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
7da18e44 21
df98563e 22 constructor (
7ddd02c9 23 private notificationsService: NotificationsService,
5769e1db 24 private confirmService: ConfirmService,
7ddd02c9 25 private userService: UserService
28798b5d 26 ) {
d592e0a9 27 super()
7da18e44
C
28 }
29
1f30a185 30 async removeUser (user: User) {
28798b5d 31 if (user.username === 'root') {
df98563e
C
32 this.notificationsService.error('Error', 'You cannot delete root.')
33 return
28798b5d 34 }
7da18e44 35
1f30a185
C
36 const res = await this.confirmService.confirm('Do you really want to delete this user?', 'Delete')
37 if (res === false) return
5769e1db 38
1f30a185
C
39 this.userService.removeUser(user).subscribe(
40 () => {
41 this.notificationsService.success('Success', `User ${user.username} deleted.`)
42 this.loadData()
43 },
5769e1db 44
1f30a185 45 err => this.notificationsService.error('Error', err.message)
df98563e 46 )
7da18e44 47 }
d592e0a9
C
48
49 getRouterUserEditLink (user: User) {
50 return [ '/admin', 'users', user.id, 'update' ]
51 }
52
53 protected loadData () {
54 this.userService.getUsers(this.pagination, this.sort)
55 .subscribe(
56 resultList => {
57 this.users = resultList.data
58 this.totalRecords = resultList.total
59 },
60
bfb3a98f 61 err => this.notificationsService.error('Error', err.message)
d592e0a9
C
62 )
63 }
7da18e44 64}