2013-03-29 12:17:03 -07:00
|
|
|
"use strict";
|
2013-05-25 22:54:02 -07:00
|
|
|
define(['app',
|
2013-05-27 19:05:34 -07:00
|
|
|
'AddSeries/RootFolders/RootFolderCollection',
|
|
|
|
'AddSeries/SearchResultView',
|
|
|
|
'Shared/SpinnerView',
|
|
|
|
'AddSeries/Collection'], function () {
|
2013-05-26 19:53:56 -07:00
|
|
|
NzbDrone.AddSeries.AddSeriesView = Backbone.Marionette.Layout.extend({
|
|
|
|
template: 'AddSeries/AddSeriesTemplate',
|
2013-01-22 15:58:08 -08:00
|
|
|
|
2013-02-13 18:28:56 -08:00
|
|
|
ui: {
|
2013-05-26 19:53:56 -07:00
|
|
|
seriesSearch: '.x-series-search'
|
2013-02-13 18:28:56 -08:00
|
|
|
},
|
2013-01-22 15:58:08 -08:00
|
|
|
|
2013-02-13 18:28:56 -08:00
|
|
|
regions: {
|
2013-02-14 18:40:29 -08:00
|
|
|
searchResult: '#search-result'
|
2013-02-13 18:28:56 -08:00
|
|
|
},
|
2013-01-22 16:29:58 -08:00
|
|
|
|
2013-04-12 08:08:09 -07:00
|
|
|
initialize: function () {
|
2013-05-12 21:24:04 -07:00
|
|
|
this.collection = new NzbDrone.AddSeries.Collection();
|
2013-04-12 08:08:09 -07:00
|
|
|
},
|
|
|
|
|
2013-02-13 18:28:56 -08:00
|
|
|
onRender: function () {
|
|
|
|
var self = this;
|
2013-01-31 19:15:19 -08:00
|
|
|
|
2013-02-13 18:28:56 -08:00
|
|
|
this.ui.seriesSearch
|
|
|
|
.data('timeout', null)
|
|
|
|
.keyup(function () {
|
|
|
|
window.clearTimeout(self.$el.data('timeout'));
|
|
|
|
self.$el.data('timeout', window.setTimeout(self.search, 500, self));
|
|
|
|
});
|
2013-01-22 21:48:22 -08:00
|
|
|
|
2013-05-25 22:54:02 -07:00
|
|
|
this.resultView = new NzbDrone.AddSeries.SearchResultCollectionView({ collection: this.collection });
|
2013-02-13 18:28:56 -08:00
|
|
|
},
|
2013-01-26 18:14:42 -08:00
|
|
|
|
2013-02-13 18:28:56 -08:00
|
|
|
search: function (context) {
|
2013-01-26 18:14:42 -08:00
|
|
|
|
2013-02-13 18:28:56 -08:00
|
|
|
context.abortExistingRequest();
|
|
|
|
|
|
|
|
var term = context.ui.seriesSearch.val();
|
|
|
|
context.collection.reset();
|
2013-01-31 19:15:19 -08:00
|
|
|
|
2013-02-21 22:18:36 -08:00
|
|
|
if (term === '') {
|
|
|
|
context.searchResult.close();
|
|
|
|
} else {
|
2013-02-13 18:28:56 -08:00
|
|
|
context.searchResult.show(new NzbDrone.Shared.SpinnerView());
|
2013-01-26 18:14:42 -08:00
|
|
|
|
2013-02-13 18:28:56 -08:00
|
|
|
context.currentSearchRequest = context.collection.fetch({
|
2013-03-29 16:28:58 -07:00
|
|
|
data : { term: term },
|
2013-02-21 22:18:36 -08:00
|
|
|
success: function () {
|
2013-02-14 18:40:29 -08:00
|
|
|
context.searchResult.show(context.resultView);
|
2013-02-13 18:28:56 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
abortExistingRequest: function () {
|
|
|
|
if (this.currentSearchRequest && this.currentSearchRequest.readyState > 0 && this.currentSearchRequest.readyState < 4) {
|
|
|
|
console.log('aborting previous pending search request.');
|
|
|
|
this.currentSearchRequest.abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|