aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos
diff options
context:
space:
mode:
authorBO41 <lukasw41@gmail.com>2018-09-22 20:11:16 +0200
committerBO41 <lukasw41@gmail.com>2018-09-22 20:11:16 +0200
commit23db998f07d674c621972a769df73203b14e093a (patch)
tree6ecb88dc98bdbe69e113e4841d05aec34d6d0491 /client/src/app/videos
parent9fe4406794aaa4503d090ca4bfe6872b4e556178 (diff)
downloadPeerTube-23db998f07d674c621972a769df73203b14e093a.tar.gz
PeerTube-23db998f07d674c621972a769df73203b14e093a.tar.zst
PeerTube-23db998f07d674c621972a769df73203b14e093a.zip
remove unused imports
Diffstat (limited to 'client/src/app/videos')
-rw-r--r--client/src/app/videos/+video-edit/video-update.component.ts4
-rw-r--r--client/src/app/videos/+video-watch/modal/video-download.component.ts4
-rw-r--r--client/src/app/videos/+video-watch/modal/video-share.component.ts4
-rw-r--r--client/src/app/videos/+video-watch/modal/video-support.component.ts4
-rw-r--r--client/src/app/videos/recommendations/recent-videos-recommendation.service.ts5
5 files changed, 5 insertions, 16 deletions
diff --git a/client/src/app/videos/+video-edit/video-update.component.ts b/client/src/app/videos/+video-edit/video-update.component.ts
index 75b11f46c..856e61530 100644
--- a/client/src/app/videos/+video-edit/video-update.component.ts
+++ b/client/src/app/videos/+video-edit/video-update.component.ts
@@ -5,11 +5,9 @@ import { LoadingBarService } from '@ngx-loading-bar/core'
5import { NotificationsService } from 'angular2-notifications' 5import { NotificationsService } from 'angular2-notifications'
6import { VideoConstant, VideoPrivacy } from '../../../../../shared/models/videos' 6import { VideoConstant, VideoPrivacy } from '../../../../../shared/models/videos'
7import { ServerService } from '../../core' 7import { ServerService } from '../../core'
8import { AuthService } from '../../core/auth'
9import { FormReactive } from '../../shared' 8import { FormReactive } from '../../shared'
10import { VideoEdit } from '../../shared/video/video-edit.model' 9import { VideoEdit } from '../../shared/video/video-edit.model'
11import { VideoService } from '../../shared/video/video.service' 10import { VideoService } from '../../shared/video/video.service'
12import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
13import { I18n } from '@ngx-translate/i18n-polyfill' 11import { I18n } from '@ngx-translate/i18n-polyfill'
14import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' 12import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
15import { VideoCaptionService } from '@app/shared/video-caption' 13import { VideoCaptionService } from '@app/shared/video-caption'
@@ -38,9 +36,7 @@ export class VideoUpdateComponent extends FormReactive implements OnInit {
38 private notificationsService: NotificationsService, 36 private notificationsService: NotificationsService,
39 private serverService: ServerService, 37 private serverService: ServerService,
40 private videoService: VideoService, 38 private videoService: VideoService,
41 private authService: AuthService,
42 private loadingBar: LoadingBarService, 39 private loadingBar: LoadingBarService,
43 private videoChannelService: VideoChannelService,
44 private videoCaptionService: VideoCaptionService, 40 private videoCaptionService: VideoCaptionService,
45 private i18n: I18n 41 private i18n: I18n
46 ) { 42 ) {
diff --git a/client/src/app/videos/+video-watch/modal/video-download.component.ts b/client/src/app/videos/+video-watch/modal/video-download.component.ts
index 1361146dd..f4d9003ee 100644
--- a/client/src/app/videos/+video-watch/modal/video-download.component.ts
+++ b/client/src/app/videos/+video-watch/modal/video-download.component.ts
@@ -15,9 +15,7 @@ export class VideoDownloadComponent implements OnInit {
15 downloadType: 'direct' | 'torrent' | 'magnet' = 'torrent' 15 downloadType: 'direct' | 'torrent' | 'magnet' = 'torrent'
16 resolutionId: number | string = -1 16 resolutionId: number | string = -1
17 17
18 constructor (private modalService: NgbModal) { 18 constructor (private modalService: NgbModal) { }
19 // empty
20 }
21 19
22 ngOnInit () { 20 ngOnInit () {
23 this.resolutionId = this.video.files[0].resolution.id 21 this.resolutionId = this.video.files[0].resolution.id
diff --git a/client/src/app/videos/+video-watch/modal/video-share.component.ts b/client/src/app/videos/+video-watch/modal/video-share.component.ts
index 71d6f5633..17e2b31e1 100644
--- a/client/src/app/videos/+video-watch/modal/video-share.component.ts
+++ b/client/src/app/videos/+video-watch/modal/video-share.component.ts
@@ -25,9 +25,7 @@ export class VideoShareComponent {
25 private modalService: NgbModal, 25 private modalService: NgbModal,
26 private notificationsService: NotificationsService, 26 private notificationsService: NotificationsService,
27 private i18n: I18n 27 private i18n: I18n
28 ) { 28 ) { }
29 // empty
30 }
31 29
32 show (currentVideoTimestamp?: number) { 30 show (currentVideoTimestamp?: number) {
33 this.currentVideoTimestamp = Math.floor(currentVideoTimestamp) 31 this.currentVideoTimestamp = Math.floor(currentVideoTimestamp)
diff --git a/client/src/app/videos/+video-watch/modal/video-support.component.ts b/client/src/app/videos/+video-watch/modal/video-support.component.ts
index 2d400e0be..154002120 100644
--- a/client/src/app/videos/+video-watch/modal/video-support.component.ts
+++ b/client/src/app/videos/+video-watch/modal/video-support.component.ts
@@ -19,9 +19,7 @@ export class VideoSupportComponent {
19 constructor ( 19 constructor (
20 private markdownService: MarkdownService, 20 private markdownService: MarkdownService,
21 private modalService: NgbModal 21 private modalService: NgbModal
22 ) { 22 ) { }
23 // empty
24 }
25 23
26 show () { 24 show () {
27 this.videoHTMLSupport = this.markdownService.enhancedMarkdownToHTML(this.video.support) 25 this.videoHTMLSupport = this.markdownService.enhancedMarkdownToHTML(this.video.support)
diff --git a/client/src/app/videos/recommendations/recent-videos-recommendation.service.ts b/client/src/app/videos/recommendations/recent-videos-recommendation.service.ts
index 0ee34b9cb..59acf17bc 100644
--- a/client/src/app/videos/recommendations/recent-videos-recommendation.service.ts
+++ b/client/src/app/videos/recommendations/recent-videos-recommendation.service.ts
@@ -1,4 +1,4 @@
1import { Inject, Injectable } from '@angular/core' 1import { Injectable } from '@angular/core'
2import { RecommendationService } from '@app/videos/recommendations/recommendations.service' 2import { RecommendationService } from '@app/videos/recommendations/recommendations.service'
3import { Video } from '@app/shared/video/video.model' 3import { Video } from '@app/shared/video/video.model'
4import { RecommendationInfo } from '@app/shared/video/recommendation-info.model' 4import { RecommendationInfo } from '@app/shared/video/recommendation-info.model'
@@ -19,8 +19,7 @@ export class RecentVideosRecommendationService implements RecommendationService
19 constructor ( 19 constructor (
20 private videos: VideoService, 20 private videos: VideoService,
21 private searchService: SearchService 21 private searchService: SearchService
22 ) { 22 ) { }
23 }
24 23
25 getRecommendations (recommendation: RecommendationInfo): Observable<Video[]> { 24 getRecommendations (recommendation: RecommendationInfo): Observable<Video[]> {
26 return this.fetchPage(1, recommendation) 25 return this.fetchPage(1, recommendation)