blob: a49b7f36fd3e33aba87d819a4f5ac3bcab474821 (
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
33
34
35
36
37
38
39
40
|
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
import { AuthService } from '@app/core'
import { FormReactive, VideoChannelValidatorsService } from '../shared'
import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
import { FormGroup } from '@angular/forms'
@Component({
selector: 'my-signup-step-channel',
templateUrl: './signup-step-channel.component.html',
styleUrls: [ './signup.component.scss' ]
})
export class SignupStepChannelComponent extends FormReactive implements OnInit {
@Input() username: string
@Output() formBuilt = new EventEmitter<FormGroup>()
constructor (
protected formValidatorService: FormValidatorService,
private authService: AuthService,
private videoChannelValidatorsService: VideoChannelValidatorsService
) {
super()
}
get instanceHost () {
return window.location.host
}
isSameThanUsername () {
return this.username && this.username === this.form.value['name']
}
ngOnInit () {
this.buildForm({
name: this.videoChannelValidatorsService.VIDEO_CHANNEL_NAME,
displayName: this.videoChannelValidatorsService.VIDEO_CHANNEL_DISPLAY_NAME
})
setTimeout(() => this.formBuilt.emit(this.form))
}
}
|