Created
February 20, 2013 10:24
-
-
Save patrick91/4994520 to your computer and use it in GitHub Desktop.
Backbone Marionette View Transition
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var AnimatedRegion = Backbone.Marionette.Region.extend({ | |
show: function(view) { | |
this.ensureEl(); | |
view.render(); | |
this.close(); | |
if (this.currentView && this.currentView !== view) { | |
return; | |
} | |
this.currentView = view; | |
this.open(view, function() { | |
if (view.onShow) { | |
view.onShow(); | |
} | |
view.trigger('show'); | |
if (this.onShow) { | |
this.onShow(view); | |
} | |
this.trigger('view:show', view); | |
}); | |
}, | |
close: function(cb) { | |
var view = this.currentView; | |
delete this.currentView; | |
if (!view) { | |
if (cb) { | |
cb.call(this); | |
} | |
return; | |
} | |
var self = this; | |
function done() { | |
if (view.close) { | |
view.close(); | |
} | |
self.trigger('view:closed', view); | |
if (cb) { | |
cb.call(self); | |
} | |
} | |
if (view.hide) { | |
view.hide(done); | |
} else { | |
done(); | |
} | |
}, | |
open: function(view, cb){ | |
this.$el.append(view.$el); | |
if (view.show) { | |
// TODO: this should be set by the view | |
view.$el.hide(); | |
view.show($.proxy(cb, this)); | |
} else if (cb) { | |
cb.call(this); | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var FadeView = Backbone.Marionette.ItemView.extend({ | |
show: function (done) { | |
this.$el.fadeIn('slow', done); | |
}, | |
hide: function (done) { | |
this.$el.fadeOut('slow', done); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment