Hi!
First, thanks for a nice project! I like how I can have an otherwise static (looking) website but easily turn it into a file manager with a click of a button.
However, I noticed that it lacks any upload progress indicator, which might be an issue when uploading a gigabyte-sized files via not-so-fast connection.
Probably that's because underlying fetch API doesn't support it.
It looks like a suggested workaround is to use "good ol' XMLHttpRequest". In a quick test, I was able to use it to issue a PUT request to upload a file to my webdav server (running nginx) while monitoring progress in console.
What do you think about it? I see that file upload logic is located in a separate file, so it should be possible to change even for me.
Would you be interested in such pull request, or would you prefer to do it yourself?
Hi!
First, thanks for a nice project! I like how I can have an otherwise static (looking) website but easily turn it into a file manager with a click of a button.
However, I noticed that it lacks any upload progress indicator, which might be an issue when uploading a gigabyte-sized files via not-so-fast connection.
Probably that's because underlying fetch API doesn't support it.
It looks like a suggested workaround is to use "good ol' XMLHttpRequest". In a quick test, I was able to use it to issue a PUT request to upload a file to my webdav server (running nginx) while monitoring progress in console.
What do you think about it? I see that file upload logic is located in a separate file, so it should be possible to change even for me.
Would you be interested in such pull request, or would you prefer to do it yourself?