2013-01-22 23:58:08 +00:00
|
|
|
|
/// <reference path="../../app.js" />
|
2013-01-23 01:23:27 +00:00
|
|
|
|
/// <reference path="../SearchResultModel.js" />
|
|
|
|
|
/// <reference path="../SearchResultCollection.js" />
|
2013-01-22 23:58:08 +00:00
|
|
|
|
|
2013-01-23 00:29:58 +00:00
|
|
|
|
NzbDrone.AddSeries.SearchItemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
|
|
|
|
|
tagName: 'li',
|
|
|
|
|
template: "AddSeries/AddNewSeries/SearchResultTemplate",
|
|
|
|
|
itemView: NzbDrone.AddSeries.SearchResultModel,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
|
|
|
|
|
|
this.collection = new NzbDrone.AddSeries.SearchResultCollection();
|
|
|
|
|
this.bindTo(this.collection, 'reset', this.render);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
NzbDrone.AddSeries.SearchResultView = Backbone.Marionette.CollectionView.extend({
|
|
|
|
|
|
|
|
|
|
tagName: 'ul',
|
|
|
|
|
className: 'result',
|
|
|
|
|
itemView: NzbDrone.AddSeries.SearchResultModel,
|
|
|
|
|
|
|
|
|
|
collection : new NzbDrone.AddSeries.SearchResultCollection(),
|
|
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
|
//this.collection = new NzbDrone.AddSeries.SearchResultCollection();
|
|
|
|
|
this.listenTo(this.collection, 'reset', this.render);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
NzbDrone.AddSeries.AddNewSeriesView = Backbone.Marionette.Layout.extend({
|
2013-01-22 23:58:08 +00:00
|
|
|
|
template: "AddSeries/AddNewSeries/AddNewSeriesTemplate",
|
|
|
|
|
|
|
|
|
|
ui: {
|
|
|
|
|
seriesSearch: '.search input'
|
|
|
|
|
},
|
|
|
|
|
|
2013-01-23 00:29:58 +00:00
|
|
|
|
regions: {
|
|
|
|
|
searchResult: "#search-result",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
collection: new NzbDrone.AddSeries.SearchResultCollection(),
|
|
|
|
|
|
|
|
|
|
onRender: function () {
|
2013-01-22 23:58:08 +00:00
|
|
|
|
|
|
|
|
|
console.log('binding auto complete');
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
|
|
this.ui.seriesSearch
|
|
|
|
|
.data('timeout', null)
|
2013-01-23 00:29:58 +00:00
|
|
|
|
.keyup(function () {
|
2013-01-22 23:58:08 +00:00
|
|
|
|
clearTimeout(self.$el.data('timeout'));
|
|
|
|
|
self.$el.data('timeout', setTimeout(self.search, 500, self));
|
|
|
|
|
});
|
2013-01-23 00:29:58 +00:00
|
|
|
|
|
|
|
|
|
this.searchResult.show(new NzbDrone.AddSeries.SearchResultView());
|
2013-01-22 23:58:08 +00:00
|
|
|
|
},
|
2013-01-23 00:29:58 +00:00
|
|
|
|
|
|
|
|
|
search: function (context) {
|
2013-01-22 23:58:08 +00:00
|
|
|
|
|
2013-01-23 00:29:58 +00:00
|
|
|
|
var term = context.ui.seriesSearch.val();
|
|
|
|
|
console.log(term);
|
|
|
|
|
context.collection.fetch({ data: $.param({ term: term }) });
|
2013-01-22 23:58:08 +00:00
|
|
|
|
},
|
|
|
|
|
});
|