X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Badmin%2Ffollows%2Ffollowers-list%2Ffollowers-list.component.ts;h=aff59a691ce552759e62a107c1849df9772b315b;hb=1055eb3a7b89bc50dc611ab933f9dbd603488747;hp=4a25b7ff32075c7c4d6d52517d1644ec26a17c6f;hpb=6d8c8ea73a774c3568e6d28a4cbebcf7979d5c2a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+admin/follows/followers-list/followers-list.component.ts b/client/src/app/+admin/follows/followers-list/followers-list.component.ts index 4a25b7ff3..aff59a691 100644 --- a/client/src/app/+admin/follows/followers-list/followers-list.component.ts +++ b/client/src/app/+admin/follows/followers-list/followers-list.component.ts @@ -1,10 +1,9 @@ import { Component, OnInit } from '@angular/core' - -import { NotificationsService } from 'angular2-notifications' -import { SortMeta } from 'primeng/primeng' +import { ConfirmService, Notifier } from '@app/core' +import { SortMeta } from 'primeng/api' import { ActorFollow } from '../../../../../../shared/models/actors/follow.model' import { RestPagination, RestTable } from '../../../shared' -import { FollowService } from '../shared' +import { FollowService } from '@app/shared/instance/follow.service' import { I18n } from '@ngx-translate/i18n-polyfill' @Component({ @@ -20,9 +19,10 @@ export class FollowersListComponent extends RestTable implements OnInit { pagination: RestPagination = { count: this.rowsPerPage, start: 0 } constructor ( - private notificationsService: NotificationsService, - private followService: FollowService, - private i18n: I18n + private confirmService: ConfirmService, + private notifier: Notifier, + private i18n: I18n, + private followService: FollowService ) { super() } @@ -31,15 +31,75 @@ export class FollowersListComponent extends RestTable implements OnInit { this.initialize() } + 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(this.i18n('{{handle}} accepted in instance followers', { handle })) + }, + + err => { + follow.state = 'pending' + this.notifier.error(err.message) + } + ) + } + + async rejectFollower (follow: ActorFollow) { + const message = this.i18n('Do you really want to reject this follower?') + const res = await this.confirmService.confirm(message, this.i18n('Reject')) + if (res === false) return + + this.followService.rejectFollower(follow) + .subscribe( + () => { + const handle = follow.follower.name + '@' + follow.follower.host + this.notifier.success(this.i18n('{{handle}} rejected from instance followers', { handle })) + + this.loadData() + }, + + err => { + follow.state = 'pending' + this.notifier.error(err.message) + } + ) + } + + async deleteFollower (follow: ActorFollow) { + const message = this.i18n('Do you really want to delete this follower?') + const res = await this.confirmService.confirm(message, this.i18n('Delete')) + if (res === false) return + + this.followService.removeFollower(follow) + .subscribe( + () => { + const handle = follow.follower.name + '@' + follow.follower.host + this.notifier.success(this.i18n('{{handle}} removed from instance followers', { handle })) + + this.loadData() + }, + + err => this.notifier.error(err.message) + ) + } + protected loadData () { - this.followService.getFollowers(this.pagination, this.sort) + this.followService.getFollowers({ pagination: this.pagination, sort: this.sort, search: this.search }) .subscribe( resultList => { this.followers = resultList.data this.totalRecords = resultList.total }, - err => this.notificationsService.error(this.i18n('Error'), err.message) + err => this.notifier.error(err.message) ) } }