aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/preview-upload.component.ts
blob: 7519734ba291eb7dca82fa0caaa42aae670fbbdd (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                    


                                                                         
                                             

                                                   

            


                                                   


                                 
                                                            



                 
                                                                             





                                
                               
                     
 
                                    
                              
                    


                                    





                                            

                               
                                                   


                            
                                                 

   



                                                           
               



                                                         


                                                                        
                              
                    
 

                                   























                                                                        
import { Component, forwardRef, Input, OnInit } from '@angular/core'
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser'
import { ServerService } from '@app/core'
import { ServerConfig } from '@shared/models'
import { BytesPipe } from 'ngx-pipes'
import { I18n } from '@ngx-translate/i18n-polyfill'

@Component({
  selector: 'my-preview-upload',
  styleUrls: [ './preview-upload.component.scss' ],
  templateUrl: './preview-upload.component.html',
  providers: [
    {
      provide: NG_VALUE_ACCESSOR,
      useExisting: forwardRef(() => PreviewUploadComponent),
      multi: true
    }
  ]
})
export class PreviewUploadComponent implements OnInit, ControlValueAccessor {
  @Input() inputLabel: string
  @Input() inputName: string
  @Input() previewWidth: string
  @Input() previewHeight: string

  imageSrc: SafeResourceUrl
  allowedExtensionsMessage = ''
  maxSizeText: string

  private serverConfig: ServerConfig
  private bytesPipe: BytesPipe
  private file: Blob

  constructor (
    private sanitizer: DomSanitizer,
    private serverService: ServerService,
    private i18n: I18n
  ) {
    this.bytesPipe = new BytesPipe()
    this.maxSizeText = this.i18n('max size')
  }

  get videoImageExtensions () {
    return this.serverConfig.video.image.extensions
  }

  get maxVideoImageSize () {
    return this.serverConfig.video.image.size.max
  }

  get maxVideoImageSizeInBytes () {
    return this.bytesPipe.transform(this.maxVideoImageSize)
  }

  ngOnInit () {
    this.serverConfig = this.serverService.getTmpConfig()
    this.serverService.getConfig()
      .subscribe(config => this.serverConfig = config)

    this.allowedExtensionsMessage = this.videoImageExtensions.join(', ')
  }

  onFileChanged (file: Blob) {
    this.file = file

    this.propagateChange(this.file)
    this.updatePreview()
  }

  propagateChange = (_: any) => { /* empty */ }

  writeValue (file: any) {
    this.file = file
    this.updatePreview()
  }

  registerOnChange (fn: (_: any) => void) {
    this.propagateChange = fn
  }

  registerOnTouched () {
    // Unused
  }

  private updatePreview () {
    if (this.file) {
      const url = URL.createObjectURL(this.file)
      this.imageSrc = this.sanitizer.bypassSecurityTrustResourceUrl(url)
    }
  }
}