2013-06-21 23:24:24 -07:00
|
|
|
'use strict';
|
2013-05-19 21:19:54 -07:00
|
|
|
|
|
|
|
define([
|
|
|
|
'app',
|
2013-06-18 18:02:23 -07:00
|
|
|
'marionette',
|
2013-05-28 19:49:17 -07:00
|
|
|
'Settings/Notifications/EditView',
|
|
|
|
'Settings/Notifications/DeleteView'
|
2013-05-19 21:19:54 -07:00
|
|
|
|
2013-06-18 18:02:23 -07:00
|
|
|
], function (App, Marionette, EditView, DeleteView) {
|
2013-05-19 21:19:54 -07:00
|
|
|
|
2013-06-18 18:02:23 -07:00
|
|
|
return Marionette.ItemView.extend({
|
|
|
|
template: 'Settings/Notifications/ItemTemplate',
|
2013-06-25 17:34:33 -07:00
|
|
|
tagName : 'li',
|
2013-05-19 21:19:54 -07:00
|
|
|
|
2013-05-20 23:16:19 -07:00
|
|
|
events: {
|
2013-06-25 17:34:33 -07:00
|
|
|
'click .x-edit' : '_editNotification',
|
|
|
|
'click .x-delete': '_deleteNotification'
|
2013-05-19 21:19:54 -07:00
|
|
|
},
|
|
|
|
|
2013-06-25 17:34:33 -07:00
|
|
|
initialize: function () {
|
|
|
|
this.listenTo(this.model, 'sync', this.render);
|
|
|
|
},
|
|
|
|
|
|
|
|
_editNotification: function () {
|
2013-06-18 18:02:23 -07:00
|
|
|
var view = new EditView({ model: this.model, notificationCollection: this.model.collection});
|
|
|
|
App.modalRegion.show(view);
|
2013-05-20 23:16:19 -07:00
|
|
|
},
|
2013-05-19 21:19:54 -07:00
|
|
|
|
2013-06-25 17:34:33 -07:00
|
|
|
_deleteNotification: function () {
|
2013-06-18 18:02:23 -07:00
|
|
|
var view = new DeleteView({ model: this.model});
|
|
|
|
App.modalRegion.show(view);
|
2013-05-19 21:19:54 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|