That works but then it’s the same as the first example. Because then I still need a different function for every page that I want to use.
I hoped on something where i could give the name in the template that would make it just one function.
With your first solution the page.component is also undefined in the component. I can give Players to the component as a string( goTo(“Players”) ) and it will console.log: Players but since it’s a string it wont be able to push to.
Personally, I think this is a fool’s errand. TypeScript gives us great protection against stupid typos: everybody has written BannanaPage when they meant BananaPage, and it’s so much better when that gets caught immediately when you type it instead of at runtime.
You’re basically building a system to subvert all of that, and simultaneously adding action-at-a-distance to your app, which is harder to read, test, and debug.
@rapropos How would you add links to an ion-footer (that should display on every page) then? I’m still new to Ionic so if there’s a better way please tell me
Or is it better to make a function for each of the links?
I would put them in app.html, and the corresponding gotoXXX() functions in app.component.ts. I would not worry about having several different gotoXXX() functions: there is no performance loss, the effect on app size will not be measurable, and you keep the many benefits of type-checking.
No need to create new functions, you only need to set the variables in the component and import the components you want to navigate to. navParams is optional so you can omit it.
In your case it could be something like this in the template: