1
0
Fork 0
mirror of synced 2024-09-21 20:01:32 +12:00
budibase/packages/builder/src/components/common/Dropzone.svelte
2022-01-21 09:10:59 +00:00

38 lines
809 B
Svelte

<script>
import { Dropzone, notifications } from "@budibase/bbui"
import { API } from "api"
export let value = []
export let label
const BYTES_IN_MB = 1000000
function handleFileTooLarge(fileSizeLimit) {
notifications.error(
`Files cannot exceed ${
fileSizeLimit / BYTES_IN_MB
}MB. Please try again with smaller files.`
)
}
async function processFiles(fileList) {
let data = new FormData()
for (let i = 0; i < fileList.length; i++) {
data.append("file", fileList[i])
}
try {
return await API.uploadBuilderAttachment(data)
} catch (error) {
notifications.error("Failed to upload attachment")
return []
}
}
</script>
<Dropzone
bind:value
{label}
{...$$restProps}
{processFiles}
{handleFileTooLarge}
/>