Trying to get things working correctly in Blazor Server Side App. I have an Uploader Component but it doesn't InvokeAsync after each promise is resolved on client side. It waits for all Images to load then Invokes the C# method. How would I get it to Invoke the C# method after each image is loaded?
I know JavaScript is single threaded but also tried with web workers and still does the same thing.
Sample repo can be found here https://dev.azure.com/twinnaz/BlazorUploader
Gif of what's happening.
https://i.stack.imgur.com/7rj7Q.jpg
It should be able to invoke the C# method Async in parallel from javascript file if my thinking is correct.