]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+admin/follows/following-list/following-list.component.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / follows / following-list / following-list.component.ts
... / ...
CommitLineData
1import { SortMeta } from 'primeng/api'
2import { Component, OnInit, ViewChild } from '@angular/core'
3import { ConfirmService, Notifier, RestPagination, RestTable } from '@app/core'
4import { AdvancedInputFilter } from '@app/shared/shared-forms'
5import { InstanceFollowService } from '@app/shared/shared-instance'
6import { ActorFollow } from '@shared/models'
7import { FollowModalComponent } from './follow-modal.component'
8import { DropdownAction } from '@app/shared/shared-main'
9import { prepareIcu } from '@app/helpers'
10
11@Component({
12 templateUrl: './following-list.component.html',
13 styleUrls: [ './following-list.component.scss' ]
14})
15export class FollowingListComponent extends RestTable <ActorFollow> implements OnInit {
16 @ViewChild('followModal') followModal: FollowModalComponent
17
18 following: ActorFollow[] = []
19 totalRecords = 0
20 sort: SortMeta = { field: 'createdAt', order: -1 }
21 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
22
23 searchFilters: AdvancedInputFilter[] = []
24
25 bulkActions: DropdownAction<ActorFollow[]>[] = []
26
27 constructor (
28 private notifier: Notifier,
29 private confirmService: ConfirmService,
30 private followService: InstanceFollowService
31 ) {
32 super()
33 }
34
35 ngOnInit () {
36 this.initialize()
37
38 this.searchFilters = this.followService.buildFollowsListFilters()
39
40 this.bulkActions = [
41 {
42 label: $localize`Delete`,
43 handler: follows => this.removeFollowing(follows)
44 }
45 ]
46 }
47
48 getIdentifier () {
49 return 'FollowingListComponent'
50 }
51
52 openFollowModal () {
53 this.followModal.openModal()
54 }
55
56 isInstanceFollowing (follow: ActorFollow) {
57 return follow.following.name === 'peertube'
58 }
59
60 buildFollowingName (follow: ActorFollow) {
61 return follow.following.name + '@' + follow.following.host
62 }
63
64 async removeFollowing (follows: ActorFollow[]) {
65 const icuParams = { count: follows.length, entryName: this.buildFollowingName(follows[0]) }
66
67 const message = prepareIcu($localize`Do you really want to unfollow {count, plural, =1 {{entryName}?} other {{count} entries?}}`)(
68 icuParams,
69 $localize`Do you really want to unfollow these entries?`
70 )
71
72 const res = await this.confirmService.confirm(message, $localize`Unfollow`)
73 if (res === false) return
74
75 this.followService.unfollow(follows)
76 .subscribe({
77 next: () => {
78 // eslint-disable-next-line max-len
79 const message = prepareIcu($localize`You are not following {count, plural, =1 {{entryName} anymore.} other {these {count} entries anymore.}}`)(
80 icuParams,
81 $localize`You are not following them anymore.`
82 )
83
84 this.notifier.success(message)
85 this.reloadData()
86 },
87
88 error: err => this.notifier.error(err.message)
89 })
90 }
91
92 protected reloadDataInternal () {
93 this.followService.getFollowing({ pagination: this.pagination, sort: this.sort, search: this.search })
94 .subscribe({
95 next: resultList => {
96 this.following = resultList.data
97 this.totalRecords = resultList.total
98 },
99
100 error: err => this.notifier.error(err.message)
101 })
102 }
103}