You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
'use strict';
|
|
define(['app', 'Shared/NotificationCollection', 'Series/SeriesCollection'], function (app, notificationCollection) {
|
|
|
|
NzbDrone.AddSeries.New.SearchItemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
template : "AddSeries/SearchResultTemplate",
|
|
|
|
ui: {
|
|
qualityProfile: '.x-quality-profile',
|
|
rootFolder : '.x-root-folder',
|
|
addButton : '.x-add'
|
|
},
|
|
|
|
events: {
|
|
'click .x-add': 'addSeries'
|
|
},
|
|
|
|
onRender: function () {
|
|
this.listenTo(this.model, 'change', this.render);
|
|
},
|
|
|
|
addSeries: function () {
|
|
|
|
var quality = this.ui.qualityProfile.val();
|
|
|
|
//Todo: This will create an invalid path on linux...
|
|
var rootPath = this.ui.rootFolder.find(":selected").text();
|
|
var path = rootPath + "\\" + this.model.get('title');
|
|
|
|
this.model.set('qualityProfileId', quality);
|
|
this.model.set('path', path);
|
|
|
|
var self = this;
|
|
|
|
this.model.save(undefined, {
|
|
success: function () {
|
|
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
|
title : 'Added',
|
|
message: self.model.get('title'),
|
|
level : 'success'
|
|
});
|
|
|
|
notificationCollection.push(notificationModel);
|
|
self.close();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
NzbDrone.AddSeries.SearchResultView = Backbone.Marionette.CollectionView.extend({
|
|
|
|
itemView : NzbDrone.AddSeries.New.SearchItemView,
|
|
initialize: function () {
|
|
this.listenTo(this.collection, 'reset', this.render);
|
|
}
|
|
|
|
});
|
|
});
|