Lidarr/NzbDrone.Web/_backboneApp/AddSeries/AddNewSeries/SearchResultView.js

70 lines
1.8 KiB
JavaScript
Raw Normal View History

2013-01-27 02:14:42 +00:00
/// <reference path="../../app.js" />
/// <reference path="../SearchResultModel.js" />
2013-01-28 18:06:54 +00:00
/// <reference path="../../Series/SeriesModel.js" />
2013-01-27 02:14:42 +00:00
/// <reference path="../SearchResultCollection.js" />
NzbDrone.AddSeries.SearchItemView = Backbone.Marionette.ItemView.extend({
template: "AddSeries/AddNewSeries/SearchResultTemplate",
className: 'search-item accordion-group',
2013-01-28 18:06:54 +00:00
ui: {
qualityProfile: '.x-quality-profile',
rootFolder: '.x-root-folder'
},
events: {
'click .x-add': 'add'
},
2013-01-27 02:14:42 +00:00
onRender: function () {
this.listenTo(this.model, 'change', this.render);
2013-01-28 18:06:54 +00:00
},
add: function () {
var seriesId = this.model.get('id');
var title = this.model.get('seriesName');
var quality = this.ui.qualityProfile.val();
var rootFolderId = this.ui.rootFolder.val();
var rootPath = this.model.get('rootFolders').get(rootFolderId).get('path');
var path = rootPath + "\\" + title;
var model = new NzbDrone.Series.SeriesModel({
seriesId: seriesId,
title: title,
qualityProfileId: quality,
path: path
});
model.save(undefined, {
success: function () {
var notificationModel = new NzbDrone.Shared.NotificationModel({
title: 'Added',
message: title,
level: 'success'
});
NzbDrone.Shared.NotificationCollectionView.Instance.collection.add(notificationModel);
}
});
2013-01-27 02:14:42 +00:00
}
2013-01-28 18:06:54 +00:00
2013-01-27 02:14:42 +00:00
});
NzbDrone.AddSeries.SearchResultView = Backbone.Marionette.CollectionView.extend({
itemView: NzbDrone.AddSeries.SearchItemView,
className: 'accordion',
initialize: function () {
this.listenTo(this.collection, 'reset', this.render);
},
2013-01-27 02:14:42 +00:00
});