1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Add ability to update thumbnail and preview on client

This commit is contained in:
Chocobozzz 2018-02-16 16:35:32 +01:00
parent b6a4fd6b09
commit 6de3676898
No known key found for this signature in database
GPG key ID: 583A612D890159BE
20 changed files with 274 additions and 137 deletions

View file

@ -67,6 +67,27 @@ function isInMobileView () {
return window.innerWidth < 500
}
// Thanks: https://gist.github.com/ghinda/8442a57f22099bdb2e34
function objectToFormData (obj: any, form?: FormData, namespace?: string) {
let fd = form || new FormData()
let formKey
for (let key of Object.keys(obj)) {
if (namespace) formKey = `${namespace}[${key}]`
else formKey = key
if (obj[key] === undefined) continue
if (typeof obj[ key ] === 'object' && !(obj[ key ] instanceof File)) {
objectToFormData(obj[ key ], fd, key)
} else {
fd.append(formKey, obj[ key ])
}
}
return fd
}
export {
viewportHeight,
getParameterByName,
@ -75,5 +96,6 @@ export {
dateToHuman,
isInSmallView,
isInMobileView,
immutableAssign
immutableAssign,
objectToFormData
}