Hey, long time v1 user and now making the jump to v3!
I have this hobby PWA project built on v3: https://gamemusicplayer.io (repo: https://github.com/zwacky/game-music-player) and I want the tracks to be shareable. Meaning as soon as a track begins to play, the URL should be changed as well.
Looks like a case for the ionic DeepLinker / @Page-Decorator. But I can’t get it to work how I want it to.
Whenever i use navCtrl.push()
or navCtrl.setRoot()
, the whole page/component is rerendered. Since there is a very unoptimized rendering of 1000+ items, I don’t want that to happen everytime.
Is there a way to tell ionic not to re-render the whole list when updating the navigation?
Or should I go entirely in a different way or handle pushStates entirely on my own?
Cheers!