Sonarr/UI/AddSeries/AddSeriesView.js

132 lines
4.3 KiB
JavaScript
Raw Normal View History

'use strict';
2013-06-21 01:43:58 +00:00
define(
[
2013-06-30 19:57:26 +00:00
'app',
2013-06-21 01:43:58 +00:00
'marionette',
'AddSeries/Collection',
'AddSeries/SearchResultCollectionView',
'AddSeries/NotFoundView',
'Shared/LoadingView',
2013-09-18 05:24:27 +00:00
'underscore'
], function (App, Marionette, AddSeriesCollection, SearchResultCollectionView, NotFoundView, LoadingView, _) {
2013-06-21 01:43:58 +00:00
return Marionette.Layout.extend({
template: 'AddSeries/AddSeriesTemplate',
2013-06-30 19:57:26 +00:00
regions: {
searchResult: '#search-result'
},
2013-06-21 01:43:58 +00:00
ui: {
seriesSearch: '.x-series-search',
searchBar : '.x-search-bar',
loadMore : '.x-load-more'
2013-06-21 01:43:58 +00:00
},
2013-06-30 19:57:26 +00:00
events: {
'click .x-load-more': '_onLoadMore'
2013-06-21 01:43:58 +00:00
},
initialize: function (options) {
this.isExisting = options.isExisting;
2013-09-18 05:24:27 +00:00
this.collection = new AddSeriesCollection();
if (this.isExisting) {
this.collection.unmappedFolderModel = this.model;
}
2013-06-30 19:57:26 +00:00
if (this.isExisting) {
this.className = 'existing-series';
this.listenTo(App.vent, App.Events.SeriesAdded, this._onSeriesAdded);
}
else {
this.className = 'new-series';
}
this.listenTo(this.collection, 'sync', this._showResults);
2013-09-18 05:24:27 +00:00
this.resultCollectionView = new SearchResultCollectionView({
collection: this.collection,
isExisting: this.isExisting
});
this.throttledSearch = _.debounce(this.search, 1000, {trailing: true}).bind(this);
2013-06-30 19:57:26 +00:00
},
_onSeriesAdded: function (options) {
2013-09-18 05:24:27 +00:00
if (this.isExisting && options.series.get('path') === this.model.get('folder').path) {
2013-06-30 19:57:26 +00:00
this.close();
}
2013-06-21 01:43:58 +00:00
},
2013-09-18 05:24:27 +00:00
_onLoadMore: function () {
var showingAll = this.resultCollectionView.showMore();
2013-09-18 19:43:37 +00:00
this.ui.searchBar.show();
2013-09-18 05:24:27 +00:00
if (showingAll) {
this.ui.loadMore.hide();
}
},
2013-06-21 01:43:58 +00:00
onRender: function () {
var self = this;
2013-06-30 19:57:26 +00:00
this.$el.addClass(this.className);
2013-09-18 05:24:27 +00:00
this.ui.seriesSearch.keyup(function () {
self.searchResult.close();
self._abortExistingSearch();
self.throttledSearch({
term: self.ui.seriesSearch.val()
})
});
if (this.isExisting) {
this.ui.searchBar.hide();
}
2013-09-18 05:24:27 +00:00
},
2013-09-18 05:24:27 +00:00
onShow: function () {
this.searchResult.show(this.resultCollectionView);
2013-06-21 01:43:58 +00:00
},
2013-01-27 02:14:42 +00:00
search: function (options) {
this.collection.reset();
2013-02-01 03:15:19 +00:00
2013-09-18 05:24:27 +00:00
if (!options.term || options.term === this.collection.term) {
2013-09-18 19:43:37 +00:00
return $.Deferred().resolve();
2013-06-21 01:43:58 +00:00
}
2013-09-18 05:24:27 +00:00
this.searchResult.show(new LoadingView());
this.collection.term = options.term;
this.currentSearchPromise = this.collection.fetch({
data: { term: options.term }
});
2013-09-18 19:43:37 +00:00
return this.currentSearchPromise;
2013-06-21 01:43:58 +00:00
},
_showResults: function () {
if (!this.isClosed) {
if (this.collection.length === 0) {
this.searchResult.show(new NotFoundView({term: this.collection.term}));
}
else {
this.searchResult.show(this.resultCollectionView);
if (!this.showingAll && this.isExisting) {
this.ui.loadMore.show();
}
}
}
},
2013-09-18 05:24:27 +00:00
_abortExistingSearch: function () {
2013-06-30 19:57:26 +00:00
if (this.currentSearchPromise && this.currentSearchPromise.readyState > 0 && this.currentSearchPromise.readyState < 4) {
2013-06-21 01:43:58 +00:00
console.log('aborting previous pending search request.');
2013-06-30 19:57:26 +00:00
this.currentSearchPromise.abort();
2013-06-21 01:43:58 +00:00
}
}
2013-06-21 01:43:58 +00:00
});
});