mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 20:42:37 +01:00
31 lines
944 B
JavaScript
31 lines
944 B
JavaScript
'use strict';
|
|
define([
|
|
'app',
|
|
'marionette',
|
|
'Settings/Notifications/ItemView',
|
|
'Settings/Notifications/SchemaModal'
|
|
], function (App, Marionette, NotificationItemView, SchemaModal) {
|
|
return Marionette.CompositeView.extend({
|
|
itemView : NotificationItemView,
|
|
itemViewContainer: '.notifications',
|
|
template : 'Settings/Notifications/CollectionTemplate',
|
|
|
|
events: {
|
|
'click .x-add-card': '_openSchemaModal'
|
|
},
|
|
|
|
onAfterItemAdded: function () {
|
|
this.$itemViewContainer.find('.x-add-card').parent('li').remove();
|
|
|
|
this.templateFunction = Marionette.TemplateCache.get('Settings/Notifications/AddCardTemplate');
|
|
var html = this.templateFunction();
|
|
|
|
this.$itemViewContainer.append(html);
|
|
},
|
|
|
|
_openSchemaModal: function () {
|
|
SchemaModal.open(this.collection);
|
|
}
|
|
});
|
|
});
|