mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
45 lines
1.6 KiB
JavaScript
45 lines
1.6 KiB
JavaScript
'use strict';
|
|
define(['app',
|
|
'marionette',
|
|
'Settings/Indexers/ItemView',
|
|
'Settings/Indexers/EditView',
|
|
'Settings/Indexers/Collection'],
|
|
function (App, Marionette, IndexerItemView, IndexerEditView, IndexerCollection) {
|
|
return Marionette.CompositeView.extend({
|
|
itemView : IndexerItemView,
|
|
itemViewContainer: '#x-indexers',
|
|
template : 'Settings/Indexers/CollectionTemplate',
|
|
|
|
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 () {
|
|
var self = this;
|
|
//TODO: Is there a better way to deal with changing URLs?
|
|
var schemaCollection = new IndexerCollection();
|
|
schemaCollection.url = '/api/indexer/schema';
|
|
schemaCollection.fetch({
|
|
success: function (collection) {
|
|
collection.url = '/api/indexer';
|
|
var model = _.first(collection.models);
|
|
model.set('id', undefined);
|
|
model.set('name', '');
|
|
|
|
var view = new IndexerEditView({ model: model, indexerCollection: self.collection});
|
|
App.modalRegion.show(view);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|