petermichaux | 13 years ago | on: Maria: An MVC framework for JS
petermichaux's comments
petermichaux | 13 years ago | on: Maria: An MVC framework for JS
petermichaux | 13 years ago | on: Maria: An MVC framework for JS
I am finding, while programming example applications for Maria, that splitting the event handling out to the controller is forcing me to make better APIs on my views to keep the DOM encapsulated. Allowing the controller to get the form data, without exposing any DOM information, for example. The view code ends up being very satisfying in a way I haven't experienced before.
What I'm hoping will happen is that after using strict view and controller separation for a while, I'll start to get insights where the strategy part could be used more. I think its the kind of thing that will sneak up on me over time and I'll start to see more uses for it.
petermichaux | 13 years ago | on: Maria: An MVC framework for JS
petermichaux | 13 years ago | on: Maria: An MVC framework for JS
Thanks for taking a look at Maria. You definitely got the gist of how things work with Maria but there are a few subtleties that might change your perspective on the relationship between views and controllers in an app built with Maria.
If a view has the following
maria.ElementView.subclass(myApp, 'MyView', {
uiActions: {
'click .alpha' : 'onClickAlpha' ,
'mouseover .beta': 'onMouseoverBeta'
},
...
That auto-generates two methods on the view that forward handling to the controller. myApp.MyView.prototype.onClickAlpha = function(evt) {
this.getController().onClickAlpha(evt);
};
myApp.MyView.prototype.onMouseoverBeta = function(evt) {
this.getController().onMouseoverBeta(evt);
};
So it is actually the view that handles the DOM events.If you don't want the controller to handle the raw DOM event or you don't want a controller involved in handling the event at all, you can define the handler methods on the view yourself and then the auto-generated methods will not be created. For example,
maria.ElementView.subclass(myApp, 'MyView', {
uiActions: {
'click .alpha' : 'onClickAlpha' ,
'mouseover .beta': 'onMouseoverBeta'
},
properties: {
onClickAlpha: function(evt) {
// not sending evt to the controller
// and controller method name is different
this.getController().onSomething(1, 2, 3);
},
onMouseoverBeta: function(evt) {
alert('no controller involved here');
},
...
Also about who should query the form data: the view or the controller. I believe the view should be the only player in the game that knows about the DOM. If the way that the form data has to be retrieved from the DOM changes, then only the view needs to be updated. This makes sense to me as the view is the one that creates the form so the view should encapsulated all access to the form.In the real world, the view/controller separation can be fuzzy. With Maria you can easily live without any controllers and have the views handle all user events or you can go wild with controllers and have all kinds of interchangeable view behavior thanks to the flexibility provided by controllers and the strategy pattern.
petermichaux | 14 years ago | on: JavaScript is Dead. Long Live JavaScript
petermichaux | 14 years ago | on: JavaScript is Dead. Long Live JavaScript
petermichaux | 14 years ago | on: JavaScript is Dead. Long Live JavaScript
petermichaux | 14 years ago | on: JavaScript is Dead. Long Live JavaScript
petermichaux | 14 years ago | on: JavaScript is Dead. Long Live JavaScript
petermichaux | 14 years ago | on: JavaScript is Dead. Long Live JavaScript
petermichaux | 16 years ago | on: Going back to C
Please let us know when it is ready ;-)
petermichaux | 18 years ago | on: Ask PG: Database, flat files or other for YC News?