mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
89 lines
1.9 KiB
TypeScript
89 lines
1.9 KiB
TypeScript
import debug from 'debug'
|
|
import { LazyLoadEvent, SortMeta } from 'primeng/api'
|
|
import { ActivatedRoute, Router } from '@angular/router'
|
|
import { logger } from '@root-helpers/logger'
|
|
import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage'
|
|
import { RestPagination } from './rest-pagination'
|
|
|
|
const debugLogger = debug('peertube:tables:RestTable')
|
|
|
|
export abstract class RestTable <T = unknown> {
|
|
|
|
abstract totalRecords: number
|
|
abstract sort: SortMeta
|
|
abstract pagination: RestPagination
|
|
|
|
rowsPerPageOptions = [ 10, 20, 50, 100 ]
|
|
rowsPerPage = this.rowsPerPageOptions[0]
|
|
expandedRows = {}
|
|
|
|
selectedRows: T[] = []
|
|
|
|
search: string
|
|
|
|
protected route: ActivatedRoute
|
|
protected router: Router
|
|
|
|
abstract getIdentifier (): string
|
|
|
|
initialize () {
|
|
this.loadSort()
|
|
}
|
|
|
|
loadSort () {
|
|
const result = peertubeLocalStorage.getItem(this.getSortLocalStorageKey())
|
|
|
|
if (result) {
|
|
try {
|
|
this.sort = JSON.parse(result)
|
|
} catch (err) {
|
|
logger.error('Cannot load sort of local storage key ' + this.getSortLocalStorageKey(), err)
|
|
}
|
|
}
|
|
}
|
|
|
|
saveSort () {
|
|
peertubeLocalStorage.setItem(this.getSortLocalStorageKey(), JSON.stringify(this.sort))
|
|
}
|
|
|
|
loadLazy (event: LazyLoadEvent) {
|
|
debugLogger('Load lazy %o.', event)
|
|
|
|
this.sort = {
|
|
order: event.sortOrder,
|
|
field: event.sortField
|
|
}
|
|
|
|
this.rowsPerPage = event.rows
|
|
|
|
this.pagination = {
|
|
start: event.first,
|
|
count: this.rowsPerPage
|
|
}
|
|
|
|
this.expandedRows = {}
|
|
|
|
this.reloadData()
|
|
this.saveSort()
|
|
}
|
|
|
|
onSearch (search: string) {
|
|
this.pagination = {
|
|
start: 0,
|
|
count: this.rowsPerPage
|
|
}
|
|
|
|
this.search = search
|
|
this.reloadData()
|
|
}
|
|
|
|
isInSelectionMode () {
|
|
return this.selectedRows.length !== 0
|
|
}
|
|
|
|
protected abstract reloadData (): void
|
|
|
|
private getSortLocalStorageKey () {
|
|
return 'rest-table-sort-' + this.getIdentifier()
|
|
}
|
|
}
|