]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/shared/actor-avatar-info.component.ts
Fix angular 9 build
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / shared / actor-avatar-info.component.ts
CommitLineData
ba430d75 1import { Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core'
52d9f792 2import { ServerService } from '../../core/server'
52d9f792
C
3import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
4import { Account } from '@app/shared/account/account.model'
f8b2c1b4 5import { Notifier } from '@app/core'
ba430d75 6import { ServerConfig } from '@shared/models'
52d9f792
C
7
8@Component({
9 selector: 'my-actor-avatar-info',
10 templateUrl: './actor-avatar-info.component.html',
11 styleUrls: [ './actor-avatar-info.component.scss' ]
12})
ba430d75 13export class ActorAvatarInfoComponent implements OnInit {
2f5d2ec5 14 @ViewChild('avatarfileInput') avatarfileInput: ElementRef<HTMLInputElement>
52d9f792
C
15
16 @Input() actor: VideoChannel | Account
17
18 @Output() avatarChange = new EventEmitter<FormData>()
19
ba430d75
C
20 private serverConfig: ServerConfig
21
52d9f792 22 constructor (
52d9f792 23 private serverService: ServerService,
f8b2c1b4 24 private notifier: Notifier
52d9f792
C
25 ) {}
26
ba430d75
C
27 ngOnInit (): void {
28 this.serverConfig = this.serverService.getTmpConfig()
29 this.serverService.getConfig()
30 .subscribe(config => this.serverConfig = config)
31 }
32
52d9f792
C
33 onAvatarChange () {
34 const avatarfile = this.avatarfileInput.nativeElement.files[ 0 ]
35 if (avatarfile.size > this.maxAvatarSize) {
f8b2c1b4 36 this.notifier.error('Error', 'This image is too large.')
52d9f792
C
37 return
38 }
39
40 const formData = new FormData()
41 formData.append('avatarfile', avatarfile)
42
43 this.avatarChange.emit(formData)
44 }
45
46 get maxAvatarSize () {
ba430d75 47 return this.serverConfig.avatar.file.size.max
52d9f792
C
48 }
49
50 get avatarExtensions () {
ba430d75 51 return this.serverConfig.avatar.file.extensions.join(',')
52d9f792
C
52 }
53}