mirror of
https://github.com/Readarr/Readarr
synced 2025-12-22 08:15:49 +01:00
29 lines
835 B
JavaScript
29 lines
835 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'marionette',
|
|
'Settings/DownloadClient/DownloadClientItemView',
|
|
'Settings/DownloadClient/Add/DownloadClientSchemaModal'
|
|
], function (Marionette, ItemView, SchemaModal) {
|
|
return Marionette.CompositeView.extend({
|
|
itemView : ItemView,
|
|
itemViewContainer: '.download-client-list',
|
|
template : 'Settings/DownloadClient/DownloadClientCollectionViewTemplate',
|
|
|
|
ui: {
|
|
'addCard': '.x-add-card'
|
|
},
|
|
|
|
events: {
|
|
'click .x-add-card': '_openSchemaModal'
|
|
},
|
|
|
|
appendHtml: function (collectionView, itemView, index) {
|
|
collectionView.ui.addCard.parent('li').before(itemView.el);
|
|
},
|
|
|
|
_openSchemaModal: function () {
|
|
SchemaModal.open(this.collection);
|
|
}
|
|
});
|
|
});
|