You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.5 KiB
86 lines
2.5 KiB
'use strict';
|
|
define(
|
|
[
|
|
'app',
|
|
'marionette',
|
|
'Episode/Search/ButtonsView',
|
|
'Episode/Search/ManualLayout',
|
|
'Release/Collection',
|
|
'Shared/SpinnerView',
|
|
'Shared/Messenger',
|
|
'Commands/CommandController'
|
|
], function (App, Marionette, ButtonsView, ManualSearchLayout, ReleaseCollection, SpinnerView, Messenger, CommandController) {
|
|
|
|
return Marionette.Layout.extend({
|
|
template: 'Episode/Search/LayoutTemplate',
|
|
|
|
regions: {
|
|
main: '#episode-search-region'
|
|
},
|
|
|
|
events: {
|
|
'click .x-search-auto' : '_searchAuto',
|
|
'click .x-search-manual': '_searchManual',
|
|
'click .x-search-back' : '_showButtons'
|
|
},
|
|
|
|
initialize: function () {
|
|
this.mainView = new ButtonsView();
|
|
},
|
|
|
|
onShow: function () {
|
|
this._showMainView();
|
|
},
|
|
|
|
_searchAuto: function (e) {
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
CommandController.Execute('episodeSearch', { episodeId: this.model.get('id') });
|
|
|
|
var seriesTitle = this.model.get('series').get('title');
|
|
var season = this.model.get('seasonNumber');
|
|
var episode = this.model.get('episodeNumber');
|
|
var message = seriesTitle + ' - S' + season.pad(2) + 'E' + episode.pad(2);
|
|
|
|
Messenger.show({
|
|
message: 'Search started for: ' + message
|
|
});
|
|
|
|
App.modalRegion.closeModal();
|
|
},
|
|
|
|
_searchManual: function (e) {
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
var self = this;
|
|
|
|
this.mainView = new SpinnerView();
|
|
this._showMainView();
|
|
|
|
var releases = new ReleaseCollection();
|
|
var promise = releases.fetchEpisodeReleases(this.model.id);
|
|
|
|
promise.done(function () {
|
|
if (!self.isClosed) {
|
|
self.mainView = new ManualSearchLayout({collection: releases});
|
|
self._showMainView();
|
|
}
|
|
});
|
|
},
|
|
|
|
_showMainView: function () {
|
|
this.main.show(this.mainView);
|
|
},
|
|
|
|
_showButtons: function () {
|
|
this.mainView = new ButtonsView();
|
|
this._showMainView();
|
|
}
|
|
});
|
|
|
|
});
|