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:
parent
b6a4fd6b09
commit
6de3676898
20 changed files with 274 additions and 137 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue