]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/forms/reactive-file.component.ts
Support audio upload in client
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / forms / reactive-file.component.ts
CommitLineData
40e87e9e
C
1import { Component, EventEmitter, forwardRef, Input, OnInit, Output } from '@angular/core'
2import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'
f8b2c1b4 3import { Notifier } from '@app/core'
40e87e9e 4import { I18n } from '@ngx-translate/i18n-polyfill'
7b992a86 5import { GlobalIconName } from '@app/shared/images/global-icon.component'
40e87e9e
C
6
7@Component({
8 selector: 'my-reactive-file',
9 styleUrls: [ './reactive-file.component.scss' ],
10 templateUrl: './reactive-file.component.html',
11 providers: [
12 {
13 provide: NG_VALUE_ACCESSOR,
14 useExisting: forwardRef(() => ReactiveFileComponent),
15 multi: true
16 }
17 ]
18})
19export class ReactiveFileComponent implements OnInit, ControlValueAccessor {
20 @Input() inputLabel: string
21 @Input() inputName: string
22 @Input() extensions: string[] = []
23 @Input() maxFileSize: number
24 @Input() displayFilename = false
7b992a86 25 @Input() icon: GlobalIconName
40e87e9e
C
26
27 @Output() fileChanged = new EventEmitter<Blob>()
28
29 allowedExtensionsMessage = ''
772d5642 30 fileInputValue: any
40e87e9e
C
31
32 private file: File
33
34 constructor (
f8b2c1b4 35 private notifier: Notifier,
40e87e9e
C
36 private i18n: I18n
37 ) {}
38
39 get filename () {
40 if (!this.file) return ''
41
42 return this.file.name
43 }
44
45 ngOnInit () {
46 this.allowedExtensionsMessage = this.extensions.join(', ')
47 }
48
49 fileChange (event: any) {
50 if (event.target.files && event.target.files.length) {
51 const [ file ] = event.target.files
52
53 if (file.size > this.maxFileSize) {
f8b2c1b4 54 this.notifier.error(this.i18n('This file is too large.'))
40e87e9e
C
55 return
56 }
57
b5487ff4
C
58 const extension = '.' + file.name.split('.').pop()
59 if (this.extensions.includes(extension) === false) {
60 const message = this.i18n(
61 'PeerTube cannot handle this kind of file. Accepted extensions are {{extensions}}.',
62 { extensions: this.allowedExtensionsMessage }
63 )
64 this.notifier.error(message)
65
66 return
67 }
68
40e87e9e
C
69 this.file = file
70
71 this.propagateChange(this.file)
72 this.fileChanged.emit(this.file)
73 }
74 }
75
76 propagateChange = (_: any) => { /* empty */ }
77
78 writeValue (file: any) {
79 this.file = file
772d5642
C
80
81 if (!this.file) this.fileInputValue = null
40e87e9e
C
82 }
83
84 registerOnChange (fn: (_: any) => void) {
85 this.propagateChange = fn
86 }
87
88 registerOnTouched () {
89 // Unused
90 }
91}