2013-02-22 06:18:36 +00:00
|
|
|
|
define(['app', 'AddSeries/RootFolders/RootFolderCollection', 'AddSeries/New/SearchResultView', 'Shared/SpinnerView'], function () {
|
2013-02-14 02:28:56 +00:00
|
|
|
|
NzbDrone.AddSeries.New.AddNewSeriesView = Backbone.Marionette.Layout.extend({
|
|
|
|
|
template: 'AddSeries/New/AddNewSeriesTemplate',
|
|
|
|
|
route: 'Series/add/new',
|
2013-01-22 23:58:08 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
ui: {
|
|
|
|
|
seriesSearch: '.search input'
|
|
|
|
|
},
|
2013-01-22 23:58:08 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
regions: {
|
2013-02-15 02:40:29 +00:00
|
|
|
|
searchResult: '#search-result'
|
2013-02-14 02:28:56 +00:00
|
|
|
|
},
|
2013-01-23 00:29:58 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
collection: new NzbDrone.AddSeries.SearchResultCollection(),
|
2013-01-23 00:29:58 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
onRender: function () {
|
|
|
|
|
console.log('binding auto complete');
|
|
|
|
|
var self = this;
|
2013-02-01 03:15:19 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00: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 05:48:22 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
this.resultView = new NzbDrone.AddSeries.SearchResultView({ collection: this.collection });
|
|
|
|
|
},
|
2013-01-27 02:14:42 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
search: function (context) {
|
2013-01-27 02:14:42 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
context.abortExistingRequest();
|
|
|
|
|
|
|
|
|
|
var term = context.ui.seriesSearch.val();
|
|
|
|
|
context.collection.reset();
|
2013-02-01 03:15:19 +00:00
|
|
|
|
|
2013-02-22 06:18:36 +00:00
|
|
|
|
if (term === '') {
|
|
|
|
|
context.searchResult.close();
|
|
|
|
|
} else {
|
2013-02-14 02:28:56 +00:00
|
|
|
|
context.searchResult.show(new NzbDrone.Shared.SpinnerView());
|
2013-01-27 02:14:42 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
context.currentSearchRequest = context.collection.fetch({
|
2013-02-15 02:40:29 +00:00
|
|
|
|
data: { term: term },
|
2013-02-22 06:18:36 +00:00
|
|
|
|
success: function () {
|
2013-02-15 02:40:29 +00:00
|
|
|
|
context.searchResult.show(context.resultView);
|
2013-02-14 02:28:56 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
2013-01-27 02:14:42 +00:00
|
|
|
|
|
2013-02-14 02:28:56 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
abortExistingRequest: function () {
|
|
|
|
|
if (this.currentSearchRequest && this.currentSearchRequest.readyState > 0 && this.currentSearchRequest.readyState < 4) {
|
|
|
|
|
console.log('aborting previous pending search request.');
|
|
|
|
|
this.currentSearchRequest.abort();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|