Assuming i have emberjs model/controller/views for account , project and task, and i want to scope access to the project and task through account, how do i do that in emberjs. I am looking at using 'init' but the 'init function' is called after all the other properties are set, so i don't know if it is still able to get a currentUser or create a default currentUser and associate it with every ember object instance being created within the App namespace.
In emberjs if i have this for instance:
App = Ember.Application.create({
init: function() {
this._super();
this.setCurrentUser();
//console.log(this.get("setCurrentUser")
},
setCurrentUser: function(json) {
this.store.load(this.User, json);
this.set('currentUser', this.User.find(json['id']));
}
});
Will the emberjs code above mean that whenever any part of the App namespace eg App.project is being accessed, the currentUser will first be looked, thereby ensuring the project is scoped to User.
To make it clearer, in rails for example, i will do the scope access this way:
#account-scope in Rails?
class ApplicationController < ActionController::Base
def current_account
@current_account ||= current_user && current_user.account
end
end
#An imagined ProjectsController showing scoped access of project through account
@projects = current_account.projects
@project = current_account.projects.find(params[:id])
Thanks for your insight.