PeerTube/client/src/app/+admin/follows/following-list/following-list.component.ts

54 lines
1.8 KiB
TypeScript
Raw Normal View History

2017-11-15 11:00:25 +01:00
import { Component } from '@angular/core'
import { NotificationsService } from 'angular2-notifications'
import { SortMeta } from 'primeng/primeng'
2017-12-14 17:38:41 +01:00
import { AccountFollow } from '../../../../../../shared/models/actors/follow.model'
2017-11-20 11:19:23 +01:00
import { ConfirmService } from '../../../core/confirm/confirm.service'
2017-11-15 11:00:25 +01:00
import { RestPagination, RestTable } from '../../../shared'
import { FollowService } from '../shared'
@Component({
selector: 'my-followers-list',
templateUrl: './following-list.component.html'
})
export class FollowingListComponent extends RestTable {
2017-11-15 11:00:25 +01:00
following: AccountFollow[] = []
totalRecords = 0
rowsPerPage = 10
sort: SortMeta = { field: 'createdAt', order: 1 }
pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
constructor (
private notificationsService: NotificationsService,
2017-11-20 11:19:23 +01:00
private confirmService: ConfirmService,
private followService: FollowService
) {
super()
}
async removeFollowing (follow: AccountFollow) {
const res = await this.confirmService.confirm(`Do you really want to unfollow ${follow.following.host}?`, 'Unfollow')
if (res === false) return
2017-11-20 11:19:23 +01:00
this.followService.unfollow(follow).subscribe(
() => {
this.notificationsService.success('Success', `You are not following ${follow.following.host} anymore.`)
this.loadData()
},
2017-11-20 11:19:23 +01:00
err => this.notificationsService.error('Error', err.message)
2017-11-20 11:19:23 +01:00
)
}
protected loadData () {
this.followService.getFollowing(this.pagination, this.sort)
.subscribe(
resultList => {
this.following = resultList.data
this.totalRecords = resultList.total
},
err => this.notificationsService.error('Error', err.message)
)
}
}