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

102 lines
3.0 KiB
TypeScript
Raw Normal View History

2019-07-25 10:44:21 +02:00
import { SortMeta } from 'primeng/api'
2020-06-23 14:10:17 +02:00
import { Component, OnInit } from '@angular/core'
import { ConfirmService, Notifier, RestPagination, RestTable } from '@app/core'
import { InstanceFollowService } from '@app/shared/shared-instance'
import { ActorFollow } from '@shared/models'
@Component({
selector: 'my-followers-list',
templateUrl: './followers-list.component.html',
2020-04-19 20:26:25 +02:00
styleUrls: [ '../follows.component.scss', './followers-list.component.scss' ]
})
2018-02-23 14:36:16 +01:00
export class FollowersListComponent extends RestTable implements OnInit {
2018-09-11 16:27:07 +02:00
followers: ActorFollow[] = []
totalRecords = 0
sort: SortMeta = { field: 'createdAt', order: -1 }
pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
constructor (
private confirmService: ConfirmService,
private notifier: Notifier,
2020-06-23 14:10:17 +02:00
private followService: InstanceFollowService
) {
super()
}
2018-02-23 14:36:16 +01:00
ngOnInit () {
2018-10-08 15:51:38 +02:00
this.initialize()
2018-02-23 14:36:16 +01:00
}
2020-04-08 10:49:26 +02:00
getIdentifier () {
return 'FollowersListComponent'
}
acceptFollower (follow: ActorFollow) {
follow.state = 'accepted'
this.followService.acceptFollower(follow)
.subscribe(
() => {
const handle = follow.follower.name + '@' + follow.follower.host
this.notifier.success($localize`${handle} accepted in instance followers`)
},
err => {
follow.state = 'pending'
this.notifier.error(err.message)
}
)
}
async rejectFollower (follow: ActorFollow) {
const message = $localize`Do you really want to reject this follower?`
const res = await this.confirmService.confirm(message, $localize`Reject`)
if (res === false) return
this.followService.rejectFollower(follow)
.subscribe(
() => {
const handle = follow.follower.name + '@' + follow.follower.host
this.notifier.success($localize`${handle} rejected from instance followers`)
2021-05-03 14:33:34 +02:00
this.reloadData()
},
err => {
follow.state = 'pending'
this.notifier.error(err.message)
}
)
}
async deleteFollower (follow: ActorFollow) {
const message = $localize`Do you really want to delete this follower?`
const res = await this.confirmService.confirm(message, $localize`Delete`)
if (res === false) return
this.followService.removeFollower(follow)
.subscribe(
() => {
const handle = follow.follower.name + '@' + follow.follower.host
this.notifier.success($localize`${handle} removed from instance followers`)
2021-05-03 14:33:34 +02:00
this.reloadData()
},
err => this.notifier.error(err.message)
)
}
2021-05-03 14:33:34 +02:00
protected reloadData () {
this.followService.getFollowers({ pagination: this.pagination, sort: this.sort, search: this.search })
.subscribe(
resultList => {
this.followers = resultList.data
this.totalRecords = resultList.total
},
err => this.notifier.error(err.message)
)
}
}