]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-moderation/account-blocklist.component.ts
Migrate to $localize
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / account-blocklist.component.ts
CommitLineData
67ed6552 1import { SortMeta } from 'primeng/api'
66357162 2import { Directive, OnInit } from '@angular/core'
67ed6552
C
3import { Notifier, RestPagination, RestTable } from '@app/core'
4import { Actor } from '@app/shared/shared-main'
22839330 5import { AccountBlock } from './account-block.model'
67ed6552 6import { BlocklistComponentType, BlocklistService } from './blocklist.service'
22839330 7
583eb04b 8@Directive()
a02b93ce 9// tslint:disable-next-line: directive-class-suffix
22839330
RK
10export class GenericAccountBlocklistComponent extends RestTable implements OnInit {
11 // @ts-ignore: "Abstract methods can only appear within an abstract class"
12 abstract mode: BlocklistComponentType
13
14 blockedAccounts: AccountBlock[] = []
15 totalRecords = 0
16 sort: SortMeta = { field: 'createdAt', order: -1 }
17 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
18
19 constructor (
20 private notifier: Notifier,
66357162 21 private blocklistService: BlocklistService
22839330
RK
22 ) {
23 super()
24 }
25
26 // @ts-ignore: "Abstract methods can only appear within an abstract class"
27 abstract getIdentifier (): string
28
29 ngOnInit () {
30 this.initialize()
31 }
32
33 switchToDefaultAvatar ($event: Event) {
34 ($event.target as HTMLImageElement).src = Actor.GET_DEFAULT_AVATAR_URL()
35 }
36
37 unblockAccount (accountBlock: AccountBlock) {
38 const blockedAccount = accountBlock.blockedAccount
39 const operation = this.mode === BlocklistComponentType.Account
40 ? this.blocklistService.unblockAccountByUser(blockedAccount)
41 : this.blocklistService.unblockAccountByInstance(blockedAccount)
42
43 operation.subscribe(
44 () => {
45 this.notifier.success(
46 this.mode === BlocklistComponentType.Account
66357162
C
47 ? $localize`Account ${blockedAccount.nameWithHost} unmuted.`
48 : $localize`Account ${blockedAccount.nameWithHost} unmuted by your instance.`
22839330
RK
49 )
50
51 this.loadData()
52 }
53 )
54 }
55
56 protected loadData () {
57 const operation = this.mode === BlocklistComponentType.Account
58 ? this.blocklistService.getUserAccountBlocklist({
59 pagination: this.pagination,
60 sort: this.sort,
61 search: this.search
62 })
63 : this.blocklistService.getInstanceAccountBlocklist({
64 pagination: this.pagination,
65 sort: this.sort,
66 search: this.search
67 })
68
69 return operation.subscribe(
70 resultList => {
71 this.blockedAccounts = resultList.data
72 this.totalRecords = resultList.total
73 },
74
75 err => this.notifier.error(err.message)
76 )
77 }
78}