diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-17 14:42:53 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-18 08:35:06 +0200 |
commit | 9df52d660feb722404be00a50f3c8a612bec1c15 (patch) | |
tree | dde52880fa012874d24c60f64eb596b0a789cc8b /client/src/app/+accounts/account-video-channels | |
parent | adb8809d43648ea0a64d6845bb39aa3bd0e005a6 (diff) | |
download | PeerTube-9df52d660feb722404be00a50f3c8a612bec1c15.tar.gz PeerTube-9df52d660feb722404be00a50f3c8a612bec1c15.tar.zst PeerTube-9df52d660feb722404be00a50f3c8a612bec1c15.zip |
Migrate client to eslint
Diffstat (limited to 'client/src/app/+accounts/account-video-channels')
-rw-r--r-- | client/src/app/+accounts/account-video-channels/account-video-channels.component.ts | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts b/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts index e146a5cd2..f6df38857 100644 --- a/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts +++ b/client/src/app/+accounts/account-video-channels/account-video-channels.component.ts | |||
@@ -1,10 +1,10 @@ | |||
1 | import { from, Subject, Subscription } from 'rxjs' | 1 | import { from, Subject, Subscription } from 'rxjs' |
2 | import { concatMap, map, switchMap, tap } from 'rxjs/operators' | 2 | import { concatMap, map, switchMap, tap } from 'rxjs/operators' |
3 | import { Component, OnDestroy, OnInit } from '@angular/core' | 3 | import { Component, OnDestroy, OnInit } from '@angular/core' |
4 | import { ComponentPagination, hasMoreItems, MarkdownService, ScreenService, User, UserService } from '@app/core' | 4 | import { ComponentPagination, hasMoreItems, MarkdownService, User, UserService } from '@app/core' |
5 | import { Account, AccountService, Video, VideoChannel, VideoChannelService, VideoService } from '@app/shared/shared-main' | 5 | import { Account, AccountService, Video, VideoChannel, VideoChannelService, VideoService } from '@app/shared/shared-main' |
6 | import { NSFWPolicyType, VideoSortField } from '@shared/models' | ||
7 | import { MiniatureDisplayOptions } from '@app/shared/shared-video-miniature' | 6 | import { MiniatureDisplayOptions } from '@app/shared/shared-video-miniature' |
7 | import { NSFWPolicyType, VideoSortField } from '@shared/models' | ||
8 | 8 | ||
9 | @Component({ | 9 | @Component({ |
10 | selector: 'my-account-video-channels', | 10 | selector: 'my-account-video-channels', |
@@ -87,7 +87,9 @@ export class AccountVideoChannelsComponent implements OnInit, OnDestroy { | |||
87 | 87 | ||
88 | this.videoChannelService.listAccountVideoChannels(options) | 88 | this.videoChannelService.listAccountVideoChannels(options) |
89 | .pipe( | 89 | .pipe( |
90 | tap(res => this.channelPagination.totalItems = res.total), | 90 | tap(res => { |
91 | this.channelPagination.totalItems = res.total | ||
92 | }), | ||
91 | switchMap(res => from(res.data)), | 93 | switchMap(res => from(res.data)), |
92 | concatMap(videoChannel => { | 94 | concatMap(videoChannel => { |
93 | const options = { | 95 | const options = { |
@@ -113,14 +115,14 @@ export class AccountVideoChannelsComponent implements OnInit, OnDestroy { | |||
113 | } | 115 | } |
114 | 116 | ||
115 | getVideosOf (videoChannel: VideoChannel) { | 117 | getVideosOf (videoChannel: VideoChannel) { |
116 | const obj = this.videos[ videoChannel.id ] | 118 | const obj = this.videos[videoChannel.id] |
117 | if (!obj) return [] | 119 | if (!obj) return [] |
118 | 120 | ||
119 | return obj.videos | 121 | return obj.videos |
120 | } | 122 | } |
121 | 123 | ||
122 | getTotalVideosOf (videoChannel: VideoChannel) { | 124 | getTotalVideosOf (videoChannel: VideoChannel) { |
123 | const obj = this.videos[ videoChannel.id ] | 125 | const obj = this.videos[videoChannel.id] |
124 | if (!obj) return undefined | 126 | if (!obj) return undefined |
125 | 127 | ||
126 | return obj.total | 128 | return obj.total |