2013-01-23 00:58:08 +01:00
|
|
|
|
/// <reference path="../../app.js" />
|
2013-01-23 02:23:27 +01:00
|
|
|
|
/// <reference path="../SearchResultModel.js" />
|
|
|
|
|
/// <reference path="../SearchResultCollection.js" />
|
2013-01-23 00:58:08 +01:00
|
|
|
|
|
2013-01-23 01:29:58 +01:00
|
|
|
|
NzbDrone.AddSeries.SearchItemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
|
|
|
|
|
template: "AddSeries/AddNewSeries/SearchResultTemplate",
|
2013-01-25 20:04:37 +01:00
|
|
|
|
className: 'well',
|
2013-01-23 06:48:22 +01:00
|
|
|
|
onRender: function () {
|
|
|
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-23 01:29:58 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
NzbDrone.AddSeries.SearchResultView = Backbone.Marionette.CollectionView.extend({
|
|
|
|
|
|
2013-01-23 06:48:22 +01:00
|
|
|
|
itemView: NzbDrone.AddSeries.SearchItemView,
|
2013-01-23 01:29:58 +01:00
|
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
|
this.listenTo(this.collection, 'reset', this.render);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
NzbDrone.AddSeries.AddNewSeriesView = Backbone.Marionette.Layout.extend({
|
2013-01-23 00:58:08 +01:00
|
|
|
|
template: "AddSeries/AddNewSeries/AddNewSeriesTemplate",
|
2013-01-25 01:02:53 +01:00
|
|
|
|
route : "Series/add/new",
|
2013-01-23 00:58:08 +01:00
|
|
|
|
|
|
|
|
|
ui: {
|
|
|
|
|
seriesSearch: '.search input'
|
|
|
|
|
},
|
|
|
|
|
|
2013-01-23 01:29:58 +01:00
|
|
|
|
regions: {
|
|
|
|
|
searchResult: "#search-result",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
collection: new NzbDrone.AddSeries.SearchResultCollection(),
|
|
|
|
|
|
|
|
|
|
onRender: function () {
|
2013-01-23 00:58:08 +01:00
|
|
|
|
|
2013-01-25 01:02:53 +01:00
|
|
|
|
//NzbDrone.Router.navigate(this.route, { trigger: true });
|
2013-01-23 00:58:08 +01:00
|
|
|
|
console.log('binding auto complete');
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
|
|
this.ui.seriesSearch
|
|
|
|
|
.data('timeout', null)
|
2013-01-23 01:29:58 +01:00
|
|
|
|
.keyup(function () {
|
2013-01-23 00:58:08 +01:00
|
|
|
|
clearTimeout(self.$el.data('timeout'));
|
|
|
|
|
self.$el.data('timeout', setTimeout(self.search, 500, self));
|
|
|
|
|
});
|
2013-01-23 06:48:22 +01:00
|
|
|
|
|
|
|
|
|
this.searchResult.show(new NzbDrone.AddSeries.SearchResultView({ collection: this.collection }));
|
2013-01-23 00:58:08 +01:00
|
|
|
|
},
|
2013-01-23 06:48:22 +01:00
|
|
|
|
|
2013-01-23 01:29:58 +01:00
|
|
|
|
search: function (context) {
|
2013-01-23 00:58:08 +01:00
|
|
|
|
|
2013-01-23 01:29:58 +01:00
|
|
|
|
var term = context.ui.seriesSearch.val();
|
2013-01-24 02:51:25 +01:00
|
|
|
|
|
|
|
|
|
if (term == "") {
|
|
|
|
|
context.collection.reset();
|
|
|
|
|
} else {
|
|
|
|
|
console.log(term);
|
|
|
|
|
context.collection.fetch({ data: $.param({ term: term }) });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-01-23 00:58:08 +01:00
|
|
|
|
},
|
|
|
|
|
});
|