What is the best way to manage a "multiple request" using react+flux. I'm using a file upload component that manages it's own request. I have more than one in the form. I need to ask for the upload components to make their requests and save my form just after I'm sure all uploads were ok.
I normally use the api to make requests, called by actions. I dispatch an event to indicate the beginning on the action and another to indicate the end on the api. But, how to manage this "multi requests" scenario?
Any ideas?