2013-05-20 04:19:54 +00:00
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
define([
|
|
|
|
|
'app',
|
2013-05-21 06:16:19 +00:00
|
|
|
|
'Settings/Notifications/Collection',
|
2013-05-29 02:49:17 +00:00
|
|
|
|
'Settings/Notifications/EditView',
|
|
|
|
|
'Settings/Notifications/DeleteView'
|
2013-05-20 04:19:54 +00:00
|
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
|
|
|
|
|
|
NzbDrone.Settings.Notifications.ItemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
template : 'Settings/Notifications/ItemTemplate',
|
2013-05-21 06:16:19 +00:00
|
|
|
|
tagName: 'tr',
|
2013-05-20 04:19:54 +00:00
|
|
|
|
|
2013-05-21 06:16:19 +00:00
|
|
|
|
events: {
|
|
|
|
|
'click .x-edit' : 'edit',
|
2013-05-29 02:49:17 +00:00
|
|
|
|
'click .x-delete': 'deleteNotification'
|
2013-05-20 04:19:54 +00:00
|
|
|
|
},
|
|
|
|
|
|
2013-05-21 06:16:19 +00:00
|
|
|
|
edit: function () {
|
2013-05-29 02:49:17 +00:00
|
|
|
|
var view = new NzbDrone.Settings.Notifications.EditView({ model: this.model, notificationCollection: this.model.collection});
|
2013-05-21 06:16:19 +00:00
|
|
|
|
NzbDrone.modalRegion.show(view);
|
|
|
|
|
},
|
2013-05-20 04:19:54 +00:00
|
|
|
|
|
2013-05-29 02:49:17 +00:00
|
|
|
|
deleteNotification: function () {
|
2013-05-21 06:16:19 +00:00
|
|
|
|
var view = new NzbDrone.Settings.Notifications.DeleteView({ model: this.model});
|
|
|
|
|
NzbDrone.modalRegion.show(view);
|
2013-05-20 04:19:54 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|