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