aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/shared/video-edit-utils.ts
blob: db1ef8d73c5374698c2c2df7d30105d596a04c47 (plain) (tree)

























                                                                                                 
                          







                      
import { FormGroup } from '@angular/forms'
import { VideoEdit } from '@app/shared/shared-main'

function hydrateFormFromVideo (formGroup: FormGroup, video: VideoEdit, thumbnailFiles: boolean) {
  formGroup.patchValue(video.toFormPatch())

  if (thumbnailFiles === false) return

  const objects = [
    {
      url: 'thumbnailUrl',
      name: 'thumbnailfile'
    },
    {
      url: 'previewUrl',
      name: 'previewfile'
    }
  ]

  for (const obj of objects) {
    if (!video[obj.url]) continue

    fetch(video[obj.url])
      .then(response => response.blob())
      .then(data => {
        formGroup.patchValue({
          [obj.name]: data
        })
      })
  }
}

export {
  hydrateFormFromVideo
}