Add admin videos loading animation

pull/4481/head
Chocobozzz 2021-11-02 11:17:17 +01:00
parent 7e7d8e4853
commit 61f85385bb
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 20 additions and 9 deletions

View File

@ -10,6 +10,7 @@
[showCurrentPageReport]="true" i18n-currentPageReportTemplate
currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} videos"
(onPage)="onPage($event)" [expandedRowKeys]="expandedRows"
[ngClass]="{ loading: loading }"
>
<ng-template pTemplate="caption">
<div class="caption">

View File

@ -15,3 +15,7 @@ my-embed {
.video-info > div {
display: flex;
}
.loading {
opacity: 0.5;
}

View File

@ -1,11 +1,12 @@
import { SortMeta } from 'primeng/api'
import { finalize } from 'rxjs/operators'
import { Component, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { AuthService, ConfirmService, Notifier, RestPagination, RestTable } from '@app/core'
import { DropdownAction, Video, VideoService } from '@app/shared/shared-main'
import { UserRight, VideoPrivacy, VideoState, VideoStreamingPlaylistType } from '@shared/models'
import { AdvancedInputFilter } from '@app/shared/shared-forms'
import { DropdownAction, Video, VideoService } from '@app/shared/shared-main'
import { VideoActionsDisplayType } from '@app/shared/shared-video-miniature'
import { UserRight, VideoPrivacy, VideoState, VideoStreamingPlaylistType } from '@shared/models'
@Component({
selector: 'my-video-list',
@ -51,6 +52,8 @@ export class VideoListComponent extends RestTable implements OnInit {
liveInfo: false
}
loading = false
constructor (
protected route: ActivatedRoute,
protected router: Router,
@ -135,18 +138,21 @@ export class VideoListComponent extends RestTable implements OnInit {
protected reloadData () {
this.selectedVideos = []
this.loading = true
this.videoService.getAdminVideos({
pagination: this.pagination,
sort: this.sort,
search: this.search
}).subscribe({
next: resultList => {
this.videos = resultList.data
this.totalRecords = resultList.total
},
}).pipe(finalize(() => this.loading = false))
.subscribe({
next: resultList => {
this.videos = resultList.data
this.totalRecords = resultList.total
},
error: err => this.notifier.error(err.message)
})
error: err => this.notifier.error(err.message)
})
}
private async removeVideos (videos: Video[]) {