Fix sort in admin tables

pull/2615/head
Chocobozzz 2020-04-08 10:49:26 +02:00
parent 14f83c68f1
commit 8e11a1b37c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
14 changed files with 62 additions and 6 deletions

View File

@ -31,6 +31,10 @@ export class FollowersListComponent extends RestTable implements OnInit {
this.initialize()
}
getIdentifier () {
return 'FollowersListComponent'
}
acceptFollower (follow: ActorFollow) {
follow.state = 'accepted'

View File

@ -32,6 +32,10 @@ export class FollowingListComponent extends RestTable implements OnInit {
this.initialize()
}
getIdentifier () {
return 'FollowingListComponent'
}
async removeFollowing (follow: ActorFollow) {
const res = await this.confirmService.confirm(
this.i18n('Do you really want to unfollow {{host}}?', { host: follow.following.host }),

View File

@ -44,6 +44,10 @@ export class VideoRedundanciesListComponent extends RestTable implements OnInit
this.bytesPipe = new BytesPipe()
}
getIdentifier () {
return 'VideoRedundanciesListComponent'
}
ngOnInit () {
this.loadSelectLocalStorage()

View File

@ -29,6 +29,10 @@ export class InstanceAccountBlocklistComponent extends RestTable implements OnIn
this.initialize()
}
getIdentifier () {
return 'InstanceAccountBlocklistComponent'
}
unblockAccount (accountBlock: AccountBlock) {
const blockedAccount = accountBlock.blockedAccount

View File

@ -30,6 +30,10 @@ export class InstanceServerBlocklistComponent extends RestTable implements OnIni
this.initialize()
}
getIdentifier () {
return 'InstanceServerBlocklistComponent'
}
unblockServer (serverBlock: ServerBlock) {
const host = serverBlock.blockedServer.host

View File

@ -62,6 +62,10 @@ export class VideoAbuseListComponent extends RestTable implements OnInit {
this.initialize()
}
getIdentifier () {
return 'VideoAbuseListComponent'
}
openModerationCommentModal (videoAbuse: VideoAbuse) {
this.moderationCommentModal.openModal(videoAbuse)
}

View File

@ -54,6 +54,10 @@ export class VideoBlacklistListComponent extends RestTable implements OnInit {
]
}
getIdentifier () {
return 'VideoBlacklistListComponent'
}
getVideoUrl (videoBlacklist: VideoBlacklist) {
return Video.buildClientUrl(videoBlacklist.video.uuid)
}

View File

@ -57,6 +57,10 @@ export class JobsComponent extends RestTable implements OnInit {
this.initialize()
}
getIdentifier () {
return 'JobsComponent'
}
onJobStateOrTypeChanged () {
this.pagination.start = 0

View File

@ -86,6 +86,10 @@ export class UserListComponent extends RestTable implements OnInit {
]
}
getIdentifier () {
return 'UserListComponent'
}
openBanUserModal (users: User[]) {
for (const user of users) {
if (user.username === 'root') {

View File

@ -29,6 +29,10 @@ export class MyAccountBlocklistComponent extends RestTable implements OnInit {
this.initialize()
}
getIdentifier () {
return 'MyAccountBlocklistComponent'
}
unblockAccount (accountBlock: AccountBlock) {
const blockedAccount = accountBlock.blockedAccount

View File

@ -30,6 +30,10 @@ export class MyAccountServerBlocklistComponent extends RestTable implements OnIn
this.initialize()
}
getIdentifier () {
return 'MyAccountServerBlocklistComponent'
}
unblockServer (serverBlock: ServerBlock) {
const host = serverBlock.blockedServer.host

View File

@ -31,6 +31,10 @@ export class MyAccountOwnershipComponent extends RestTable implements OnInit {
this.initialize()
}
getIdentifier () {
return 'MyAccountOwnershipComponent'
}
createByString (account: Account) {
return Account.CREATE_BY_STRING(account.name, account.host)
}

View File

@ -20,8 +20,7 @@ export class MyAccountVideoImportsComponent extends RestTable implements OnInit
constructor (
private notifier: Notifier,
private videoImportService: VideoImportService,
private i18n: I18n
private videoImportService: VideoImportService
) {
super()
}
@ -30,6 +29,10 @@ export class MyAccountVideoImportsComponent extends RestTable implements OnInit
this.initialize()
}
getIdentifier () {
return 'MyAccountVideoImportsComponent'
}
isVideoImportSuccess (videoImport: VideoImport) {
return videoImport.state.id === VideoImportState.SUCCESS
}

View File

@ -13,7 +13,8 @@ export abstract class RestTable {
protected search: string
private searchStream: Subject<string>
private sortLocalStorageKey = 'rest-table-sort-' + this.constructor.name
abstract getIdentifier (): string
initialize () {
this.loadSort()
@ -21,13 +22,13 @@ export abstract class RestTable {
}
loadSort () {
const result = peertubeLocalStorage.getItem(this.sortLocalStorageKey)
const result = peertubeLocalStorage.getItem(this.getSortLocalStorageKey())
if (result) {
try {
this.sort = JSON.parse(result)
} catch (err) {
console.error('Cannot load sort of local storage key ' + this.sortLocalStorageKey, err)
console.error('Cannot load sort of local storage key ' + this.getSortLocalStorageKey(), err)
}
}
}
@ -48,7 +49,7 @@ export abstract class RestTable {
}
saveSort () {
peertubeLocalStorage.setItem(this.sortLocalStorageKey, JSON.stringify(this.sort))
peertubeLocalStorage.setItem(this.getSortLocalStorageKey(), JSON.stringify(this.sort))
}
initSearch () {
@ -71,4 +72,8 @@ export abstract class RestTable {
}
protected abstract loadData (): void
private getSortLocalStorageKey () {
return 'rest-table-sort-' + this.getIdentifier()
}
}