mirror of
https://github.com/Radarr/Radarr
synced 2025-12-08 01:15:15 +01:00
29 lines
788 B
JavaScript
29 lines
788 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'marionette',
|
|
'Settings/Indexers/IndexerItemView',
|
|
'Settings/Indexers/Add/IndexerSchemaModal'
|
|
], function (Marionette, ItemView, SchemaModal) {
|
|
return Marionette.CompositeView.extend({
|
|
itemView : ItemView,
|
|
itemViewContainer: '.indexer-list',
|
|
template : 'Settings/Indexers/IndexerCollectionViewTemplate',
|
|
|
|
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);
|
|
}
|
|
});
|
|
});
|