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.
89 lines
2.7 KiB
89 lines
2.7 KiB
'use strict';
|
|
define(
|
|
[
|
|
'app',
|
|
'marionette',
|
|
'Episode/Search/ButtonsView',
|
|
'Episode/Search/ManualLayout',
|
|
'Release/Collection',
|
|
'Series/SeriesCollection',
|
|
'Shared/LoadingView',
|
|
'Shared/Messenger',
|
|
'Commands/CommandController',
|
|
'Shared/FormatHelpers'
|
|
], function (App, Marionette, ButtonsView, ManualSearchLayout, ReleaseCollection, SeriesCollection, LoadingView, Messenger, CommandController, FormatHelpers) {
|
|
|
|
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 series = SeriesCollection.get(this.model.get('seriesId'));
|
|
var seriesTitle = series.get('title');
|
|
var season = this.model.get('seasonNumber');
|
|
var episode = this.model.get('episodeNumber');
|
|
var message = seriesTitle + ' - ' + season + 'x' + FormatHelpers.pad(episode, 2);
|
|
|
|
Messenger.show({
|
|
message: 'Search started for: ' + message
|
|
});
|
|
|
|
App.vent.trigger(App.Commands.CloseModalCommand);
|
|
},
|
|
|
|
_searchManual: function (e) {
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
var self = this;
|
|
|
|
this.mainView = new LoadingView();
|
|
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();
|
|
}
|
|
});
|
|
|
|
});
|