Lidarr/UI/AddSeries/Existing/ImportSeriesView.js

144 lines
4.9 KiB
JavaScript
Raw Normal View History

2013-01-31 22:40:51 +00:00
'use strict';
define([
'app', 'AddSeries/RootFolders/RootFolderCollection', 'Quality/QualityProfileCollection', 'Shared/NotificationCollection', 'AddSeries/Existing/UnmappedFolderModel', 'Series/SeriesModel'], function (app, rootFolders, qualityProfileCollection, notificationCollection) {
2013-03-29 19:17:03 +00:00
NzbDrone.AddSeries.Existing.FolderMatchResultView = Backbone.Marionette.ItemView.extend({
template: 'AddSeries/SearchResultTemplate',
2013-03-29 19:17:03 +00:00
events: {
'click .x-add': 'addSeries'
2013-03-29 19:17:03 +00:00
},
2013-03-29 19:17:03 +00:00
addSeries: function () {
2013-03-29 19:17:03 +00:00
var self = this;
2013-02-15 06:57:01 +00:00
2013-03-29 19:17:03 +00:00
var seriesId = this.model.get('tvDbId');
var title = this.model.get('title');
var quality = this.options.qualityProfile.val();
var path = this.options.folder.path;
2013-03-29 19:17:03 +00:00
var model = new NzbDrone.Series.SeriesModel({
tvDbId : seriesId,
title : title,
qualityProfileId: quality,
path : path
});
2013-03-29 19:17:03 +00:00
var seriesCollection = new NzbDrone.Series.SeriesCollection();
seriesCollection.add(model);
2013-03-29 19:17:03 +00:00
model.save(undefined, {
success: function () {
var notificationModel = new NzbDrone.Shared.NotificationModel({
tvDbId : seriesId,
title : 'Added',
message: title,
level : 'success'
});
2013-03-29 19:17:03 +00:00
notificationCollection.push(notificationModel);
self.close();
}
});
}
});
2013-03-29 19:17:03 +00:00
NzbDrone.AddSeries.Existing.UnmappedFolderCompositeView = Backbone.Marionette.CompositeView.extend({
2013-03-30 19:30:00 +00:00
template : 'AddSeries/Existing/UnmappedFolderCompositeViewTemplate',
2013-03-29 19:17:03 +00:00
itemViewContainer: '.x-folder-name-match-results',
itemView : NzbDrone.AddSeries.Existing.FolderMatchResultView,
2013-03-29 19:17:03 +00:00
events: {
'click .x-btn-search': 'search',
'keydown .x-txt-search': 'keydown'
2013-03-29 19:17:03 +00:00
},
2013-03-29 19:17:03 +00:00
ui: {
searchButton: '.x-btn-search',
searchText : '.x-txt-search',
profileList : '.x-lst-quality-profile'
},
2013-03-29 19:17:03 +00:00
initialize: function () {
this.collection = new NzbDrone.Series.SeriesCollection();
this.collection.bind('reset', this.collectionReset, this);
2013-03-29 19:17:03 +00:00
},
onRender: function () {
this.collection.url = NzbDrone.Constants.ApiRoot + '/series/lookup';
this.resultView = new NzbDrone.AddSeries.SearchResultView({ collection: this.collection });
},
2013-01-31 22:40:51 +00:00
search: function () {
2013-03-29 19:17:03 +00:00
var icon = this.ui.searchButton.find('icon');
2013-01-31 22:40:51 +00:00
this.collection.reset();
2013-03-29 19:17:03 +00:00
icon.removeClass('icon-search').addClass('icon-spin icon-spinner disabled');
2013-01-31 22:40:51 +00:00
2013-03-29 19:17:03 +00:00
this.collection.fetch({
data : { term: this.ui.searchText.val() },
success: function (collection) {
2013-03-29 19:17:03 +00:00
icon.removeClass('icon-spin icon-spinner disabled').addClass('icon-search');
},
fail : function () {
icon.removeClass('icon-spin icon-spinner disabled').addClass('icon-search');
}
});
},
2013-01-31 22:40:51 +00:00
keydown: function (e) {
var code = (e.keyCode ? e.keyCode : e.which);
if(code === 13) {
this.search();
}
},
collectionReset: function () {
_.each(this.collection.models, function (model){
model.set('isExisting', true);
});
},
2013-03-29 19:17:03 +00:00
itemViewOptions: function () {
return {
qualityProfile: this.ui.profileList,
rootFolder : this.model.get('rootFolder'),
folder : this.model.get('folder')
};
}
});
2013-03-29 19:17:03 +00:00
NzbDrone.AddSeries.Existing.RootFolderCompositeView = Backbone.Marionette.CompositeView.extend({
2013-03-29 19:17:03 +00:00
template : "AddSeries/Existing/RootFolderCompositeViewTemplate",
itemViewContainer: ".x-existing-folder-container",
itemView : NzbDrone.AddSeries.Existing.UnmappedFolderCompositeView,
2013-01-31 22:40:51 +00:00
2013-03-29 19:17:03 +00:00
initialize: function () {
2013-03-29 19:17:03 +00:00
if (!this.model) {
throw "model is required.";
}
2013-01-31 22:40:51 +00:00
2013-03-29 19:17:03 +00:00
this.collection = new NzbDrone.AddSeries.Existing.UnmappedFolderCollection();
this.refreshItems();
this.listenTo(qualityProfileCollection, 'reset', this.refreshItems, this);
},
2013-03-29 19:17:03 +00:00
refreshItems: function () {
this.collection.importItems(this.model);
}
});
2013-03-29 19:17:03 +00:00
NzbDrone.AddSeries.Existing.ImportSeriesView = Backbone.Marionette.CollectionView.extend({
2013-03-29 19:17:03 +00:00
itemView: NzbDrone.AddSeries.Existing.RootFolderCompositeView,
2013-03-29 19:17:03 +00:00
initialize: function () {
this.collection = rootFolders;
}
});
2013-03-29 19:17:03 +00:00
});