UNPKG

k.backbone.marionette

Version:
527 lines (404 loc) 15.3 kB
## [View the new docs](http://marionettejs.com/docs/marionette.view.html) # Marionette.View Marionette has a base `Marionette.View` class that other views extend from. This base view provides some common and core functionality for other views to take advantage of. **Note:** The `Marionette.View` class is not intended to be used directly. It exists as a base view for other view classes to be extended from, and to provide a common location for behaviors that are shared across all views. ## Documentation Index * [Binding To View Events](#binding-to-view-events) * [View onShow](#view-onshow) * [View destroy](#view-destroy) * [View onBeforeDestroy](#view-onbeforedestroy) * [View "dom:refresh" / onDomRefresh event](#view-domrefresh--ondomrefresh-event) * [View.triggers](#viewtriggers) * [View.events](#viewevents) * [View.modelEvents and View.collectionEvents](#viewmodelevents-and-viewcollectionevents) * [View.serializeData](#viewserializedata) * [View.bindUIElements](#viewbinduielements) * [View.getOption](#viewgetoption) * [View.bindEntityEvents](#viewbindentityevents) * [View.templateHelpers](#viewtemplatehelpers) * [Basic Example](#basic-example) * [Accessing Data Within The Helpers](#accessing-data-within-the-helpers) * [Object Or Function As `templateHelpers`](#object-or-function-as-templatehelpers) * [Change Which Template Is Rendered For A View](#change-which-template-is-rendered-for-a-view) ## Binding To View Events Marionette.View extends `Backbone.View`. It is recommended that you use the `listenTo` method to bind model, collection, or other events from Backbone and Marionette objects. ```js var MyView = Backbone.Marionette.ItemView.extend({ initialize: function(){ this.listenTo(this.model, "change:foo", this.modelChanged); this.listenTo(this.collection, "add", this.modelAdded); }, modelChanged: function(model, value){ }, modelAdded: function(model){ } }); ``` The context (`this`) will automatically be set to the view. You can optionally set the context by using `_.bind`. ```js // Force the context of the "reconcileCollection" callback method to be the collection // itself, for this event handler only (does not affect any other use of the // "reconcileCollection" method) this.listenTo(this.collection, "add", _.bind(this.reconcileCollection, this.collection)); ``` ## View onShow * "show" / `onShow` - Called on the view instance when the view has been rendered and displayed. This event can be used to react to when a view has been shown via a [region](marionette.region.md). All `views` that inherit from the base `Marionette.View` class have this functionality, notably `ItemView`, `CollectionView`, `CompositeView`, and `LayoutView`. ```js Backbone.Marionette.ItemView.extend({ onShow: function(){ // react to when a view has been shown } }); ``` A common use case for the `onShow` method is to use it to add children views. ```js var LayoutView = Backbone.Marionette.LayoutView.extend({ regions: { Header: 'header', Section: 'section' }, onShow: function() { this.Header.show(new Header()); this.Section.show(new Section()); } }); ``` ## View destroy View implements a `destroy` method, which is called by the region managers automatically. As part of the implementation, the following are performed: * call an `onBeforeDestroy` event on the view, if one is provided * call an `onDestroy` event on the view, if one is provided * unbind all custom view events * unbind all DOM events * remove `this.el` from the DOM * unbind all `listenTo` events By providing an `onDestroy` method in your view definition, you can run custom code for your view that is fired after your view has been destroyd and cleaned up. The `onDestroy` method will be passed any arguments that `destroy` was invoked with. This lets you handle any additional clean up code without having to override the `destroy` method. ```js var MyView = Backbone.Marionette.ItemView.extend({ onDestroy: function(arg1, arg2){ // custom cleanup or destroying code, here } }); var v = new MyView(); v.destroy(arg1, arg2); ``` ## View onBeforeDestroy When destroying a view, an `onBeforeDestroy` method will be called, if it has been provided, just before the view destroys. It will be passed any arguments that `destroy` was invoked with. ### View "dom:refresh" / onDomRefresh event Triggered after the view has been rendered, has been shown in the DOM via a Marionette.Region, and has been re-rendered. This event / callback is useful for [DOM-dependent UI plugins](http://lostechies.com/derickbailey/2012/02/20/using-jquery-plugins-and-ui-controls-with-backbone/) such as [jQueryUI](http://jqueryui.com/) or [KendoUI](http://kendoui.com). ```js Backbone.Marionette.ItemView.extend({ onDomRefresh: function(){ // manipulate the `el` here. it's already // been rendered, and is full of the view's // HTML, ready to go. } }); ``` For more information about integration Marionette w/ KendoUI (also applicable to jQueryUI and other UI widget suites), see [this blog post on KendoUI + Backbone](http://www.kendoui.com/blogs/teamblog/posts/12-11-26/backbone_and_kendo_ui_a_beautiful_combination.aspx). ## View.events Since Views extend from backbone`s view class, you gain the benefits of the [events hash](http://backbonejs.org/#View-delegateEvents). Some preprocessing sugar is added on top to add the ability to cross utilize the ```ui``` hash. ```js var MyView = Backbone.Marionette.ItemView.extend({ // ... ui: { "cat": ".dog" }, events: { "click @ui.cat": "bark" //is the same as "click .dog": } }); ``` ## View.triggers Views can define a set of `triggers` as a hash, which will convert a DOM event into a `view.triggerMethod` call. The left side of the hash is a standard Backbone.View DOM event configuration, while the right side of the hash is the view event that you want to trigger from the view. ```js var MyView = Backbone.Marionette.ItemView.extend({ // ... triggers: { "click .do-something": "something:do:it" } }); var view = new MyView(); view.render(); view.on("something:do:it", function(args){ alert("I DID IT!"); }); // "click" the 'do-something' DOM element to // demonstrate the DOM event conversion view.$(".do-something").trigger("click"); ``` The result of this is an alert box that says, "I DID IT!" By default all triggers are stopped with `preventDefault` and `stopPropagation` methods. But you can manually configure the triggers using hash instead of event name. Example below triggers an event and prevents default browser behaviour using `preventDefault` method. ```js Backbone.Marionette.CompositeView.extend({ triggers: { "click .do-something": { event: "something:do:it", preventDefault: true, // this param is optional and will default to true stopPropagation: false } } }); ``` You can also specify the `triggers` as a function that returns a hash of trigger configurations ```js Backbone.Marionette.CompositeView.extend({ triggers: function(){ return { "click .that-thing": "that:i:sent:you" }; } }); ``` Trigger keys can be configured to cross utilize the ```ui``` hash. ```js Backbone.Marionette.ItemView.extend({ ui: { 'monkey': '.guybrush' }, triggers: { 'click @ui.monkey': 'see:LeChuck' // equivalent of "click .guybrush" } }); ``` Triggers work with all View classes that extend from the base Marionette.View. ### Trigger Handler Arguments A `trigger` event handler will receive a single argument that includes the following: * view * model * collection These properties match the `view`, `model`, and `collection` properties of the view that triggered the event. ```js var MyView = Backbone.Marionette.ItemView.extend({ // ... triggers: { "click .do-something": "some:event" } }); var view = new MyView(); view.on("some:event", function(args){ args.view; // => the view instance that triggered the event args.model; // => the view.model, if one was set on the view args.collection; // => the view.collection, if one was set on the view }); ``` Having access to these allows more flexibility in handling events from multiple views. For example, a tab control or expand/collapse widget such as a panel bar could trigger the same event from many different views and be handled with a single function. ## View.modelEvents and View.collectionEvents Similar to the `events` hash, views can specify a configuration hash for collections and models. The left side is the event on the model or collection, and the right side is the name of the method on the view. ```js Backbone.Marionette.CompositeView.extend({ modelEvents: { "change:name": "nameChanged" // equivalent to view.listenTo(view.model, "change:name", view.nameChanged, view) }, collectionEvents: { "add": "itemAdded" // equivalent to view.listenTo(view.collection, "add", view.itemAdded, view) }, // ... event handler methods nameChanged: function(){ /* ... */ }, itemAdded: function(){ /* ... */ }, }) ``` These will use the memory safe `listenTo`, and will set the context (the value of `this`) in the handler to be the view. Events are bound at the time of instantiation, and an exception will be thrown if the handlers on the view do not exist. The `modelEvents` and `collectionEvents` will be bound and unbound with the Backbone.View `delegateEvents` and `undelegateEvents` method calls. This allows the view to be re-used and have the model and collection events re-bound. ### Multiple Callbacks Multiple callback functions can be specified by separating them with a space. ```js Backbone.Marionette.CompositeView.extend({ modelEvents: { "change:name": "nameChanged thatThing" }, nameChanged: function(){ }, thatThing: function(){ }, }); ``` This works in both `modelEvents` and `collectionEvents`. ### Callbacks As Function A single function can be declared directly in-line instead of specifying a callback via a string method name. ```js Backbone.Marionette.CompositeView.extend({ modelEvents: { "change:name": function(){ // handle the name changed event here } } }); ``` This works for both `modelEvents` and `collectionEvents`. ### Event Configuration As Function A function can be used to declare the event configuration as long as that function returns a hash that fits the above configuration options. ```js Backbone.Marionette.CompositeView.extend({ modelEvents: function(){ return { "change:name": "someFunc" }; } }); ``` This works for both `modelEvents` and `collectionEvents`. ## View.serializeData The `serializeData` method will serialize a view's model or collection - with precedence given to collections. That is, if you have both a collection and a model in a view, calling the `serializeData` method will return the serialized collection. ## View.bindUIElements In several cases you need to access ui elements inside the view to retrieve their data or manipulate them. For example you have a certain div element you need to show/hide based on some state, or other ui element that you wish to set a css class to it. Instead of having jQuery selectors hanging around in the view's code you can define a `ui` hash that contains a mapping between the ui element's name and its jQuery selector. Afterwards you can simply access it via `this.ui.elementName`. See ItemView documentation for examples. This functionality is provided via the `bindUIElements` method. Since View doesn't implement the render method, then if you directly extend from View you will need to invoke this method from your render method. In ItemView and CompositeView this is already taken care of. ## View.getOption Retrieve an object's attribute either directly from the object, or from the object's this.options, with this.options taking precedence. More information [getOption](./marionette.functions.md) ## View.bindEntityEvents Helps bind a backbone "entity" to methods on a target object. bindEntityEvents is used to support `modelEvents` and `collectionEvents`. More information [bindEntityEvents](./marionette.functions.md) ## View.templateHelpers There are times when a view's template needs to have some logic in it and the view engine itself will not provide an easy way to accomplish this. For example, Underscore templates do not provide a helper method mechanism while Handlebars templates do. A `templateHelpers` attribute can be applied to any View object that renders a template. When this attribute is present its contents will be mixed in to the data object that comes back from the `serializeData` method. This will allow you to create helper methods that can be called from within your templates. This is also a good place to add data not returned from `serializeData`, such as calculated values. ### Basic Example ```html <script id="my-template" type="text/html"> I <%= percent %>% think that <%= showMessage() %> </script> ``` ```js var MyView = Backbone.Marionette.ItemView.extend({ template: "#my-template", templateHelpers: function () { return { showMessage: function(){ return this.name + " is the coolest!"; }, percent: this.model.get('decimal') * 100 }; } }); var model = new Backbone.Model({ name: "Backbone.Marionette", decimal: 1 }); var view = new MyView({ model: model }); view.render(); //=> "I 100% think that Backbone.Marionette is the coolest!"; ``` The `templateHelpers` can also be provided as a constructor parameter for any Marionette view class that supports the helpers. ```js var MyView = Marionette.ItemView.extend({ // ... }); new MyView({ templateHelpers: { doFoo: function(){ /* ... */ } } }); ``` ### Accessing Data Within The Helpers In order to access data from within the helper methods, you need to prefix the data you need with `this`. Doing that will give you all of the methods and attributes of the serialized data object, including the other helper methods. ```js templateHelpers: { something: function(){ return "Do stuff with " + this.name + " because it's awesome."; } } ``` ### Object Or Function As `templateHelpers` You can specify an object literal (as shown above), a reference to an object literal, or a function as the `templateHelpers`. If you specify a function, the function will be invoked with the current view instance as the context of the function. The function must return an object that can be mixed in to the data for the view. ```js Backbone.Marionette.ItemView.extend({ templateHelpers: function(){ return { foo: function(){ /* ... */ } } } }); ``` ## Change Which Template Is Rendered For A View There may be some cases where you need to change the template that is used for a view, based on some simple logic such as the value of a specific attribute in the view's model. To do this, you can provide a `getTemplate` function on your views and use this to return the template that you need. ```js var MyView = Backbone.Marionette.ItemView.extend({ getTemplate: function(){ if (this.model.get("foo")){ return "#some-template"; } else { return "#a-different-template"; } } }); ``` This applies to all view classes.