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