aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/accounts.component.ts
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-03-09 10:22:11 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-03-09 10:22:11 +0100
commit937b7a6af8f5385ca2b6454f1e1e71d9275b6ac0 (patch)
tree7f08e2b46140a80eb0fd517ac11e2d97ac34716d /client/src/app/+accounts/accounts.component.ts
parent61b20252a087e6403b34ef9bdc4fe6fb05936dfb (diff)
downloadPeerTube-937b7a6af8f5385ca2b6454f1e1e71d9275b6ac0.tar.gz
PeerTube-937b7a6af8f5385ca2b6454f1e1e71d9275b6ac0.tar.zst
PeerTube-937b7a6af8f5385ca2b6454f1e1e71d9275b6ac0.zip
Better display of accounts and channel pages on small screens
Diffstat (limited to 'client/src/app/+accounts/accounts.component.ts')
-rw-r--r--client/src/app/+accounts/accounts.component.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/app/+accounts/accounts.component.ts b/client/src/app/+accounts/accounts.component.ts
index 2ca6062c2..bf71179f3 100644
--- a/client/src/app/+accounts/accounts.component.ts
+++ b/client/src/app/+accounts/accounts.component.ts
@@ -11,6 +11,7 @@ import { I18n } from '@ngx-translate/i18n-polyfill'
11import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' 11import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
12import { VideoChannel } from '@app/shared/video-channel/video-channel.model' 12import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
13import { ListOverflowItem } from '@app/shared/misc/list-overflow.component' 13import { ListOverflowItem } from '@app/shared/misc/list-overflow.component'
14import { ScreenService } from '@app/shared/misc/screen.service'
14 15
15@Component({ 16@Component({
16 templateUrl: './accounts.component.html', 17 templateUrl: './accounts.component.html',
@@ -36,6 +37,7 @@ export class AccountsComponent implements OnInit, OnDestroy {
36 private restExtractor: RestExtractor, 37 private restExtractor: RestExtractor,
37 private redirectService: RedirectService, 38 private redirectService: RedirectService,
38 private authService: AuthService, 39 private authService: AuthService,
40 private screenService: ScreenService,
39 private i18n: I18n 41 private i18n: I18n
40 ) { 42 ) {
41 } 43 }
@@ -91,6 +93,10 @@ export class AccountsComponent implements OnInit, OnDestroy {
91 ) 93 )
92 } 94 }
93 95
96 get isInSmallView () {
97 return this.screenService.isInSmallView()
98 }
99
94 onUserChanged () { 100 onUserChanged () {
95 this.getUserIfNeeded(this.account) 101 this.getUserIfNeeded(this.account)
96 } 102 }