1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Settings/Notifications/ItemView.js

35 lines
919 B
JavaScript
Raw Normal View History

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