2013-01-30 07:52:31 +01:00
|
|
|
|
'use strict;'
|
|
|
|
|
/// <reference path="../../app.js" />
|
2013-01-27 03:14:42 +01:00
|
|
|
|
/// <reference path="SearchResultView.js" />
|
2013-01-23 01:29:58 +01:00
|
|
|
|
|
|
|
|
|
NzbDrone.AddSeries.AddNewSeriesView = Backbone.Marionette.Layout.extend({
|
2013-01-30 07:52:31 +01:00
|
|
|
|
template: 'AddSeries/AddNewSeries/AddNewSeriesTemplate',
|
|
|
|
|
route: 'Series/add/new',
|
2013-01-23 00:58:08 +01:00
|
|
|
|
|
|
|
|
|
ui: {
|
|
|
|
|
seriesSearch: '.search input'
|
|
|
|
|
},
|
|
|
|
|
|
2013-01-23 01:29:58 +01:00
|
|
|
|
regions: {
|
2013-01-30 07:52:31 +01:00
|
|
|
|
searchResult: '#search-result',
|
2013-01-23 01:29:58 +01:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
collection: new NzbDrone.AddSeries.SearchResultCollection(),
|
|
|
|
|
|
2013-01-27 04:04:15 +01:00
|
|
|
|
initialize: function (options) {
|
|
|
|
|
if (options.rootFolders === undefined) {
|
2013-01-30 07:52:31 +01:00
|
|
|
|
throw 'rootFolder arg. is required.';
|
2013-01-27 03:14:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-27 04:04:15 +01:00
|
|
|
|
if (options.qualityProfiles === undefined) {
|
2013-01-30 07:52:31 +01:00
|
|
|
|
throw 'qualityProfiles arg. is required.';
|
2013-01-27 04:04:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.rootFoldersCollection = options.rootFolders;
|
|
|
|
|
this.qualityProfilesCollection = options.qualityProfiles;
|
2013-01-27 03:14:42 +01:00
|
|
|
|
},
|
2013-01-23 00:58:08 +01:00
|
|
|
|
|
2013-01-26 21:05:08 +01:00
|
|
|
|
onRender: function () {
|
2013-01-23 00:58:08 +01:00
|
|
|
|
console.log('binding auto complete');
|
|
|
|
|
var self = this;
|
2013-01-30 07:52:31 +01:00
|
|
|
|
|
2013-01-23 00:58:08 +01:00
|
|
|
|
this.ui.seriesSearch
|
|
|
|
|
.data('timeout', null)
|
2013-01-23 01:29:58 +01:00
|
|
|
|
.keyup(function () {
|
2013-01-30 07:52:31 +01:00
|
|
|
|
window.clearTimeout(self.$el.data('timeout'));
|
|
|
|
|
self.$el.data('timeout', window.setTimeout(self.search, 500, self));
|
2013-01-23 00:58:08 +01:00
|
|
|
|
});
|
2013-01-23 06:48:22 +01:00
|
|
|
|
|
2013-01-26 21:05:08 +01:00
|
|
|
|
this.resultView = new NzbDrone.AddSeries.SearchResultView({ collection: this.collection });
|
|
|
|
|
|
2013-01-23 00:58:08 +01:00
|
|
|
|
},
|
2013-01-23 06:48:22 +01:00
|
|
|
|
|
2013-01-23 01:29:58 +01:00
|
|
|
|
search: function (context) {
|
2013-01-23 00:58:08 +01:00
|
|
|
|
|
2013-01-23 01:29:58 +01:00
|
|
|
|
var term = context.ui.seriesSearch.val();
|
2013-01-26 21:05:08 +01:00
|
|
|
|
context.collection.reset();
|
|
|
|
|
|
2013-01-30 07:52:31 +01:00
|
|
|
|
if (term !== '') {
|
2013-01-26 21:05:08 +01:00
|
|
|
|
context.searchResult.show(new NzbDrone.Shared.SpinnerView());
|
2013-01-24 02:51:25 +01:00
|
|
|
|
|
2013-01-26 21:05:08 +01:00
|
|
|
|
context.collection.fetch({
|
|
|
|
|
data: $.param({ term: term }),
|
2013-01-27 03:14:42 +01:00
|
|
|
|
success: function (model) {
|
|
|
|
|
context.resultUpdated(model, context);
|
2013-01-26 21:05:08 +01:00
|
|
|
|
}
|
|
|
|
|
});
|
2013-01-27 03:14:42 +01:00
|
|
|
|
|
2013-01-24 02:51:25 +01:00
|
|
|
|
} else {
|
2013-01-26 21:05:08 +01:00
|
|
|
|
context.searchResult.close();
|
2013-01-24 02:51:25 +01:00
|
|
|
|
}
|
2013-01-23 00:58:08 +01:00
|
|
|
|
},
|
2013-01-27 03:14:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
resultUpdated: function (options, context) {
|
|
|
|
|
_.each(options.models, function (model) {
|
2013-01-28 19:06:54 +01:00
|
|
|
|
model.set('rootFolders', context.rootFoldersCollection);
|
|
|
|
|
model.set('qualityProfiles', context.qualityProfilesCollection);
|
2013-01-27 03:14:42 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
context.searchResult.show(context.resultView);
|
|
|
|
|
}
|
2013-01-23 00:58:08 +01:00
|
|
|
|
});
|