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

67 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-02-23 14:36:16 +01:00
import { Component, OnInit } from '@angular/core'
import { NotificationsService } from 'angular2-notifications'
import { SortMeta } from 'primeng/primeng'
2018-09-11 16:27:07 +02:00
import { ActorFollow } 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'
2018-06-04 16:21:17 +02:00
import { I18n } from '@ngx-translate/i18n-polyfill'
@Component({
selector: 'my-followers-list',
2018-09-11 16:27:07 +02:00
templateUrl: './following-list.component.html',
styleUrls: [ './following-list.component.scss' ]
})
2018-02-23 14:36:16 +01:00
export class FollowingListComponent extends RestTable implements OnInit {
2018-09-11 16:27:07 +02:00
following: ActorFollow[] = []
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,
2018-06-04 16:21:17 +02:00
private followService: FollowService,
private i18n: I18n
) {
super()
}
2018-02-23 14:36:16 +01:00
ngOnInit () {
this.loadSort()
}
2018-09-11 16:27:07 +02:00
async removeFollowing (follow: ActorFollow) {
2018-06-04 16:21:17 +02:00
const res = await this.confirmService.confirm(
2018-06-05 09:13:26 +02:00
this.i18n('Do you really want to unfollow {{host}}?', { host: follow.following.host }),
2018-06-04 16:21:17 +02:00
this.i18n('Unfollow')
)
if (res === false) return
2017-11-20 11:19:23 +01:00
this.followService.unfollow(follow).subscribe(
() => {
2018-06-04 16:21:17 +02:00
this.notificationsService.success(
this.i18n('Success'),
2018-06-05 09:13:26 +02:00
this.i18n('You are not following {{host}} anymore.', { host: follow.following.host })
2018-06-04 16:21:17 +02:00
)
this.loadData()
},
2017-11-20 11:19:23 +01:00
2018-06-04 16:21:17 +02:00
err => this.notificationsService.error(this.i18n('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
},
2018-06-04 16:21:17 +02:00
err => this.notificationsService.error(this.i18n('Error'), err.message)
)
}
}