
Is there a way to get a progress bar for the status of uploads to the server.

yes, there's a callback to the create file method. However, the progress is only in 5MB chunks

something is better then nothing

is there any specific way that I should submit the file to get progress

no

How do i check the chunks uploaded as it progresses

Got it thank you!

const uploadPromise = storage.createFile( getlinkedData.documents[0].bucketId, ID.unique(), draggedFiles[0], [], (progress) => { console.log(progress.progress) uploadProgress.set(progress.progress) // Update the Svelte store }

This is the ending code I got to make it work with JS. I am using SveltekIt

[Solved] Progress Bar for storage uploads
Recommended threads
- How do load test in appwrite?
I am new to testing and stuff and I am unsure of how to get started on load testing with appwrite. I am using SvelteKit as my framework and appwrite for everyth...
- Filter nested attributes
Hi, I was trying to use the selected attributes filter and it didn't work. It keeps saying my attributes don't exist in the schema. How am I supposed to use th...
- Duplicate name types with multiple datab...
Hello, we are having multiple databases and would like to use the cli to generate the types using (appwrite types --language ts), the issue is that the appwrit...
