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