2013-03-29 20:17:03 +01:00
|
|
|
|
"use strict";
|
|
|
|
|
define(['app', 'AddSeries/RootFolders/RootFolderCollection', 'AddSeries/New/SearchResultView', 'Shared/SpinnerView'], function () {
|
2013-02-14 03:28:56 +01:00
|
|
|
|
NzbDrone.AddSeries.New.AddNewSeriesView = Backbone.Marionette.Layout.extend({
|
|
|
|
|
template: 'AddSeries/New/AddNewSeriesTemplate',
|
2013-03-30 00:28:58 +01:00
|
|
|
|
route : 'Series/add/new',
|
2013-01-23 00:58:08 +01:00
|
|
|
|
|
2013-02-14 03:28:56 +01:00
|
|
|
|
ui: {
|
|
|
|
|
seriesSearch: '.search input'
|
|
|
|
|
},
|
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-02-14 03:28:56 +01:00
|
|
|
|
collection: new NzbDrone.AddSeries.SearchResultCollection(),
|
2013-01-23 01:29:58 +01:00
|
|
|
|
|
2013-02-14 03:28:56 +01:00
|
|
|
|
onRender: function () {
|
|
|
|
|
console.log('binding auto complete');
|
|
|
|
|
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-02-14 03:28:56 +01:00
|
|
|
|
this.resultView = new NzbDrone.AddSeries.SearchResultView({ collection: this.collection });
|
|
|
|
|
},
|
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
|
|
|
|
}
|
|
|
|
|
});
|
2013-01-27 03:14:42 +01:00
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|