2013-05-20 04:19:54 +00:00
|
|
|
|
'use strict';
|
2013-05-25 06:38:43 +00:00
|
|
|
|
define(['app', 'Settings/Notifications/ItemView', 'Settings/Notifications/AddView'], function () {
|
2013-05-20 04:19:54 +00:00
|
|
|
|
NzbDrone.Settings.Notifications.CollectionView = Backbone.Marionette.CompositeView.extend({
|
|
|
|
|
itemView : NzbDrone.Settings.Notifications.ItemView,
|
2013-05-21 06:16:19 +00:00
|
|
|
|
itemViewContainer : 'tbody',
|
2013-05-25 06:38:43 +00:00
|
|
|
|
template : 'Settings/Notifications/CollectionTemplate',
|
|
|
|
|
|
|
|
|
|
events: {
|
2013-05-26 00:36:12 +00:00
|
|
|
|
'click .x-add': 'openSchemaModal'
|
|
|
|
|
},
|
2013-05-25 06:38:43 +00:00
|
|
|
|
|
2013-05-26 00:36:12 +00:00
|
|
|
|
openSchemaModal: function () {
|
2013-05-28 15:06:36 +00:00
|
|
|
|
var schemaCollection = new NzbDrone.Settings.Notifications.Collection();
|
|
|
|
|
schemaCollection.url = '/api/notification/schema';
|
|
|
|
|
schemaCollection.fetch();
|
2013-05-29 02:49:17 +00:00
|
|
|
|
schemaCollection.url = '/api/notification';
|
2013-05-26 00:36:12 +00:00
|
|
|
|
|
2013-05-29 02:49:17 +00:00
|
|
|
|
var view = new NzbDrone.Settings.Notifications.AddView({ collection: schemaCollection, notificationCollection: this.collection});
|
2013-05-26 00:36:12 +00:00
|
|
|
|
NzbDrone.modalRegion.show(view);
|
2013-05-25 06:38:43 +00:00
|
|
|
|
}
|
2013-05-20 04:19:54 +00:00
|
|
|
|
});
|
|
|
|
|
});
|