1
0
Fork 0

Add loader when expanding long video description

This commit is contained in:
Chocobozzz 2017-11-28 15:40:53 +01:00
parent 83c663ef0e
commit 80958c78fd
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
14 changed files with 38 additions and 33 deletions

View File

@ -19,6 +19,7 @@ import { SearchComponent, SearchService } from './search'
import { UserService } from './users'
import { VideoAbuseService } from './video-abuse'
import { VideoBlacklistService } from './video-blacklist'
import { LoaderComponent } from './misc/loader.component'
@NgModule({
imports: [
@ -40,7 +41,8 @@ import { VideoBlacklistService } from './video-blacklist'
declarations: [
BytesPipe,
KeysPipe,
SearchComponent
SearchComponent,
LoaderComponent
],
exports: [
@ -59,7 +61,8 @@ import { VideoBlacklistService } from './video-blacklist'
BytesPipe,
KeysPipe,
SearchComponent
SearchComponent,
LoaderComponent
],
providers: [

View File

@ -3,8 +3,8 @@ import { NgModule } from '@angular/core'
import { TagInputModule } from 'ngx-chips'
import { TabsModule } from 'ngx-bootstrap/tabs'
import { VideoService, MarkdownService, VideoDescriptionComponent } from '../shared'
import { SharedModule } from '../../shared'
import { VideoService, MarkdownService, VideoDescriptionComponent } from '../../shared'
import { SharedModule } from '../../../shared'
@NgModule({
imports: [

View File

@ -23,7 +23,7 @@ import { HttpEventType, HttpResponse } from '@angular/common/http'
@Component({
selector: 'my-videos-add',
styleUrls: [ './video-edit.component.scss' ],
styleUrls: [ './shared/video-edit.component.scss' ],
templateUrl: './video-add.component.html'
})

View File

@ -1,9 +1,8 @@
import { NgModule } from '@angular/core'
import { SharedModule } from '../../shared'
import { VideoEditModule } from './shared/video-edit.module'
import { VideoAddRoutingModule } from './video-add-routing.module'
import { VideoAddComponent } from './video-add.component'
import { VideoEditModule } from './video-edit.module'
import { SharedModule } from '../../shared'
@NgModule({
imports: [

View File

@ -21,7 +21,7 @@ import { VideoPrivacy } from '../../../../../shared/models/videos/video-privacy.
@Component({
selector: 'my-videos-update',
styleUrls: [ './video-edit.component.scss' ],
styleUrls: [ './shared/video-edit.component.scss' ],
templateUrl: './video-update.component.html'
})

View File

@ -1,9 +1,8 @@
import { NgModule } from '@angular/core'
import { SharedModule } from '../../shared'
import { VideoEditModule } from './shared/video-edit.module'
import { VideoUpdateRoutingModule } from './video-update-routing.module'
import { VideoUpdateComponent } from './video-update.component'
import { VideoEditModule } from './video-edit.module'
import { SharedModule } from '../../shared'
@NgModule({
imports: [

View File

@ -130,14 +130,15 @@
<div class="video-details-description" [innerHTML]="videoHTMLDescription"></div>
<div *ngIf="completeDescriptionShown === false && video.description.length === 250" (click)="showMoreDescription()" class="video-details-description-more">
<div class="video-details-description-more" *ngIf="completeDescriptionShown === false && video.description.length === 250" (click)="showMoreDescription()">
Show more
<span class="glyphicon glyphicon-menu-down"></span>
<span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-down"></span>
<my-loader class="description-loading" [loading]="descriptionLoading"></my-loader>
</div>
<div *ngIf="completeDescriptionShown === true" (click)="showLessDescription()" class="video-details-description-more">
Show less
<span class="glyphicon glyphicon-menu-up"></span>
<span *ngIf="descriptionLoading === false" class="glyphicon glyphicon-menu-up"></span>
</div>
</div>

View File

@ -166,6 +166,10 @@
.video-details-date-description {
padding-left: $video-watch-info-padding-left;
.description-loading {
display: inline-block;
}
.video-details-date {
font-weight: bold;
margin-bottom: 30px;

View File

@ -16,6 +16,7 @@ import { VideoReportComponent } from './video-report.component'
import { VideoDetails, VideoService, MarkdownService } from '../shared'
import { VideoBlacklistService } from '../../shared'
import { UserVideoRateType, VideoRateType } from '../../../../../shared'
import { BehaviorSubject } from 'rxjs/BehaviorSubject'
@Component({
selector: 'my-video-watch',
@ -38,6 +39,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
video: VideoDetails = null
videoPlayerLoaded = false
videoNotFound = false
descriptionLoading = false
completeDescriptionShown = false
completeVideoDescription: string
@ -159,32 +161,39 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
}
showMoreDescription () {
this.completeDescriptionShown = true
if (this.completeVideoDescription === undefined) {
return this.loadCompleteDescription()
}
this.updateVideoDescription(this.completeVideoDescription)
this.completeDescriptionShown = true
}
showLessDescription () {
this.completeDescriptionShown = false
this.updateVideoDescription(this.shortVideoDescription)
this.completeDescriptionShown = false
}
loadCompleteDescription () {
this.descriptionLoading = true
this.videoService.loadCompleteDescription(this.video.descriptionPath)
.subscribe(
description => {
this.completeDescriptionShown = true
this.descriptionLoading = false
this.shortVideoDescription = this.video.description
this.completeVideoDescription = description
this.updateVideoDescription(this.completeVideoDescription)
},
error => this.notificationsService.error('Error', error.text)
error => {
this.descriptionLoading = false
this.notificationsService.error('Error', error.text)
}
)
}

View File

@ -1,4 +1,3 @@
export * from './abstract-video-list'
export * from './loader.component'
export * from './video-miniature.component'
export * from './video-sort.component'

View File

@ -1,16 +1,9 @@
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { VideoService } from './shared'
import { MyVideosComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'
import { VideosRoutingModule } from './videos-routing.module'
import { VideosComponent } from './videos.component'
import {
LoaderComponent,
VideoListComponent,
MyVideosComponent,
VideoMiniatureComponent,
VideoSortComponent
} from './video-list'
import { VideoService } from './shared'
import { SharedModule } from '../shared'
@NgModule({
imports: [
@ -24,9 +17,7 @@ import { SharedModule } from '../shared'
VideoListComponent,
MyVideosComponent,
VideoMiniatureComponent,
VideoSortComponent,
LoaderComponent
VideoSortComponent
],
exports: [