]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/follows/followers-list/followers-list.component.ts
69b3e5e58985121fdd23b4b529153a9391abd4f2
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / follows / followers-list / followers-list.component.ts
1 import { Component, OnInit } from '@angular/core'
2
3 import { NotificationsService } from 'angular2-notifications'
4 import { SortMeta } from 'primeng/primeng'
5 import { AccountFollow } from '../../../../../../shared/models/actors/follow.model'
6 import { RestPagination, RestTable } from '../../../shared'
7 import { FollowService } from '../shared'
8
9 @Component({
10 selector: 'my-followers-list',
11 templateUrl: './followers-list.component.html',
12 styleUrls: [ './followers-list.component.scss' ]
13 })
14 export class FollowersListComponent extends RestTable implements OnInit {
15 followers: AccountFollow[] = []
16 totalRecords = 0
17 rowsPerPage = 10
18 sort: SortMeta = { field: 'createdAt', order: 1 }
19 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
20
21 constructor (
22 private notificationsService: NotificationsService,
23 private followService: FollowService
24 ) {
25 super()
26 }
27
28 ngOnInit () {
29 this.loadSort()
30 }
31
32 protected loadData () {
33 this.followService.getFollowers(this.pagination, this.sort)
34 .subscribe(
35 resultList => {
36 this.followers = resultList.data
37 this.totalRecords = resultList.total
38 },
39
40 err => this.notificationsService.error('Error', err.message)
41 )
42 }
43 }