mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-02 13:04:37 +00:00
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
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',
|
|
|
|
ui: {
|
|
'addCard': '.x-add-card'
|
|
},
|
|
|
|
events: {
|
|
'click .x-add': '_openSchemaModal',
|
|
'click .x-add-card': '_openSchemaModal'
|
|
},
|
|
|
|
onBeforeItemAdded: function () {
|
|
this.ui.addCard.remove();
|
|
},
|
|
|
|
onAfterItemAdded: function () {
|
|
this._appendAddCard();
|
|
},
|
|
|
|
_openSchemaModal: function () {
|
|
SchemaModal.open(this.collection);
|
|
},
|
|
|
|
_appendAddCard: function () {
|
|
this.$itemViewContainer.find('.x-add-card').remove();
|
|
|
|
this.templateFunction = Marionette.TemplateCache.get('Settings/Notifications/AddCardTemplate');
|
|
var html = this.templateFunction();
|
|
|
|
this.$itemViewContainer.append(html);
|
|
}
|
|
});
|
|
});
|