question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

feat: fallback route for ion-router

See original GitHub issue

Feature Request

Ionic version:

[x] 4.x

Describe the Feature Request

Following up on #17423, we’d like the option to set a fallback/default route in case none of the routes is matching, e. g. to implement a “404 - Not Found” handling. The original request was closed but the provided “solution” is useless when not using Angular (e. g. in a Stencil app).

Describe Preferred Solution

On the Stencil website (which is using stencil-router) the solution is to have a route without a url (which I tried with an ion-route but didn’t work, and neither did an ion-route with url="*").

<ion-router >
  <ion-route url="/foo" component="page-foo" />
  <ion-route url="/bar" component="page-bar" />
  <ion-route component="page-404" />
</ion-router>

Describe Alternatives

Could add a property to ion-router that allows to set a component to render if no route was matched, e. g.

<ion-router noMatch="page-404">
  <ion-route url="/foo" component="page-foo" />
  <ion-route url="/bar" component="page-bar" />
</ion-router>

Possible names for that prop I can think of: noMatch, default, fallback.

Alternatively, there could be an ion-fallback-route component?

And yet another alternative: emit an event ionRouteNoMatch or similar (already suggested in the original issue), so we can at least handle this in some way.

Additional Context

The approach of having a route without url is also what React Router does (https://reacttraining.com/react-router/web/example/no-match), and I think it’s the most intuitive.

Are you open to a PR for this?

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:6
  • Comments:16 (8 by maintainers)

github_iconTop GitHub Comments

5reactions
badpenguincommented, Dec 18, 2019

The funny thing is that stencil-router support fallback by just removing the url parameter. In Ionic + Stencil i succeeded for the moment using:

<ion-route url=":any" component="app-404"/>
4reactions
codyburlesoncommented, Dec 6, 2019

I also need this badly. I’ve been building a solution with Ionic and Stencil only (no additional framework like Angular) and this is currently my only show-stopper for go-live. This issue has been open for 157 days and it’s not even assigned to anyone. For those seeking a pure platform-standard web components approach, this leaves a significant gap. Can you please reconsider the importance of this issue?

Read more comments on GitHub >

github_iconTop Results From Across the Web

feat: fallback / catch all route for ion-router · Issue #24726
The only way to do a fallback route as of today is to use url="/:any" : <ion-router > <ion-route url="/foo" component="page-foo" ...
Read more >
React Navigation - Ionic Framework
We can define a fallback route by placing a Route component without a path property as the last route defined within an IonRouterOutlet...
Read more >
Antonio Gallo on Twitter: "Do you have problem with Ionic/Stencil ...
Do you have problem with Ionic/Stencil routing catching unknown urls? github.com. feat: fallback route for ion-router · Issue #18687 · ionic-team/ionic- ...
Read more >
How to implement fallback page with Ionic 4 router (and ...
I am using ion-router for the routing. Can anybody help me understand how to implement a fallback "Page Not Found" page to display...
Read more >
Flexible Linkset Optional Based Routing - Oracle Help Center
The parameters required to perform Fallback to GTT are not available for MTP-routed messages whose CDPA GTI value is 0 (zero). Fallback to...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found