-
-
Save djhojd/6713952 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
MedicationView = Backbone.View.extend({ | |
events: { | |
"click #edit": "editMedication" | |
}, | |
editMedication: function(){ | |
var editView = new AddEditView({model: this.model}); | |
editView.render(); | |
} | |
}); |
This file contains hidden or 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
MedicationView = Backbone.View.extend({ | |
events: { | |
"click #edit": "editMedication" | |
}, | |
initialize: function(options){ | |
this.addEditView = options.addEditView; | |
} | |
editMedication: function(){ | |
this.addEditView.render(); | |
} | |
}); | |
// initialize everything here... | |
// 'medicationList' is a collection of medications | |
var addEditView = new AddEditView(...); | |
medicationlist.each(function(med){ | |
new MedicationView({model: med, addEditView: addEditView}); | |
} |
This file contains hidden or 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
MedicationRouter = Backbone.Router.extend({ | |
routes: { | |
"edit/:id": "editMedication" | |
}, | |
editMedication: function(id){ | |
var med = medicationList.get(id); | |
this.addEditView.editMedication(med); | |
} | |
}); | |
AddEditView = Backbone.View.extend({ | |
editMedication: function(medication){ | |
this.model = medication; | |
this.render(); | |
} | |
}); |
This file contains hidden or 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 vent = _.extend({}, Backbone.Events); |
This file contains hidden or 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
AddEditView = Backbone.View.extend({ | |
initialize: function(options){ | |
_.bindAll(this, "editMedication"); | |
options.vent.bind("editMedication", this.editMedication); | |
}, | |
editMedication: function(medication){ | |
this.model = medication; | |
this.render(); | |
} | |
}); | |
MedicationView = Backbone.View.extend({ | |
events: { | |
"click #edit": "editMedication" | |
}, | |
initialize: function(options){ | |
this.vent = options.vent; | |
}, | |
editMedication: function(){ | |
this.vent.trigger("editMedication", this.model); | |
} | |
}); | |
// initialize everything, and tie it all together | |
// with the event aggregator object: vent | |
var vent = _.extend({}, Backbone.Events); | |
var addEditView = new AddEditView({vent: vent}); | |
medicationList.each(function(med){ | |
new MedicationView({model: med, vent: vent}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment