Radarr/UI/Settings/Indexers/CollectionView.js

47 lines
1.7 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',
2013-06-01 00:22:47 +00:00
'Settings/Indexers/EditView',
'Settings/SyncNotification'],
2013-05-28 00:19:07 +00:00
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'
},
2013-05-29 00:44:29 +00:00
initialize: function () {
NzbDrone.vent.on(NzbDrone.Commands.SaveSettings, this.saveSettings, this);
},
2013-05-28 00:19:07 +00:00
openSchemaModal: function () {
2013-05-29 00:44:29 +00:00
var self = this;
2013-05-28 00:19:07 +00:00
//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', '');
2013-05-29 00:44:29 +00:00
var view = new NzbDrone.Settings.Indexers.EditView({ model: model, indexerCollection: self.collection});
2013-05-28 00:19:07 +00:00
NzbDrone.modalRegion.show(view);
}
});
2013-05-29 00:44:29 +00:00
},
saveSettings: function () {
_.each(this.collection.models, function (model, index, list) {
2013-06-01 00:22:47 +00:00
model.saveIfChanged(NzbDrone.Settings.SyncNotificaiton.callback({
errorMessage: 'Failed to save indexer: ' + model.get('name')
}));
});
2013-05-28 00:19:07 +00:00
}
2013-05-01 00:01:54 +00:00
});
2013-05-01 06:43:14 +00:00
});