PeerTube/client/src/app/+my-library/my-ownership/my-ownership.component.ts
2023-01-20 15:06:08 +01:00

78 lines
2.4 KiB
TypeScript

import { SortMeta } from 'primeng/api'
import { Component, OnInit, ViewChild } from '@angular/core'
import { Notifier, RestPagination, RestTable } from '@app/core'
import { Account, VideoOwnershipService } from '@app/shared/shared-main'
import { VideoChangeOwnership, VideoChangeOwnershipStatus } from '@shared/models'
import { MyAcceptOwnershipComponent } from './my-accept-ownership/my-accept-ownership.component'
@Component({
templateUrl: './my-ownership.component.html',
styleUrls: [ './my-ownership.component.scss' ]
})
export class MyOwnershipComponent extends RestTable implements OnInit {
videoChangeOwnerships: VideoChangeOwnership[] = []
totalRecords = 0
sort: SortMeta = { field: 'createdAt', order: -1 }
pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
@ViewChild('myAcceptOwnershipComponent', { static: true }) myAccountAcceptOwnershipComponent: MyAcceptOwnershipComponent
constructor (
private notifier: Notifier,
private videoOwnershipService: VideoOwnershipService
) {
super()
}
ngOnInit () {
this.initialize()
}
getIdentifier () {
return 'MyOwnershipComponent'
}
getStatusClass (status: VideoChangeOwnershipStatus) {
switch (status) {
case VideoChangeOwnershipStatus.ACCEPTED:
return 'badge-green'
case VideoChangeOwnershipStatus.REFUSED:
return 'badge-red'
default:
return 'badge-yellow'
}
}
openAcceptModal (videoChangeOwnership: VideoChangeOwnership) {
this.myAccountAcceptOwnershipComponent.show(videoChangeOwnership)
}
accepted () {
this.reloadData()
}
refuse (videoChangeOwnership: VideoChangeOwnership) {
this.videoOwnershipService.refuseOwnership(videoChangeOwnership.id)
.subscribe({
next: () => this.reloadData(),
error: err => this.notifier.error(err.message)
})
}
protected reloadDataInternal () {
return this.videoOwnershipService.getOwnershipChanges(this.pagination, this.sort)
.subscribe({
next: resultList => {
this.videoChangeOwnerships = resultList.data.map(change => ({
...change,
initiatorAccount: new Account(change.initiatorAccount),
nextOwnerAccount: new Account(change.nextOwnerAccount)
}))
this.totalRecords = resultList.total
},
error: err => this.notifier.error(err.message)
})
}
}