I've got a "FormView" class in my Marionette application that sets up a lot of things for form submissions around my app. I use it every time there is a form. I've also got some helpers that I want to pass into every form template via the templateHelpers
method, but I also want to be able to add additional templateHelpers
in the children. Like so:
class Views.FormView extends Marionette.ItemView
templateHelpers: ->
helpers: Marionette.Concerns.Helpers
class Views.NewUser extends Views.FormView
templateHelpers: ->
variable: @something
I want to be able to access both @variable
and @helpers
from the template for NewUser
. Additionally, I know how to handle this (via _.extends
) if templateHelpers
is an object, but I need it to be a function.
Is it possible? And if so, how?
In Backbone, when you inherit from another class, Backbone will give the subclass a
__super__
property (double underscore at both ends) which is the prototype of the parent class. So from within yourViews.NewUser
class, you can get the prototype viaView.NewUser.__super__
. Then, you can calltemplateHelpers
on that object. Here's how I did it (live example at JSbin):You could then use
_.extend
to extend one with the other; maybe like this: