Radarr/UI/Settings/Indexers/CollectionView.js

33 lines
1.2 KiB
JavaScript
Raw Normal View History

2013-05-01 00:01:54 +00:00
'use strict';
2013-05-28 00:19:07 +00:00
define(['app',
'Settings/Indexers/ItemView',
'Settings/Indexers/EditView'],
function () {
2013-05-01 00:01:54 +00:00
NzbDrone.Settings.Indexers.CollectionView = Backbone.Marionette.CompositeView.extend({
itemView : NzbDrone.Settings.Indexers.ItemView,
itemViewContainer : '#x-indexers',
2013-05-28 00:19:07 +00:00
template : 'Settings/Indexers/CollectionTemplate',
events: {
'click .x-add': 'openSchemaModal'
},
openSchemaModal: function () {
//TODO: Is there a better way to deal with changing URLs?
2013-05-28 15:06:36 +00:00
var schemaCollection = new NzbDrone.Settings.Indexers.Collection();
schemaCollection.url = '/api/indexer/schema';
schemaCollection.fetch({
2013-05-28 00:19:07 +00:00
success: function (collection) {
collection.url = '/api/indexer';
var model = _.first(collection.models);
model.set('id', undefined);
model.set('name', '');
var view = new NzbDrone.Settings.Indexers.EditView({ model: model});
NzbDrone.modalRegion.show(view);
}
});
}
2013-05-01 00:01:54 +00:00
});
2013-05-01 06:43:14 +00:00
});