Budibase is an open-source low-code platform for creating internal apps in minutes. Supports PostgreSQL, MySQL, MSSQL, MongoDB, Rest API, Docker, K8s 🚀
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
809 B

<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}
/>