Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ember Routes vs Controllers vs Views

Tags:

ember.js

I have read most of the beginner guides on the Ember.js site but I am still confused about the correct place to put stuff.

  1. Route - from online research people suggested putting routing related logic in the route. That is all good, but the only thing I can think of is this.transisionTo(). I read somewhere else that all model related operations should be in the route because that is where the model field is defined. Is this correct? What are some good use cases of putting actions in the route over the controller?

  2. View - Currently, I can't see the point of the view. The docs say that it handles native DOM events but I will probably always use the {{action}} helper which will be handled by the controller. So what are some good use cases of using the view over the controller in regards to actions? What are some good use cases of the view generally considering I will be using components over views for reusable code.

  3. Controller - It appears to me that the controller can do anything the View or Route can do. It can transition using this.transitionToRoute(), it can save models using this.get('model').save() and can handle actions using the {{action}} helper. All the beginner tutorials seem to ignore the view altogether and use the controller instead. What are some good use cases of using the Controller over the View or Route?

I guess this all comes down to poor understanding of how everything hangs together. I can't find anything online or in the docs that is explicit about the grey areas such as where to use the {{action}} helper for different scenarios. Links to some good materials would be helpful too.

like image 572
jax Avatar asked Jul 12 '14 11:07

jax


People also ask

What does controller do in Ember?

In Ember. js, controllers allow you to decorate your models with display logic. In general, your models will have properties that are saved to the server, while controllers will have properties that your app does not need to save to the server.

What is Ember Route?

Regardless of how the URL becomes set, the Ember router then maps the current URL to one or more route handlers. A route handler can do several things: It can render a template. It can load a model that is then available to the template.

How Emberjs works?

Ember. js uses Handlebars, a lightweight templating engine also maintained by the Ember team. It has the usual templating logic, like if and else , loops and formatting helpers , that kind of stuff. Templates may be precompiled (if you want to cleanly organize them as separate .

What is the prime task performed by controllers in Ember JS?

What are the prime tasks that are performed by controllers in Ember. js? Decorating the model which is returned by the route is a very essential task that needs to be performed in Ember.


1 Answers

Update: Not all of this information will be correct for Ember 2. As far as I know Ember 2.0 will only use Components.

How Various Components of Ember.js Fit Together

Model

A Model takes care of interacting with a data store. An example of data store can be a RESTful server or Localstorage.

Template

A Template takes care of building HTML from data available to its Controller and View. A Controller in turn has access to a Model.

Controller and View

Controllers and Views are very similar and both act on user generated events. A Controller is supposed to take action on semantic events like submit and a View is supposed to take action on interaction events like focus or click.

Router

Ember has a single Router. Router links urls to Routes. For example users/:user_id to users.show route or UsersShowRoute.

Route

Each Route, when activated, takes care of unpacking a url to an state. For example users/:user_id requires a user to be logged in in order to see a friends profile. A Route makes sure a user is logged in and takes care of state of being logged in.

A Route fetches information from data store. For example users/pekhee will fetch pekhee user from a data store and give it to Controller and View.

A Route dynamically chooses what Controller and View it needs or how many of them it needs.

A Route manages state of an application and how that state should be represented. However Models take care of managing state of application for Route and Controllers/Views take care of managing nitty gritty details of its representation.

Keep Logic as Relevant and as Local as Possible: Some Notes

  • If your logic doesn't care about any context or model put it in activate callback of route.
  • If a piece of logic only needs to know model put it in afterModel callback of route.
  • If it needs to know context of Controller or interact with semantic meaning of a resource put it in a controller.
  • If it needs to know context of View or interact with representation of a resource put it in a view.
  • If it needs to know both contexts or interact with both semantic and presentation of a resource first give the event to a view then escalate it to a controller.

Examples

When more than one Controllers work with one Model, keep semantic actions on highest possible Route in the chain otherwise keep logic in most local Controller.

Keep animation related code in View and use Liquid Fire.

Sometimes each user has a lot of posts and each post has a lot of comments. Try to have a Route return relevant user. Then ask relevant user for posts in PostsRoute and after that try to ask for relevant comments in CommentsRoute. This keeps logic as local as possible. You comments route doesn't need to know how you retrieve a user.

like image 159
Pooyan Khosravi Avatar answered Oct 06 '22 13:10

Pooyan Khosravi