I have some array of lets say orders. In current architecture, I am getting the list of all users every 5 seconds (I know that this is not the best approach, but unfortunately that wasn't my choice). Now, as my array grows (around 1000), and I want to display some image for each order, I can see a blink in the table (since I use Object.assign(this.orders, success.json()
).
Due to this annoying blink, which I guess comes from the fact that angular2 needs to rebuild the front end each time I fetch new data, I am wondering how angular2 rebuilds the HTML components after the object has changed? Is there anything else that I can do so that angular doesn't rebuild the whole structure, only the parts that are missing?