aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/misc/channels-setup-message.component.ts
blob: 50b98841adc21e48d1f97964ab182eca618fcadc (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
29
30
31
32
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
  ) {}

  get userInformationLoaded () {
    return this.authService.userInformationLoaded
  }

  get hasChannelNotConfigured () {
    return this.user.videoChannels
      .filter((channel: VideoChannel) => (!channel.avatar || !channel.description))
      .length > 0
  }

  ngOnInit () {
    this.user = this.authService.getUser()
  }
}