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

Filter function should receive the full route object (instead of just the url) #69

Closed
SnirShechter opened this issue Jun 16, 2019 · 4 comments · May be fixed by #70
Closed

Filter function should receive the full route object (instead of just the url) #69

SnirShechter opened this issue Jun 16, 2019 · 4 comments · May be fixed by #70

Comments

@SnirShechter
Copy link
Contributor

SnirShechter commented Jun 16, 2019

What problem does this feature solve?

The filter function receives an array of routes containing URLs and sitemap options. This means that the only way to filter the route is by final URL:

filter function - received route object

{
      url:'/about-us',
      // ...sitemapOptions
}

The specific need rises when we are using nuxt-i18n:

localed route

routeName: 'about'
urls:{
      en: '/about-us', 
      fr: '/a-propos',
      es: '/sobre' 
}

If I wish to exclude these routes, I need to use one of two options:

sitemapConfig - exclude 'about'

exclude: [
      '/about-us', 
      '/a-propos',
      '/sobre'
]

or

filter function - exclude 'about'

filter(routes){
      const excludedRoutes =  ['/about-us', '/a-propos', '/sobre']
      return routes.filter(route=>!excludedRoutes.includes(route.url))
}

What does the proposed changes look like?

The route object can actually contain more data:

filter function - possible route object

{
      url:'/about-us',
      name:'about',
      path:'/',
      chunkName:'pages/index',
      component:'C:\dev\sitemap-module\test\fixture\pages\about.vue'
}

Using that data, we can easily exclude routes by name.

filter function - new form

filter(routes){
      const excludedRouteNames =  ['about']
      return routes.filter(route=>!excludedRouteNames .includes(route.name))
}
This feature request is available on Nuxt community (#c53)
@ricardogobbosouza
Copy link
Member

@SnirShechter, @NicoPennec
In version 2.0.0 the route is coming as an object, I think it can close.

@ricardogobbosouza
Copy link
Member

@NicoPennec can closed?

@NicoPennec
Copy link
Member

@ricardogobbosouza no, it's not that.

@NicoPennec
Copy link
Member

@SnirShechter I just cherry-picked your commit from your still remained opened PR #70

Thank you for this contribution 🙏

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants