1
0
Fork 0
mirror of synced 2024-09-28 15:21:28 +12:00
budibase/packages/standard-components/src/forms/AttachmentField.svelte

54 lines
1.1 KiB
Svelte
Raw Normal View History

2021-01-30 02:22:38 +13:00
<script>
import Field from "./Field.svelte"
import { CoreDropzone } from "@budibase/bbui"
import { getContext } from "svelte"
2021-01-30 02:22:38 +13:00
export let field
export let label
export let disabled = false
2021-01-30 02:22:38 +13:00
let fieldState
let fieldApi
const { API, notifications } = getContext("sdk")
const BYTES_IN_MB = 1000000
export let files = []
const handleFileTooLarge = (fileSizeLimit) => {
notifications.warning(
`Files cannot exceed ${
fileSizeLimit / BYTES_IN_MB
} MB. Please try again with smaller files.`
)
}
const processFiles = async (fileList) => {
let data = new FormData()
for (let i = 0; i < fileList.length; i++) {
data.append("file", fileList[i])
}
return await API.uploadAttachment(data)
}
2021-01-30 02:22:38 +13:00
</script>
<Field
{label}
{field}
{disabled}
type="attachment"
bind:fieldState
bind:fieldApi
defaultValue={[]}
>
{#if $fieldState}
<CoreDropzone
value={$fieldState.value}
disabled={$fieldState.disabled}
on:change={(e) => fieldApi.setValue(e.detail)}
{processFiles}
{handleFileTooLarge}
/>
2021-01-30 02:22:38 +13:00
{/if}
</Field>