2013-01-31 23:40:51 +01:00
|
|
|
|
'use strict';
|
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
define([
|
|
|
|
|
'app',
|
|
|
|
|
'AddSeries/RootFolders/RootFolderCollection',
|
|
|
|
|
'Quality/QualityProfileCollection',
|
|
|
|
|
'Shared/NotificationCollection',
|
|
|
|
|
'AddSeries/Existing/UnmappedFolderModel',
|
|
|
|
|
'AddSeries/SearchResultCollection',
|
|
|
|
|
'Series/SeriesModel'],
|
|
|
|
|
function (app, rootFolders, qualityProfileCollection, notificationCollection) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NzbDrone.AddSeries.Existing.FolderMatchResultView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
template:'AddSeries/Existing/FolderMatchResultViewTemplatate',
|
|
|
|
|
|
|
|
|
|
events:{
|
|
|
|
|
'click .x-btn-add':'addSeries'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
addSeries:function () {
|
|
|
|
|
|
|
|
|
|
var seriesId = this.model.get('id');
|
|
|
|
|
var title = this.model.get('seriesName');
|
|
|
|
|
var quality = this.options.qualityProfile.val();
|
|
|
|
|
var path = this.options.rootFolder + "\\" + title;
|
|
|
|
|
|
|
|
|
|
var model = new NzbDrone.Series.SeriesModel({
|
|
|
|
|
seriesId:seriesId,
|
|
|
|
|
title:title,
|
|
|
|
|
qualityProfileId:quality,
|
|
|
|
|
path:path
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
|
|
model.save(undefined, {
|
|
|
|
|
success:function () {
|
|
|
|
|
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
|
|
|
|
title:'Added',
|
|
|
|
|
message:title,
|
|
|
|
|
level:'success'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
notificationCollection.push(notificationModel);
|
|
|
|
|
self.close();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
});
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
NzbDrone.AddSeries.Existing.UnmappedFolderCompositeView = Backbone.Marionette.CompositeView.extend({
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
template:'AddSeries/Existing/UnmappedFolderCompositeViewTemplatate',
|
|
|
|
|
itemViewContainer:'.x-folder-name-match-results',
|
|
|
|
|
itemView:NzbDrone.AddSeries.Existing.FolderMatchResultView,
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
events:{
|
|
|
|
|
'click .x-btn-search':'search'
|
|
|
|
|
},
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
ui:{
|
|
|
|
|
searchButton:'.x-btn-search',
|
|
|
|
|
searchText:'.x-txt-search',
|
|
|
|
|
profileList:'.x-lst-quality-profile'
|
|
|
|
|
},
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
initialize:function () {
|
|
|
|
|
this.collection = new NzbDrone.AddSeries.SearchResultCollection();
|
|
|
|
|
},
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
search:function () {
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
var icon = this.ui.searchButton.find('icon');
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
icon.removeClass('icon-search').addClass('icon-spin icon-spinner disabled');
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
var self = this;
|
2013-02-01 04:15:19 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
this.collection.fetch({
|
|
|
|
|
data:$.param({ term:this.ui.searchText.val() }),
|
|
|
|
|
success:function (model) {
|
|
|
|
|
icon.removeClass('icon-spin icon-spinner disabled').addClass('icon-search');
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
},
|
|
|
|
|
fail:function () {
|
|
|
|
|
icon.removeClass('icon-spin icon-spinner disabled').addClass('icon-search');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
itemViewOptions:function () {
|
|
|
|
|
return {
|
|
|
|
|
qualityProfile:this.ui.profileList,
|
|
|
|
|
rootFolder:this.model.get('rootFolder')
|
|
|
|
|
};
|
|
|
|
|
}
|
2013-02-01 04:15:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
});
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
NzbDrone.AddSeries.Existing.RootFolderCompositeView = Backbone.Marionette.CompositeView.extend({
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
template:"AddSeries/Existing/RootFolderCompositeViewTemplate",
|
|
|
|
|
itemViewContainer:".x-existing-folder-container",
|
|
|
|
|
itemView:NzbDrone.AddSeries.Existing.UnmappedFolderCompositeView,
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
initialize:function () {
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
if (!this.model) {
|
|
|
|
|
throw "model is required.";
|
2013-02-14 03:28:56 +01:00
|
|
|
|
}
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
this.collection = new NzbDrone.AddSeries.Existing.UnmappedFolderCollection();
|
|
|
|
|
this.refreshItems();
|
|
|
|
|
this.listenTo(qualityProfileCollection, 'reset', this.refreshItems, this);
|
|
|
|
|
},
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
refreshItems:function () {
|
|
|
|
|
this.collection.importItems(this.model, qualityProfileCollection);
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-14 03:28:56 +01:00
|
|
|
|
}
|
2013-01-31 23:40:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
});
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
NzbDrone.AddSeries.Existing.ImportSeriesView = Backbone.Marionette.CollectionView.extend({
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
itemView:NzbDrone.AddSeries.Existing.RootFolderCompositeView,
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
initialize:function () {
|
|
|
|
|
this.collection = rootFolders;
|
2013-02-14 03:28:56 +01:00
|
|
|
|
}
|
2013-02-02 04:33:23 +01:00
|
|
|
|
|
2013-02-15 03:40:29 +01:00
|
|
|
|
});
|
2013-02-14 03:28:56 +01:00
|
|
|
|
});
|