Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not able to use object props for dynamic routes #269

Open
jydmnd opened this issue Oct 7, 2022 · 0 comments
Open

Not able to use object props for dynamic routes #269

jydmnd opened this issue Oct 7, 2022 · 0 comments

Comments

@jydmnd
Copy link

jydmnd commented Oct 7, 2022

The ensureIsValidRoute function flattens dynamic routes objects so that only the route prop is used as the url. It would be useful to pass the entire object instead like with static routes, so some additional props could be used in the filter function. The route prop would have to be assigned to a url prop, something like this :

function ensureIsValidRoute(route) {
  route = typeof route === 'object' ? route : { url: route }
  
  if(route.route)
    route.url = route.route

  // force as string
  route.url = String(route.url)
  return route
}
@jydmnd jydmnd changed the title Not able to pass params for dynamic routes Not able to use object props for dynamic routes Oct 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant