I have a component with a handful of external API calls. I'm subscribing to all of these all API calls, then populating drop-downs once the calls have succeeded. My issue is that when I load an already created entity. Some of the drop-downs might not be populated since the form is waiting for the promise to be fulfilled.
I realize I can add a variable or something along those long in the success block of my promises, then only populate the loaded entity onto the UI once all variables are true.
Is there something like this built into Angular 2 already? I can't seem to find any examples online of this particular problem.