2013-01-30 06:52:31 +00:00
|
|
|
|
'use strict';
|
2013-05-23 03:37:43 +00:00
|
|
|
|
define(['app', 'Series/SeriesCollection'], function (app) {
|
2013-02-26 03:58:57 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
NzbDrone.AddSeries.New.SearchItemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
|
2013-05-03 23:09:09 +00:00
|
|
|
|
template: "AddSeries/SearchResultTemplate",
|
2013-02-14 02:28:56 +00:00
|
|
|
|
|
|
|
|
|
ui: {
|
|
|
|
|
qualityProfile: '.x-quality-profile',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
rootFolder : '.x-root-folder',
|
|
|
|
|
addButton : '.x-add'
|
2013-02-14 02:28:56 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
events: {
|
2013-04-07 23:15:04 +00:00
|
|
|
|
'click .x-add': 'addSeries'
|
2013-02-14 02:28:56 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onRender: function () {
|
|
|
|
|
this.listenTo(this.model, 'change', this.render);
|
|
|
|
|
},
|
|
|
|
|
|
2013-04-07 23:15:04 +00:00
|
|
|
|
addSeries: function () {
|
2013-05-23 06:25:58 +00:00
|
|
|
|
var icon = this.ui.addButton.find('icon');
|
|
|
|
|
icon.removeClass('icon-plus').addClass('icon-spin icon-spinner disabled');
|
2013-02-14 02:28:56 +00:00
|
|
|
|
|
|
|
|
|
var quality = this.ui.qualityProfile.val();
|
2013-05-24 04:10:56 +00:00
|
|
|
|
var rootFolderPath = this.ui.rootFolder.children(':selected').text();
|
2013-02-14 02:28:56 +00:00
|
|
|
|
|
2013-03-31 21:45:16 +00:00
|
|
|
|
this.model.set('qualityProfileId', quality);
|
2013-05-24 04:10:56 +00:00
|
|
|
|
this.model.set('rootFolderPath', rootFolderPath);
|
2013-02-14 02:28:56 +00:00
|
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
2013-03-31 21:45:16 +00:00
|
|
|
|
this.model.save(undefined, {
|
2013-05-03 23:09:09 +00:00
|
|
|
|
url : NzbDrone.Series.SeriesCollection.prototype.url,
|
2013-02-14 02:28:56 +00:00
|
|
|
|
success: function () {
|
2013-05-23 06:25:58 +00:00
|
|
|
|
icon.removeClass('icon-spin icon-spinner disabled').addClass('icon-search');
|
2013-05-23 03:37:43 +00:00
|
|
|
|
NzbDrone.Shared.Messenger.show({
|
|
|
|
|
message: 'Added: ' + self.model.get('title')
|
2013-02-14 02:28:56 +00:00
|
|
|
|
});
|
|
|
|
|
|
2013-04-12 15:08:09 +00:00
|
|
|
|
NzbDrone.vent.trigger(NzbDrone.Events.SeriesAdded, { existing: false, series: self.model });
|
2013-05-23 06:25:58 +00:00
|
|
|
|
},
|
|
|
|
|
fail: function () {
|
|
|
|
|
icon.removeClass('icon-spin icon-spinner disabled').addClass('icon-search');
|
2013-02-14 02:28:56 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
NzbDrone.AddSeries.SearchResultView = Backbone.Marionette.CollectionView.extend({
|
2013-01-27 02:14:42 +00:00
|
|
|
|
|
2013-03-29 23:28:58 +00:00
|
|
|
|
itemView : NzbDrone.AddSeries.New.SearchItemView,
|
2013-02-14 02:28:56 +00:00
|
|
|
|
initialize: function () {
|
|
|
|
|
this.listenTo(this.collection, 'reset', this.render);
|
|
|
|
|
}
|
2013-02-22 06:18:36 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
});
|
2013-01-27 02:14:42 +00:00
|
|
|
|
});
|