So I wanted to make a question not about code but about choices. As the project I'm working on grows, I get more worried about what are the right approaches to different ideas/patterns.
In this case, based on https://angular.io/docs/ts/latest/guide/server-communication.html and https://stackoverflow.com/a/34450948/6028947
I wanted to know what would be best, more recommended, or if it's just a matter of preference whether to put several GET requests in the same file, or have more files, more component, and so it is more separated.
The idea in my case is, I am going to click something, get answers from back-end, show those answers and choices, click on them, get answers, get shown more choices, and that can be a path of, at least, 4 steps.
So I was wondering wether I would need to do the equivalent to the hero-list.component.ts for every step, as to have several GET and several subscribers, or it is not needed.
Thanks in advance.