Skip to content

Instantly share code, notes, and snippets.

@wycats
Created May 13, 2012 04:09
Show Gist options
  • Star 63 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save wycats/2679013 to your computer and use it in GitHub Desktop.
Save wycats/2679013 to your computer and use it in GitHub Desktop.

Routing in Ember

In Ember, the application's state manager handles routing. Let's take a look at a simple example:

App.stateManager = Ember.StateManager.create({
  start: Ember.State.extend({
    index: Ember.State.extend({
      route: "/",
      
      setupContext: function(manager) {
        manager.transitionTo('posts.index')
      }
    }),

    posts: Ember.State.extend({
      route: "/posts",

      setupContext: function(manager) {
        // the postsController is shared between the index and
        // show views, so set it up here
        var postsController = manager.get('postsController');

        postsController.set('content', Post.findAll());        
      },

      index: Ember.State.extend({
        route: "/",
    
        setupContext: function(manager) {
          // the application's main view is a ContainerView whose
          // view is bound to the manager's `currentView`
          manager.set('currentView', App.PostsView.create({
            controller: manager.get('postsController')
          }));
        },
        
        showPost: function(manager, event) {
          // this event was triggered from an {{action}} inside of
          // an {{#each}} loop in a template
          manager.transitionTo('show', event.context);
        }
      }),
    
      show: Ember.State.extend({
        route: "/:post_id",
        
        setupContext: function(manager, post) {
          var postsController = manager.get('postsController');
          postsController.set('selected', post);

          manager.set('currentView', App.PostView.create({
            controller: postController
          }))
        },
        
        serialize: function(manager, post) {
          return { "post_id": post.get('id') }
        },
        
        deserialize: function(manager, params) {
          return Post.find(params["post_id"]);
        }
      })
    })
  })
})

The primary goal of Ember routing is ensuring that the code that runs when you enter a state programmatically is the same as the code that runs when you enter a state through the URL.

In general, once you have set up your router, navigating through your application should automatically update the URL. Sharing that URL across sessions or through social media should result in exactly the same path through the application hierarchy.

Let's take a look at what happens in both situations with this simple example:

Scenario 1: Entering at /

When the user enters at /, the state manager will start out in the start state. It will immediately move into the start.index state. Because the route for the index state has no dynamic segments, the state manager passes no context to the setupContext event.

In this case, the index state immediately moves the state manager into the default view for this application, the posts.index state.

When the state manager transitions into the posts.index state, it generates a URL for the current state, /posts, and sets the current URL to /posts (either using hash changes or pushState as appropriate).

Entering the posts.index state will also render a list of all of the posts as the current view. Clicking on a post will trigger the state's showPost event with that post object as its context.

The showPost event will transition the state manager into the posts.show state, passing the post as its context.

In this case, the posts.show state has a dynamic segment (:post_id), so the state manager invokes the serialize method with the context. Assuming the post has an id of 45, the serialize method returns { "post_id": 45 }, which the state manager uses to generate the state's portion of the URL.

Scenario 2: Entering at /posts/45

Now that the user has navigated to a state corresponding to a URL of /posts/45, he may want to bookmark it or share it with a friend. Let's see what happens when a user enters the app at /posts/45.

First, the app will descend into the posts state, whose route matches the first part of the URL, /posts. Since the state has no dynamic segment, it invokes the setupContext method with no context, and the state sets up the postsController, exactly as before when the app programmatically entered the state.

Next, it descends into posts.show. Since posts.show has a dynamic segment, the state manager will invoke the state's deserialize method to retrieve its context.

The deserialize method returns a Post object for id 45. To finish up, the state manager invokes setupContext with the deserialized Post object.

Integration with ember-data (or other models)

NOTE: Implementation of this section is still TODO

While the above system is cool, writing a serialize and deserialize method for every state containing a dynamic segment can get somewhat repetitive.

To avoid this, you can specify a modelType on a state, and you will get default methods. For example, if you specify a modelType of App.Post, like this:

show: Ember.State.extend({
  route: "/:post_id",
  modelType: 'App.Post',
  
  setupContext: function(manager, context) {
    var postsController = manager.get('postsController');
    postsController.set('selected', context.post);

    manager.set('currentView', App.PostView.create({
      controller: postController
    }))
  }
})

The state manager will create the methods for you behind the scenes. You will get a state that looks like this:

show: Ember.State.extend({
  route: "/:post_id",
  modelType: 'App.Post',
  
  setupContext: function(manager, context) {
    var postsController = manager.get('postsController');
    postsController.set('selected', context.post);

    manager.set('currentView', App.PostView.create({
      controller: postController
    }))
  },

  serialize: function(manager, context) {
    return { "post_id": context.post.get('id') };
  },

  deserialize: function(manager, params) {
    return { "post": App.Post.find(params['post_id']) }
  }
})

That makes the full example from above look like:

App.stateManager = Ember.StateManager.create({
  start: Ember.State.extend({
    index: Ember.State.extend({
      route "/",
      
      setupContext: function(manager) {
        manager.transitionTo('posts.index')
      }
    }),

    posts: Ember.State.extend({
      route: "/posts",

      setupContext: function(manager) {
        // the postsController is shared between the index and
        // show views, so set it up here
        var postsController = manager.get('postsController');

        postsController.set('content', Post.findAll());        
      },

      index: Ember.State.extend({
        route: "/",
    
        setupContext: function(manager) {
          // the application's main view is a ContainerView whose
          // view is bound to the manager's `currentView`
          manager.set('currentView', App.PostsView.create({
            controller: postsController
          }));
        },
        
        showPost: function(manager, event) {
          // this event was triggered from an {{action}} inside of
          // an {{#each}} loop in a template
          manager.transitionTo('show', event.context);
        }
      }),
    
      show: Ember.State.extend({
        route: "/:post_id",
        modelType: 'App.Post',

        setupContext: function(manager, context) {
          var postsController = manager.get('postsController');
          postsController.set('selected', context.post);

          manager.set('currentView', App.PostView.create({
            controller: postController
          }))
        }
      })
    })
  })
})
@GauravShetty1016
Copy link

setupContext has been changed to setupControllers. Definitely helps in making the intentions clearer.

@sdahlbac
Copy link

This looks promising, if I'd like to kick the tires right now, how would I go about that? I tried getting the routing branch and running rake, but it failed somewhere in the middle with the following error:
C:\Work\git\emberjs>rake
Building Ember...
rake aborted!
SyntaxError: Expected identifier, string or number

Tasks: TOP => C:/Work/git/emberjs/dist/ember.prod.js => C:/Work/git/emberjs/tmp/
rake-pipeline-b86b1479df7649a4a4b2e5ef150e23928c0a0317/rake-pipeline-tmp-14/embe
r.prod.js

@GauravShetty1016
Copy link

This code is already merged into master. Download the latest and give it a whirl.

@jakehow
Copy link

jakehow commented May 30, 2012

emberjs/ember.js@5821ac0 fixes my issue above

@briandw
Copy link

briandw commented Jun 7, 2012

Good stuff, but I found your later gist much more informative. https://gist.github.com/2728699

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