16e8fe1426
* support larger files, reparent shapes correctly * serialize GIFs
29 lines
861 B
TypeScript
29 lines
861 B
TypeScript
import { TDExport } from '@tldraw/tldraw'
|
|
|
|
export const EXPORT_ENDPOINT =
|
|
process.env.NODE_ENV === 'development'
|
|
? 'http://localhost:3000/api/export'
|
|
: 'https://www.tldraw.com/api/export'
|
|
|
|
export async function exportToImage(info: TDExport) {
|
|
if (info.serialized) {
|
|
const link = document.createElement('a')
|
|
link.href = 'data:text/plain;charset=utf-8,' + encodeURIComponent(info.serialized)
|
|
link.download = info.name + '.' + info.type
|
|
link.click()
|
|
|
|
return
|
|
}
|
|
|
|
const response = await fetch(EXPORT_ENDPOINT, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify(info),
|
|
})
|
|
const blob = await response.blob()
|
|
const blobUrl = URL.createObjectURL(blob)
|
|
const link = document.createElement('a')
|
|
link.href = blobUrl
|
|
link.download = info.name + '.' + info.type
|
|
link.click()
|
|
}
|