2020-06-23 08:10:17 -04:00
|
|
|
import { SortMeta } from 'primeng/api'
|
2020-08-12 04:40:04 -04:00
|
|
|
import { Directive, OnInit } from '@angular/core'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { Notifier, RestPagination, RestTable } from '@app/core'
|
2020-11-18 13:20:05 -05:00
|
|
|
import { Account } from '@app/shared/shared-main'
|
2020-06-15 07:18:22 -04:00
|
|
|
import { AccountBlock } from './account-block.model'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { BlocklistComponentType, BlocklistService } from './blocklist.service'
|
2020-06-15 07:18:22 -04:00
|
|
|
|
2020-06-26 02:37:26 -04:00
|
|
|
@Directive()
|
2020-08-06 10:14:58 -04:00
|
|
|
// tslint:disable-next-line: directive-class-suffix
|
2020-06-15 07:18:22 -04:00
|
|
|
export class GenericAccountBlocklistComponent extends RestTable implements OnInit {
|
|
|
|
// @ts-ignore: "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,
|
2020-08-12 04:40:04 -04:00
|
|
|
private blocklistService: BlocklistService
|
2020-06-15 07:18:22 -04:00
|
|
|
) {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore: "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
|
2020-08-12 04:40:04 -04:00
|
|
|
? $localize`Account ${blockedAccount.nameWithHost} unmuted.`
|
|
|
|
: $localize`Account ${blockedAccount.nameWithHost} unmuted by your instance.`
|
2020-06-15 07:18:22 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
this.loadData()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
protected loadData () {
|
|
|
|
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
|
|
|
|
})
|
|
|
|
|
|
|
|
return operation.subscribe(
|
|
|
|
resultList => {
|
|
|
|
this.blockedAccounts = resultList.data
|
|
|
|
this.totalRecords = resultList.total
|
|
|
|
},
|
|
|
|
|
|
|
|
err => this.notifier.error(err.message)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|