1
0
Fork 0
peertube/client/src/app/shared/shared-moderation/account-blocklist.component.ts

74 lines
2.3 KiB
TypeScript
Raw Normal View History

2020-06-23 08:10:17 -04:00
import { SortMeta } from 'primeng/api'
import { Directive, OnInit } from '@angular/core'
2020-06-23 08:10:17 -04:00
import { Notifier, RestPagination, RestTable } from '@app/core'
import { AccountBlock } from './account-block.model'
2020-06-23 08:10:17 -04:00
import { BlocklistComponentType, BlocklistService } from './blocklist.service'
2020-06-26 02:37:26 -04:00
@Directive()
2021-08-17 08:42:53 -04:00
// eslint-disable-next-line @angular-eslint/directive-class-suffix
export class GenericAccountBlocklistComponent extends RestTable implements OnInit {
2021-08-17 08:42:53 -04:00
// @ts-expect-error: "Abstract methods can only appear within an abstract class"
abstract mode: BlocklistComponentType
blockedAccounts: AccountBlock[] = []
totalRecords = 0
sort: SortMeta = { field: 'createdAt', order: -1 }
pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
constructor (
private notifier: Notifier,
private blocklistService: BlocklistService
) {
super()
}
2021-08-17 08:42:53 -04:00
// @ts-expect-error: "Abstract methods can only appear within an abstract class"
abstract getIdentifier (): string
ngOnInit () {
this.initialize()
}
unblockAccount (accountBlock: AccountBlock) {
const blockedAccount = accountBlock.blockedAccount
const operation = this.mode === BlocklistComponentType.Account
? this.blocklistService.unblockAccountByUser(blockedAccount)
: this.blocklistService.unblockAccountByInstance(blockedAccount)
operation.subscribe(
() => {
this.notifier.success(
this.mode === BlocklistComponentType.Account
? $localize`Account ${blockedAccount.nameWithHost} unmuted.`
: $localize`Account ${blockedAccount.nameWithHost} unmuted by your instance.`
)
2021-05-03 08:33:34 -04:00
this.reloadData()
}
)
}
2021-05-03 08:33:34 -04:00
protected reloadData () {
const operation = this.mode === BlocklistComponentType.Account
? this.blocklistService.getUserAccountBlocklist({
pagination: this.pagination,
sort: this.sort,
search: this.search
})
: this.blocklistService.getInstanceAccountBlocklist({
pagination: this.pagination,
sort: this.sort,
search: this.search
})
2021-08-17 05:27:47 -04:00
return operation.subscribe({
next: resultList => {
this.blockedAccounts = resultList.data
this.totalRecords = resultList.total
},
2021-08-17 05:27:47 -04:00
error: err => this.notifier.error(err.message)
})
}
}