2013-06-21 23:24:24 -07:00
|
|
|
'use strict';
|
2013-06-24 16:41:59 -07:00
|
|
|
define(
|
|
|
|
[
|
2013-06-28 17:35:21 -07:00
|
|
|
'app',
|
2013-06-24 16:41:59 -07:00
|
|
|
'marionette',
|
2013-07-03 20:04:26 -07:00
|
|
|
'Episode/Search/ButtonsView',
|
2013-06-28 17:35:21 -07:00
|
|
|
'Episode/Search/ManualLayout',
|
|
|
|
'Release/Collection',
|
2013-08-22 19:07:13 -07:00
|
|
|
'Series/SeriesCollection',
|
2013-08-21 21:04:03 -07:00
|
|
|
'Shared/LoadingView',
|
2013-06-28 17:35:21 -07:00
|
|
|
'Shared/Messenger',
|
2013-07-16 23:41:40 -07:00
|
|
|
'Commands/CommandController',
|
|
|
|
'Shared/FormatHelpers'
|
2013-08-22 19:07:13 -07:00
|
|
|
], function (App, Marionette, ButtonsView, ManualSearchLayout, ReleaseCollection, SeriesCollection, LoadingView, Messenger, CommandController, FormatHelpers) {
|
2013-05-14 18:17:24 -07:00
|
|
|
|
2013-06-24 16:41:59 -07:00
|
|
|
return Marionette.Layout.extend({
|
|
|
|
template: 'Episode/Search/LayoutTemplate',
|
2013-05-14 18:17:24 -07:00
|
|
|
|
2013-06-24 16:41:59 -07:00
|
|
|
regions: {
|
2013-06-28 17:35:21 -07:00
|
|
|
main: '#episode-search-region'
|
2013-06-06 17:17:57 -07:00
|
|
|
},
|
2013-06-09 19:16:48 -07:00
|
|
|
|
2013-06-28 17:35:21 -07:00
|
|
|
events: {
|
2013-07-03 20:04:26 -07:00
|
|
|
'click .x-search-auto' : '_searchAuto',
|
|
|
|
'click .x-search-manual': '_searchManual',
|
|
|
|
'click .x-search-back' : '_showButtons'
|
|
|
|
},
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
this.mainView = new ButtonsView();
|
2013-06-28 17:35:21 -07:00
|
|
|
},
|
2013-06-24 16:41:59 -07:00
|
|
|
|
|
|
|
onShow: function () {
|
2013-07-03 20:04:26 -07:00
|
|
|
this._showMainView();
|
2013-06-28 17:35:21 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
_searchAuto: function (e) {
|
|
|
|
if (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
CommandController.Execute('episodeSearch', { episodeId: this.model.get('id') });
|
|
|
|
|
2013-08-22 19:07:13 -07:00
|
|
|
var series = SeriesCollection.get(this.model.get('seriesId'));
|
|
|
|
var seriesTitle = series.get('title');
|
2013-06-28 17:35:21 -07:00
|
|
|
var season = this.model.get('seasonNumber');
|
|
|
|
var episode = this.model.get('episodeNumber');
|
2013-07-16 23:41:40 -07:00
|
|
|
var message = seriesTitle + ' - ' + season + 'x' + FormatHelpers.pad(episode, 2);
|
2013-06-28 17:35:21 -07:00
|
|
|
|
|
|
|
Messenger.show({
|
|
|
|
message: 'Search started for: ' + message
|
|
|
|
});
|
|
|
|
|
2013-07-23 18:15:58 -07:00
|
|
|
App.vent.trigger(App.Commands.CloseModalCommand);
|
2013-06-28 17:35:21 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
_searchManual: function (e) {
|
|
|
|
if (e) {
|
|
|
|
e.preventDefault();
|
2013-06-24 16:41:59 -07:00
|
|
|
}
|
2013-06-28 17:35:21 -07:00
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
2013-08-21 21:04:03 -07:00
|
|
|
this.mainView = new LoadingView();
|
2013-07-03 20:04:26 -07:00
|
|
|
this._showMainView();
|
2013-06-28 17:35:21 -07:00
|
|
|
|
|
|
|
var releases = new ReleaseCollection();
|
|
|
|
var promise = releases.fetchEpisodeReleases(this.model.id);
|
|
|
|
|
|
|
|
promise.done(function () {
|
|
|
|
if (!self.isClosed) {
|
2013-07-03 20:04:26 -07:00
|
|
|
self.mainView = new ManualSearchLayout({collection: releases});
|
|
|
|
self._showMainView();
|
2013-06-28 17:35:21 -07:00
|
|
|
}
|
|
|
|
});
|
2013-07-03 20:04:26 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
_showMainView: function () {
|
|
|
|
this.main.show(this.mainView);
|
|
|
|
},
|
|
|
|
|
|
|
|
_showButtons: function () {
|
|
|
|
this.mainView = new ButtonsView();
|
|
|
|
this._showMainView();
|
2013-06-06 17:17:57 -07:00
|
|
|
}
|
2013-06-24 16:41:59 -07:00
|
|
|
});
|
2013-05-14 18:17:24 -07:00
|
|
|
|
2013-06-24 16:41:59 -07:00
|
|
|
});
|