70e3c8bd45
* add unique id to file names to avoid name clashes * Add event callbacks for `onSessionStart` and `onSessionEnd`
38 lines
1 KiB
TypeScript
38 lines
1 KiB
TypeScript
import { Utils } from '@tldraw/core'
|
|
import { TldrawApp } from '@tldraw/tldraw'
|
|
import { useCallback } from 'react'
|
|
|
|
export function useUploadAssets() {
|
|
const onAssetUpload = useCallback(
|
|
// Send the asset to our upload endpoint, which in turn will send it to AWS and
|
|
// respond with the URL of the uploaded file.
|
|
|
|
async (app: TldrawApp, file: File, id: string): Promise<string | false> => {
|
|
const filename = encodeURIComponent((id ?? Utils.uniqueId()) + file.name)
|
|
|
|
const fileType = encodeURIComponent(file.type)
|
|
|
|
const res = await fetch(`/api/upload?file=${filename}&fileType=${fileType}`)
|
|
|
|
const { url, fields } = await res.json()
|
|
|
|
const formData = new FormData()
|
|
|
|
Object.entries({ ...fields, file }).forEach(([key, value]) => {
|
|
formData.append(key, value as any)
|
|
})
|
|
|
|
const upload = await fetch(url, {
|
|
method: 'POST',
|
|
body: formData,
|
|
})
|
|
|
|
if (!upload.ok) return false
|
|
|
|
return url + '/' + filename
|
|
},
|
|
[]
|
|
)
|
|
|
|
return { onAssetUpload }
|
|
}
|