mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 09:03:49 -07:00
Add notification card
This commit is contained in:
parent
f4e27002f9
commit
d7c70a9c91
4 changed files with 48 additions and 6 deletions
|
@ -10,12 +10,34 @@ define([
|
|||
itemViewContainer: '.notifications',
|
||||
template : 'Settings/Notifications/CollectionTemplate',
|
||||
|
||||
ui: {
|
||||
'addCard': '.x-add-card'
|
||||
},
|
||||
|
||||
events: {
|
||||
'click .x-add': '_openSchemaModal'
|
||||
'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);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue