blob: 4f9cbc525331c4ef91909a556718290b131f4455 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import { Component, Input, OnInit } from '@angular/core'
import { AuthService, User } from '@app/core'
import { VideoChannel } from '@app/shared/shared-main'
@Component({
selector: 'my-channels-setup-message',
templateUrl: './channels-setup-message.component.html',
styleUrls: [ './channels-setup-message.component.scss' ]
})
export class ChannelsSetupMessageComponent implements OnInit {
@Input() hideLink = false
user: User = null
constructor (
private authService: AuthService
) {}
hasChannelNotConfigured () {
if (!this.user.videoChannels) return false
return this.user.videoChannels.filter((channel: VideoChannel) => (channel.avatars.length === 0 || !channel.description)).length > 0
}
ngOnInit () {
this.user = this.authService.getUser()
}
}
|