I'm building a single page web app (because I want flexibility and speed when moving across pages/states) but I'm struggling with routing / urls ...

In the traditional paradigm I would have urls such as:

example.com/tools/population-tool/#currentYear=1950
example.com/tools/income-tool/#country=usa
example.com/nice-story/
example.com/nice-chapter/nice-story/

Now I'd like to replace this with a Router (for example using Backbone) that loads templates and controllers for the corresponding routes.

I'm thinking about having a pages object that stores the necessary page information:

pages : {
  tools : {
    template : "#tools",
    breadcrumb : ["Home","Tools"]
  }
  nice-story : {
    template : "#nice-story",
    breadcrumb : ["Home","Stories","Nice Story"]
  }  
}

With a router, I'd now like load the right content and page state, given a url like:

example.com/#!/tools/population-tool/?currentYear=1950

or like this if not using Hashbang:

example.com/tools/population-tool/?currentYear=1950

How would you organize this routing so that the url scheme makes sense while still being flexible and allow for redirects and new query string paramaters?

link|improve this question

52% accept rate
feedback

2 Answers

This is not a complete answer to your question, but a few tips on Backbone...

You may want to define a method like loadPage() on your router which can empty and replace your main page container with a view that corresponds to each "page" in your app. Each route action can call that to load up the right view.

If you will be using pseudo query strings, make sure to add a matcher for them explicitly in your Backbone routes. For example:

'/tools/population-tool/?*params'

That will call your route action with the entire params string as the first parameter. You'll need to parse that...

link|improve this answer
Thanks for the reply! Would that mean having explicitly list all pages as routes? I would have hoped there was a simpler solution like ':page/:subpage/?*params' ?? Thanks. – dani Nov 18 '11 at 18:50
You can do that if you want to. Then you just move all of your logic into one routing function which can inspect your "pages" object. I think it's more common to define a 1:1 of routes to pages, but it depends on your use case. – maxl0rd Nov 18 '11 at 19:02
feedback

I found this backbone plugin: github.com/jhudson8/backbone-query-parameters. You just plugged it in and you are ready to go.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.