]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-moderation/account-blocklist.component.ts
deal with refresh token in embed
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / account-blocklist.component.ts
CommitLineData
67ed6552 1import { SortMeta } from 'primeng/api'
22839330 2import { OnInit } from '@angular/core'
67ed6552
C
3import { Notifier, RestPagination, RestTable } from '@app/core'
4import { Actor } from '@app/shared/shared-main'
22839330 5import { I18n } from '@ngx-translate/i18n-polyfill'
22839330 6import { AccountBlock } from './account-block.model'
67ed6552 7import { BlocklistComponentType, BlocklistService } from './blocklist.service'
22839330
RK
8
9export class GenericAccountBlocklistComponent extends RestTable implements OnInit {
10 // @ts-ignore: "Abstract methods can only appear within an abstract class"
11 abstract mode: BlocklistComponentType
12
13 blockedAccounts: AccountBlock[] = []
14 totalRecords = 0
15 sort: SortMeta = { field: 'createdAt', order: -1 }
16 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
17
18 constructor (
19 private notifier: Notifier,
20 private blocklistService: BlocklistService,
21 private i18n: I18n
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
47 ? this.i18n('Account {{nameWithHost}} unmuted.', { nameWithHost: blockedAccount.nameWithHost })
48 : this.i18n('Account {{nameWithHost}} unmuted by your instance.', { nameWithHost: blockedAccount.nameWithHost })
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}