mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fixed: Searching from missing won't trigger spinner on both buttons
Some formatting updates
This commit is contained in:
parent
e7683642dd
commit
2fdb0513e8
4
src/UI/.idea/codeStyleSettings.xml
generated
4
src/UI/.idea/codeStyleSettings.xml
generated
@ -17,6 +17,7 @@
|
|||||||
<option name="VALUE_ALIGNMENT" value="1" />
|
<option name="VALUE_ALIGNMENT" value="1" />
|
||||||
</CssCodeStyleSettings>
|
</CssCodeStyleSettings>
|
||||||
<JSCodeStyleSettings>
|
<JSCodeStyleSettings>
|
||||||
|
<option name="SPACE_BEFORE_PROPERTY_COLON" value="true" />
|
||||||
<option name="ALIGN_OBJECT_PROPERTIES" value="2" />
|
<option name="ALIGN_OBJECT_PROPERTIES" value="2" />
|
||||||
</JSCodeStyleSettings>
|
</JSCodeStyleSettings>
|
||||||
<XML>
|
<XML>
|
||||||
@ -33,8 +34,7 @@
|
|||||||
<option name="ELSE_ON_NEW_LINE" value="true" />
|
<option name="ELSE_ON_NEW_LINE" value="true" />
|
||||||
<option name="CATCH_ON_NEW_LINE" value="true" />
|
<option name="CATCH_ON_NEW_LINE" value="true" />
|
||||||
<option name="FINALLY_ON_NEW_LINE" value="true" />
|
<option name="FINALLY_ON_NEW_LINE" value="true" />
|
||||||
<option name="ALIGN_MULTILINE_PARAMETERS" value="false" />
|
<option name="SPACE_BEFORE_METHOD_PARENTHESES" value="true" />
|
||||||
<option name="SPACE_AFTER_COLON" value="false" />
|
|
||||||
<option name="METHOD_PARAMETERS_WRAP" value="5" />
|
<option name="METHOD_PARAMETERS_WRAP" value="5" />
|
||||||
<option name="ARRAY_INITIALIZER_WRAP" value="2" />
|
<option name="ARRAY_INITIALIZER_WRAP" value="2" />
|
||||||
<option name="IF_BRACE_FORCE" value="3" />
|
<option name="IF_BRACE_FORCE" value="3" />
|
||||||
|
@ -33,6 +33,10 @@ define(
|
|||||||
this.$el.addClass('btn-icon-only');
|
this.$el.addClass('btn-icon-only');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.model.get('className')) {
|
||||||
|
this.$el.addClass(this.model.get('className'));
|
||||||
|
}
|
||||||
|
|
||||||
var command = this.model.get('command');
|
var command = this.model.get('command');
|
||||||
if (command) {
|
if (command) {
|
||||||
var properties = _.extend({ name: command }, this.model.get('properties'));
|
var properties = _.extend({ name: command }, this.model.get('properties'));
|
||||||
|
@ -1,207 +1,202 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
define(
|
define([
|
||||||
[
|
'underscore',
|
||||||
'underscore',
|
'marionette',
|
||||||
'marionette',
|
'backgrid',
|
||||||
'backgrid',
|
'Wanted/Cutoff/CutoffUnmetCollection',
|
||||||
'Wanted/Cutoff/CutoffUnmetCollection',
|
'Cells/SeriesTitleCell',
|
||||||
'Cells/SeriesTitleCell',
|
'Cells/EpisodeNumberCell',
|
||||||
'Cells/EpisodeNumberCell',
|
'Cells/EpisodeTitleCell',
|
||||||
'Cells/EpisodeTitleCell',
|
'Cells/RelativeDateCell',
|
||||||
'Cells/RelativeDateCell',
|
'Cells/EpisodeStatusCell',
|
||||||
'Cells/EpisodeStatusCell',
|
'Shared/Grid/Pager',
|
||||||
'Shared/Grid/Pager',
|
'Shared/Toolbar/ToolbarLayout',
|
||||||
'Shared/Toolbar/ToolbarLayout',
|
'Shared/LoadingView',
|
||||||
'Shared/LoadingView',
|
'Shared/Messenger',
|
||||||
'Shared/Messenger',
|
'Commands/CommandController',
|
||||||
'Commands/CommandController',
|
'backgrid.selectall'
|
||||||
'backgrid.selectall'
|
], function (_,
|
||||||
], function (_,
|
Marionette,
|
||||||
Marionette,
|
Backgrid,
|
||||||
Backgrid,
|
CutoffUnmetCollection,
|
||||||
CutoffUnmetCollection,
|
SeriesTitleCell,
|
||||||
SeriesTitleCell,
|
EpisodeNumberCell,
|
||||||
EpisodeNumberCell,
|
EpisodeTitleCell,
|
||||||
EpisodeTitleCell,
|
RelativeDateCell,
|
||||||
RelativeDateCell,
|
EpisodeStatusCell,
|
||||||
EpisodeStatusCell,
|
GridPager,
|
||||||
GridPager,
|
ToolbarLayout,
|
||||||
ToolbarLayout,
|
LoadingView,
|
||||||
LoadingView,
|
Messenger,
|
||||||
Messenger,
|
CommandController) {
|
||||||
CommandController) {
|
return Marionette.Layout.extend({
|
||||||
return Marionette.Layout.extend({
|
template : 'Wanted/Cutoff/CutoffUnmetLayoutTemplate',
|
||||||
template: 'Wanted/Cutoff/CutoffUnmetLayoutTemplate',
|
|
||||||
|
|
||||||
regions: {
|
regions : {
|
||||||
cutoff : '#x-cutoff-unmet',
|
cutoff : '#x-cutoff-unmet',
|
||||||
toolbar : '#x-toolbar',
|
toolbar : '#x-toolbar',
|
||||||
pager : '#x-pager'
|
pager : '#x-pager'
|
||||||
|
},
|
||||||
|
|
||||||
|
ui : {
|
||||||
|
searchSelectedButton : '.btn i.icon-search'
|
||||||
|
},
|
||||||
|
|
||||||
|
columns : [
|
||||||
|
{
|
||||||
|
name : '',
|
||||||
|
cell : 'select-row',
|
||||||
|
headerCell : 'select-all',
|
||||||
|
sortable : false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
ui: {
|
name : 'series',
|
||||||
searchSelectedButton: '.btn i.icon-search'
|
label : 'Series Title',
|
||||||
|
sortable : false,
|
||||||
|
cell : SeriesTitleCell
|
||||||
},
|
},
|
||||||
|
{
|
||||||
columns:
|
name : 'this',
|
||||||
[
|
label : 'Episode',
|
||||||
{
|
sortable : false,
|
||||||
name : '',
|
cell : EpisodeNumberCell
|
||||||
cell : 'select-row',
|
|
||||||
headerCell: 'select-all',
|
|
||||||
sortable : false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'series',
|
|
||||||
label : 'Series Title',
|
|
||||||
sortable : false,
|
|
||||||
cell : SeriesTitleCell
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'this',
|
|
||||||
label : 'Episode',
|
|
||||||
sortable : false,
|
|
||||||
cell : EpisodeNumberCell
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'this',
|
|
||||||
label : 'Episode Title',
|
|
||||||
sortable : false,
|
|
||||||
cell : EpisodeTitleCell,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'airDateUtc',
|
|
||||||
label : 'Air Date',
|
|
||||||
cell : RelativeDateCell
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'status',
|
|
||||||
label : 'Status',
|
|
||||||
cell : EpisodeStatusCell,
|
|
||||||
sortable: false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
|
|
||||||
initialize: function () {
|
|
||||||
this.collection = new CutoffUnmetCollection();
|
|
||||||
|
|
||||||
this.listenTo(this.collection, 'sync', this._showTable);
|
|
||||||
},
|
},
|
||||||
|
{
|
||||||
onShow: function () {
|
name : 'this',
|
||||||
this.cutoff.show(new LoadingView());
|
label : 'Episode Title',
|
||||||
this._showToolbar();
|
sortable : false,
|
||||||
this.collection.fetch();
|
cell : EpisodeTitleCell
|
||||||
},
|
},
|
||||||
|
{
|
||||||
_showTable: function () {
|
name : 'airDateUtc',
|
||||||
this.cutoffGrid = new Backgrid.Grid({
|
label : 'Air Date',
|
||||||
columns : this.columns,
|
cell : RelativeDateCell
|
||||||
collection: this.collection,
|
|
||||||
className : 'table table-hover'
|
|
||||||
});
|
|
||||||
|
|
||||||
this.cutoff.show(this.cutoffGrid);
|
|
||||||
|
|
||||||
this.pager.show(new GridPager({
|
|
||||||
columns : this.columns,
|
|
||||||
collection: this.collection
|
|
||||||
}));
|
|
||||||
},
|
},
|
||||||
|
{
|
||||||
_showToolbar: function () {
|
name : 'status',
|
||||||
var leftSideButtons = {
|
label : 'Status',
|
||||||
type : 'default',
|
cell : EpisodeStatusCell,
|
||||||
storeState: false,
|
sortable : false
|
||||||
items :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
title: 'Search Selected',
|
|
||||||
icon : 'icon-search',
|
|
||||||
callback: this._searchSelected,
|
|
||||||
ownerContext: this
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Season Pass',
|
|
||||||
icon : 'icon-bookmark',
|
|
||||||
route: 'seasonpass'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
var filterOptions = {
|
|
||||||
type : 'radio',
|
|
||||||
storeState : false,
|
|
||||||
menuKey : 'wanted.filterMode',
|
|
||||||
defaultAction : 'monitored',
|
|
||||||
items :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
key : 'monitored',
|
|
||||||
title : '',
|
|
||||||
tooltip : 'Monitored Only',
|
|
||||||
icon : 'icon-nd-monitored',
|
|
||||||
callback : this._setFilter
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key : 'unmonitored',
|
|
||||||
title : '',
|
|
||||||
tooltip : 'Unmonitored Only',
|
|
||||||
icon : 'icon-nd-unmonitored',
|
|
||||||
callback : this._setFilter
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
this.toolbar.show(new ToolbarLayout({
|
|
||||||
left :
|
|
||||||
[
|
|
||||||
leftSideButtons
|
|
||||||
],
|
|
||||||
right :
|
|
||||||
[
|
|
||||||
filterOptions
|
|
||||||
],
|
|
||||||
context: this
|
|
||||||
}));
|
|
||||||
|
|
||||||
CommandController.bindToCommand({
|
|
||||||
element: this.$('.x-toolbar-left-1 .btn i.icon-search'),
|
|
||||||
command: {
|
|
||||||
name: 'episodeSearch'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
_setFilter: function(buttonContext) {
|
|
||||||
var mode = buttonContext.model.get('key');
|
|
||||||
|
|
||||||
this.collection.state.currentPage = 1;
|
|
||||||
var promise = this.collection.setFilterMode(mode);
|
|
||||||
|
|
||||||
if (buttonContext) {
|
|
||||||
buttonContext.ui.icon.spinForPromise(promise);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_searchSelected: function () {
|
|
||||||
var selected = this.cutoffGrid.getSelectedModels();
|
|
||||||
|
|
||||||
if (selected.length === 0) {
|
|
||||||
Messenger.show({
|
|
||||||
type: 'error',
|
|
||||||
message: 'No episodes selected'
|
|
||||||
});
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var ids = _.pluck(selected, 'id');
|
|
||||||
|
|
||||||
CommandController.Execute('episodeSearch', {
|
|
||||||
name : 'episodeSearch',
|
|
||||||
episodeIds: ids
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
],
|
||||||
|
|
||||||
|
initialize : function () {
|
||||||
|
this.collection = new CutoffUnmetCollection();
|
||||||
|
|
||||||
|
this.listenTo(this.collection, 'sync', this._showTable);
|
||||||
|
},
|
||||||
|
|
||||||
|
onShow : function () {
|
||||||
|
this.cutoff.show(new LoadingView());
|
||||||
|
this._showToolbar();
|
||||||
|
this.collection.fetch();
|
||||||
|
},
|
||||||
|
|
||||||
|
_showTable : function () {
|
||||||
|
this.cutoffGrid = new Backgrid.Grid({
|
||||||
|
columns : this.columns,
|
||||||
|
collection : this.collection,
|
||||||
|
className : 'table table-hover'
|
||||||
|
});
|
||||||
|
|
||||||
|
this.cutoff.show(this.cutoffGrid);
|
||||||
|
|
||||||
|
this.pager.show(new GridPager({
|
||||||
|
columns : this.columns,
|
||||||
|
collection : this.collection
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
|
||||||
|
_showToolbar : function () {
|
||||||
|
var leftSideButtons = {
|
||||||
|
type : 'default',
|
||||||
|
storeState : false,
|
||||||
|
items : [
|
||||||
|
{
|
||||||
|
title : 'Search Selected',
|
||||||
|
icon : 'icon-search',
|
||||||
|
callback : this._searchSelected,
|
||||||
|
ownerContext : this,
|
||||||
|
className : 'x-search-selected'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title : 'Season Pass',
|
||||||
|
icon : 'icon-bookmark',
|
||||||
|
route : 'seasonpass'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
var filterOptions = {
|
||||||
|
type : 'radio',
|
||||||
|
storeState : false,
|
||||||
|
menuKey : 'wanted.filterMode',
|
||||||
|
defaultAction : 'monitored',
|
||||||
|
items : [
|
||||||
|
{
|
||||||
|
key : 'monitored',
|
||||||
|
title : '',
|
||||||
|
tooltip : 'Monitored Only',
|
||||||
|
icon : 'icon-nd-monitored',
|
||||||
|
callback : this._setFilter
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key : 'unmonitored',
|
||||||
|
title : '',
|
||||||
|
tooltip : 'Unmonitored Only',
|
||||||
|
icon : 'icon-nd-unmonitored',
|
||||||
|
callback : this._setFilter
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
this.toolbar.show(new ToolbarLayout({
|
||||||
|
left : [
|
||||||
|
leftSideButtons
|
||||||
|
],
|
||||||
|
right : [
|
||||||
|
filterOptions
|
||||||
|
],
|
||||||
|
context : this
|
||||||
|
}));
|
||||||
|
|
||||||
|
CommandController.bindToCommand({
|
||||||
|
element : this.$('.x-search-selected'),
|
||||||
|
command : {
|
||||||
|
name : 'episodeSearch'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_setFilter : function (buttonContext) {
|
||||||
|
var mode = buttonContext.model.get('key');
|
||||||
|
|
||||||
|
this.collection.state.currentPage = 1;
|
||||||
|
var promise = this.collection.setFilterMode(mode);
|
||||||
|
|
||||||
|
if (buttonContext) {
|
||||||
|
buttonContext.ui.icon.spinForPromise(promise);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_searchSelected : function () {
|
||||||
|
var selected = this.cutoffGrid.getSelectedModels();
|
||||||
|
|
||||||
|
if (selected.length === 0) {
|
||||||
|
Messenger.show({
|
||||||
|
type : 'error',
|
||||||
|
message : 'No episodes selected'
|
||||||
|
});
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var ids = _.pluck(selected, 'id');
|
||||||
|
|
||||||
|
CommandController.Execute('episodeSearch', {
|
||||||
|
name : 'episodeSearch',
|
||||||
|
episodeIds : ids
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
@ -1,231 +1,233 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
define(
|
define([
|
||||||
[
|
'underscore',
|
||||||
'underscore',
|
'marionette',
|
||||||
'marionette',
|
'backgrid',
|
||||||
'backgrid',
|
'Wanted/Missing/MissingCollection',
|
||||||
'Wanted/Missing/MissingCollection',
|
'Cells/SeriesTitleCell',
|
||||||
'Cells/SeriesTitleCell',
|
'Cells/EpisodeNumberCell',
|
||||||
'Cells/EpisodeNumberCell',
|
'Cells/EpisodeTitleCell',
|
||||||
'Cells/EpisodeTitleCell',
|
'Cells/RelativeDateCell',
|
||||||
'Cells/RelativeDateCell',
|
'Cells/EpisodeStatusCell',
|
||||||
'Cells/EpisodeStatusCell',
|
'Shared/Grid/Pager',
|
||||||
'Shared/Grid/Pager',
|
'Shared/Toolbar/ToolbarLayout',
|
||||||
'Shared/Toolbar/ToolbarLayout',
|
'Shared/LoadingView',
|
||||||
'Shared/LoadingView',
|
'Shared/Messenger',
|
||||||
'Shared/Messenger',
|
'Commands/CommandController',
|
||||||
'Commands/CommandController',
|
'backgrid.selectall'
|
||||||
'backgrid.selectall'
|
], function (_,
|
||||||
], function (_,
|
Marionette,
|
||||||
Marionette,
|
Backgrid,
|
||||||
Backgrid,
|
MissingCollection,
|
||||||
MissingCollection,
|
SeriesTitleCell,
|
||||||
SeriesTitleCell,
|
EpisodeNumberCell,
|
||||||
EpisodeNumberCell,
|
EpisodeTitleCell,
|
||||||
EpisodeTitleCell,
|
RelativeDateCell,
|
||||||
RelativeDateCell,
|
EpisodeStatusCell,
|
||||||
EpisodeStatusCell,
|
GridPager,
|
||||||
GridPager,
|
ToolbarLayout,
|
||||||
ToolbarLayout,
|
LoadingView,
|
||||||
LoadingView,
|
Messenger,
|
||||||
Messenger,
|
CommandController) {
|
||||||
CommandController) {
|
return Marionette.Layout.extend({
|
||||||
return Marionette.Layout.extend({
|
template : 'Wanted/Missing/MissingLayoutTemplate',
|
||||||
template: 'Wanted/Missing/MissingLayoutTemplate',
|
|
||||||
|
|
||||||
regions: {
|
regions : {
|
||||||
missing: '#x-missing',
|
missing : '#x-missing',
|
||||||
toolbar: '#x-toolbar',
|
toolbar : '#x-toolbar',
|
||||||
pager : '#x-pager'
|
pager : '#x-pager'
|
||||||
|
},
|
||||||
|
|
||||||
|
ui : {
|
||||||
|
searchSelectedButton : '.btn i.icon-search'
|
||||||
|
},
|
||||||
|
|
||||||
|
columns : [
|
||||||
|
{
|
||||||
|
name : '',
|
||||||
|
cell : 'select-row',
|
||||||
|
headerCell : 'select-all',
|
||||||
|
sortable : false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
ui: {
|
name : 'series',
|
||||||
searchSelectedButton: '.btn i.icon-search'
|
label : 'Series Title',
|
||||||
|
sortable : false,
|
||||||
|
cell : SeriesTitleCell
|
||||||
},
|
},
|
||||||
|
{
|
||||||
columns:
|
name : 'this',
|
||||||
[
|
label : 'Episode',
|
||||||
{
|
sortable : false,
|
||||||
name : '',
|
cell : EpisodeNumberCell
|
||||||
cell : 'select-row',
|
|
||||||
headerCell: 'select-all',
|
|
||||||
sortable : false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'series',
|
|
||||||
label : 'Series Title',
|
|
||||||
sortable : false,
|
|
||||||
cell : SeriesTitleCell
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'this',
|
|
||||||
label : 'Episode',
|
|
||||||
sortable : false,
|
|
||||||
cell : EpisodeNumberCell
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'this',
|
|
||||||
label : 'Episode Title',
|
|
||||||
sortable : false,
|
|
||||||
cell : EpisodeTitleCell
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'airDateUtc',
|
|
||||||
label : 'Air Date',
|
|
||||||
cell : RelativeDateCell
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'status',
|
|
||||||
label : 'Status',
|
|
||||||
cell : EpisodeStatusCell,
|
|
||||||
sortable: false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
|
|
||||||
initialize: function () {
|
|
||||||
this.collection = new MissingCollection();
|
|
||||||
|
|
||||||
this.listenTo(this.collection, 'sync', this._showTable);
|
|
||||||
},
|
},
|
||||||
|
{
|
||||||
onShow: function () {
|
name : 'this',
|
||||||
this.missing.show(new LoadingView());
|
label : 'Episode Title',
|
||||||
this._showToolbar();
|
sortable : false,
|
||||||
this.collection.fetch();
|
cell : EpisodeTitleCell
|
||||||
},
|
},
|
||||||
|
{
|
||||||
_showTable: function () {
|
name : 'airDateUtc',
|
||||||
this.missingGrid = new Backgrid.Grid({
|
label : 'Air Date',
|
||||||
columns : this.columns,
|
cell : RelativeDateCell
|
||||||
collection: this.collection,
|
|
||||||
className : 'table table-hover'
|
|
||||||
});
|
|
||||||
|
|
||||||
this.missing.show(this.missingGrid);
|
|
||||||
|
|
||||||
this.pager.show(new GridPager({
|
|
||||||
columns : this.columns,
|
|
||||||
collection: this.collection
|
|
||||||
}));
|
|
||||||
},
|
},
|
||||||
|
{
|
||||||
_showToolbar: function () {
|
name : 'status',
|
||||||
var leftSideButtons = {
|
label : 'Status',
|
||||||
type : 'default',
|
cell : EpisodeStatusCell,
|
||||||
storeState : false,
|
sortable : false
|
||||||
collapse : true,
|
|
||||||
items :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
title: 'Search Selected',
|
|
||||||
icon : 'icon-search',
|
|
||||||
callback: this._searchSelected,
|
|
||||||
ownerContext: this
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Search All Missing',
|
|
||||||
icon : 'icon-search',
|
|
||||||
callback: this._searchMissing,
|
|
||||||
ownerContext: this
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Season Pass',
|
|
||||||
icon : 'icon-bookmark',
|
|
||||||
route: 'seasonpass'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Rescan Drone Factory Folder',
|
|
||||||
icon : 'icon-refresh',
|
|
||||||
command: 'downloadedepisodesscan',
|
|
||||||
properties: {
|
|
||||||
sendUpdates: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
var filterOptions = {
|
|
||||||
type : 'radio',
|
|
||||||
storeState : false,
|
|
||||||
menuKey : 'wanted.filterMode',
|
|
||||||
defaultAction : 'monitored',
|
|
||||||
items :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
key : 'monitored',
|
|
||||||
title : '',
|
|
||||||
tooltip : 'Monitored Only',
|
|
||||||
icon : 'icon-nd-monitored',
|
|
||||||
callback : this._setFilter
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key : 'unmonitored',
|
|
||||||
title : '',
|
|
||||||
tooltip : 'Unmonitored Only',
|
|
||||||
icon : 'icon-nd-unmonitored',
|
|
||||||
callback : this._setFilter
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
this.toolbar.show(new ToolbarLayout({
|
|
||||||
left :
|
|
||||||
[
|
|
||||||
leftSideButtons
|
|
||||||
],
|
|
||||||
right :
|
|
||||||
[
|
|
||||||
filterOptions
|
|
||||||
],
|
|
||||||
context: this
|
|
||||||
}));
|
|
||||||
|
|
||||||
CommandController.bindToCommand({
|
|
||||||
element: this.$('.x-toolbar-left-1 .btn i.icon-search'),
|
|
||||||
command: {
|
|
||||||
name: 'episodeSearch'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
_setFilter: function(buttonContext) {
|
|
||||||
var mode = buttonContext.model.get('key');
|
|
||||||
|
|
||||||
this.collection.state.currentPage = 1;
|
|
||||||
var promise = this.collection.setFilterMode(mode);
|
|
||||||
|
|
||||||
if (buttonContext)
|
|
||||||
buttonContext.ui.icon.spinForPromise(promise);
|
|
||||||
},
|
|
||||||
|
|
||||||
_searchSelected: function () {
|
|
||||||
var selected = this.missingGrid.getSelectedModels();
|
|
||||||
|
|
||||||
if (selected.length === 0) {
|
|
||||||
Messenger.show({
|
|
||||||
type: 'error',
|
|
||||||
message: 'No episodes selected'
|
|
||||||
});
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var ids = _.pluck(selected, 'id');
|
|
||||||
|
|
||||||
CommandController.Execute('episodeSearch', {
|
|
||||||
name : 'episodeSearch',
|
|
||||||
episodeIds: ids
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
_searchMissing: function () {
|
|
||||||
if (window.confirm('Are you sure you want to search for {0} missing episodes? '.format(this.collection.state.totalRecords) +
|
|
||||||
'One API request to each indexer will be used for each episode. ' +
|
|
||||||
'This cannot be stopped once started.')) {
|
|
||||||
CommandController.Execute('missingEpisodeSearch', {
|
|
||||||
name : 'missingEpisodeSearch'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
],
|
||||||
|
|
||||||
|
initialize : function () {
|
||||||
|
this.collection = new MissingCollection();
|
||||||
|
|
||||||
|
this.listenTo(this.collection, 'sync', this._showTable);
|
||||||
|
},
|
||||||
|
|
||||||
|
onShow : function () {
|
||||||
|
this.missing.show(new LoadingView());
|
||||||
|
this._showToolbar();
|
||||||
|
this.collection.fetch();
|
||||||
|
},
|
||||||
|
|
||||||
|
_showTable : function () {
|
||||||
|
this.missingGrid = new Backgrid.Grid({
|
||||||
|
columns : this.columns,
|
||||||
|
collection : this.collection,
|
||||||
|
className : 'table table-hover'
|
||||||
|
});
|
||||||
|
|
||||||
|
this.missing.show(this.missingGrid);
|
||||||
|
|
||||||
|
this.pager.show(new GridPager({
|
||||||
|
columns : this.columns,
|
||||||
|
collection : this.collection
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
|
||||||
|
_showToolbar : function () {
|
||||||
|
var leftSideButtons = {
|
||||||
|
type : 'default',
|
||||||
|
storeState : false,
|
||||||
|
collapse : true,
|
||||||
|
items : [
|
||||||
|
{
|
||||||
|
title : 'Search Selected',
|
||||||
|
icon : 'icon-search',
|
||||||
|
callback : this._searchSelected,
|
||||||
|
ownerContext : this,
|
||||||
|
className : 'x-search-selected'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title : 'Search All Missing',
|
||||||
|
icon : 'icon-search',
|
||||||
|
callback : this._searchMissing,
|
||||||
|
ownerContext : this,
|
||||||
|
className : 'x-search-missing'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title : 'Season Pass',
|
||||||
|
icon : 'icon-bookmark',
|
||||||
|
route : 'seasonpass'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title : 'Rescan Drone Factory Folder',
|
||||||
|
icon : 'icon-refresh',
|
||||||
|
command : 'downloadedepisodesscan',
|
||||||
|
properties : {
|
||||||
|
sendUpdates : true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
var filterOptions = {
|
||||||
|
type : 'radio',
|
||||||
|
storeState : false,
|
||||||
|
menuKey : 'wanted.filterMode',
|
||||||
|
defaultAction : 'monitored',
|
||||||
|
items : [
|
||||||
|
{
|
||||||
|
key : 'monitored',
|
||||||
|
title : '',
|
||||||
|
tooltip : 'Monitored Only',
|
||||||
|
icon : 'icon-nd-monitored',
|
||||||
|
callback : this._setFilter
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key : 'unmonitored',
|
||||||
|
title : '',
|
||||||
|
tooltip : 'Unmonitored Only',
|
||||||
|
icon : 'icon-nd-unmonitored',
|
||||||
|
callback : this._setFilter
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
this.toolbar.show(new ToolbarLayout({
|
||||||
|
left : [
|
||||||
|
leftSideButtons
|
||||||
|
],
|
||||||
|
right : [
|
||||||
|
filterOptions
|
||||||
|
],
|
||||||
|
context : this
|
||||||
|
}));
|
||||||
|
|
||||||
|
CommandController.bindToCommand({
|
||||||
|
element : this.$('.x-search-selected'),
|
||||||
|
command : {
|
||||||
|
name : 'episodeSearch'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
CommandController.bindToCommand({
|
||||||
|
element : this.$('.x-search-missing'),
|
||||||
|
command : {
|
||||||
|
name : 'missingEpisodeSearch'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_setFilter : function (buttonContext) {
|
||||||
|
var mode = buttonContext.model.get('key');
|
||||||
|
|
||||||
|
this.collection.state.currentPage = 1;
|
||||||
|
var promise = this.collection.setFilterMode(mode);
|
||||||
|
|
||||||
|
if (buttonContext) {
|
||||||
|
buttonContext.ui.icon.spinForPromise(promise);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_searchSelected : function () {
|
||||||
|
var selected = this.missingGrid.getSelectedModels();
|
||||||
|
|
||||||
|
if (selected.length === 0) {
|
||||||
|
Messenger.show({
|
||||||
|
type : 'error',
|
||||||
|
message : 'No episodes selected'
|
||||||
|
});
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var ids = _.pluck(selected, 'id');
|
||||||
|
|
||||||
|
CommandController.Execute('episodeSearch', {
|
||||||
|
name : 'episodeSearch',
|
||||||
|
episodeIds : ids
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_searchMissing : function () {
|
||||||
|
if (window.confirm('Are you sure you want to search for {0} missing episodes? '.format(this.collection.state.totalRecords) + 'One API request to each indexer will be used for each episode. ' + 'This cannot be stopped once started.')) {
|
||||||
|
CommandController.Execute('missingEpisodeSearch', {
|
||||||
|
name : 'missingEpisodeSearch'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user