PeerTube/client/src/app/+videos/+video-edit/shared/video-edit-utils.ts

36 lines
743 B
TypeScript

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' as 'thumbnailUrl',
name: 'thumbnailfile'
},
{
url: 'previewUrl' as '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
}