I would like to intercept the api call and execute my own code which call my backend api to upload files to azure, but I am a bit confused how to get the file content when a file is uploaded. I managed to get the file details but not sure how to get the file content.
{
"file": {
"name": "download.pdf",
"size": 20634,
"date": "2025-04-03T12:05:03.214Z",
"file": {}
},
"parent": "/",
"newId": "/download.pdf"
}
const init = (api) => {
api.on("create-file", (ev) => {
console.log("Create file event:", ev);
// Get file contents and call backend API to store file to database
});
}
</script>
<div>
{#if rawData.length > 0}
<Filemanager {init}
data={rawData}
/>
{/if}
</div>