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