X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Badmin%2Ffollows%2Ffollowers-list%2Ffollowers-list.component.ts;h=b78cdf656edfd76b3f2c94d341dd87c72553ced0;hb=0dc647775881eb1378b213a530996cd096de24ea;hp=43ce5d4af71ef4eb5d1090d94a84271968398a23;hpb=16c07398f2ed884b9223b3e18c5e541cf9ab8469;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 43ce5d4af..b78cdf656 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,6 +1,5 @@ import { Component, OnInit } from '@angular/core' - -import { NotificationsService } from 'angular2-notifications' +import { ConfirmService, Notifier } from '@app/core' import { SortMeta } from 'primeng/primeng' import { ActorFollow } from '../../../../../../shared/models/actors/follow.model' import { RestPagination, RestTable } from '../../../shared' @@ -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,6 +31,62 @@ export class FollowersListComponent extends RestTable implements OnInit { this.initialize() } + 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.search) .subscribe( @@ -39,7 +95,7 @@ export class FollowersListComponent extends RestTable implements OnInit { this.totalRecords = resultList.total }, - err => this.notificationsService.error(this.i18n('Error'), err.message) + err => this.notifier.error(err.message) ) } }