Lidarr/UI/AddSeries/New/SearchResultView.js

60 lines
1.8 KiB
JavaScript
Raw Normal View History

'use strict';
define(['app', 'Shared/NotificationCollection', 'AddSeries/SearchResultCollection', 'AddSeries/SearchResultModel', 'Series/SeriesCollection'], function (app, notificationCollection) {
NzbDrone.AddSeries.New.SearchItemView = Backbone.Marionette.ItemView.extend({
template : "AddSeries/SearchResultTemplate",
className: 'search-item',
ui: {
qualityProfile: '.x-quality-profile',
rootFolder : '.x-root-folder',
addButton : '.x-add'
},
events: {
'click .x-add': 'add'
},
onRender: function () {
this.listenTo(this.model, 'change', this.render);
},
add: function () {
var quality = this.ui.qualityProfile.val();
2013-02-22 06:18:36 +00:00
//Todo: This will create an invalid path on linux...
2013-03-31 21:45:16 +00:00
var rootPath = this.ui.rootFolder.find(":selected").text();
var path = rootPath + "\\" + this.model.get('title');
2013-03-31 21:45:16 +00:00
this.model.set('qualityProfileId', quality);
this.model.set('path', path);
var self = this;
2013-03-31 21:45:16 +00:00
this.model.save(undefined, {
success: function () {
var notificationModel = new NzbDrone.Shared.NotificationModel({
title : 'Added',
2013-03-31 21:45:16 +00:00
message: self.model.get('title'),
level : 'success'
});
notificationCollection.push(notificationModel);
self.close();
}
});
}
});
NzbDrone.AddSeries.SearchResultView = Backbone.Marionette.CollectionView.extend({
2013-01-27 02:14:42 +00:00
itemView : NzbDrone.AddSeries.New.SearchItemView,
initialize: function () {
this.listenTo(this.collection, 'reset', this.render);
}
2013-02-22 06:18:36 +00:00
});
2013-01-27 02:14:42 +00:00
});