Skip to content

Instantly share code, notes, and snippets.

@pixeltrix
Created October 29, 2010 13:21
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save pixeltrix/653543 to your computer and use it in GitHub Desktop.
Save pixeltrix/653543 to your computer and use it in GitHub Desktop.
Examples of advanced Rails 3.0 routes
Rails.application.routes.draw do
get '/(:locale)/products/(:category)/(page/:page).:extension',
:to => 'products#index',
:as => :products,
:constraints => {
:locale => /[a-z]{2}/,
:category => /.+?/,
:page => /\d+/
},
:defaults => {
:page => 1,
:extension => 'html',
:locale => 'en'
}
# products_path(:page => 1)
# => /products.html
# products_path(:page => 2)
# => /products/page/2.html
# products_path(:page => 2, :locale => 'de')
# => /de/products/page/2.html
# products_path('computers', :page => 2, :locale => 'de')
# => /de/products/computers/page/2.html
# products_path('computers/apple', :page => 2, :locale => 'de')
# => /de/products/computers/apple/page/2.html
# products_path('computers/apple')
# => /products/computers/apple.html
end
@longlostnick
Copy link

is it possible to make it so if a user comes from lets say "/zx/products.html" the path will also default to "/zx/..." without having to specify "product_path(:locale => 'xz')"?

Kind of like "dynamic" defaults, rather than just using a fixed value for the default.

@pixeltrix
Copy link
Author

@ifightcrime you can set a default url option for the :locale key in a before filter or override the default_url_options method - see this Stack Overflow answer for an example.

@longlostnick
Copy link

Worked like a charm! thank you

@jgrannas
Copy link

So when you write:
products_path('computers', :page => 2, :locale => 'de')
How does the method know that computers is the category when its not being specified like the other params?

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