Workaround to ensure the view uses a unique cloned collection for filtering instead of affecting the generic SeriesCollection.
This commit is contained in:
parent
9df0ad0bf7
commit
7a4e05f04a
|
@ -127,46 +127,46 @@ define(
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
sortingOptions: {
|
|
||||||
type : 'sorting',
|
|
||||||
storeState : false,
|
|
||||||
viewCollection: SeriesCollection,
|
|
||||||
items :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
title: 'Title',
|
|
||||||
name : 'title'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Seasons',
|
|
||||||
name : 'seasonCount'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Quality',
|
|
||||||
name : 'qualityProfileId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Network',
|
|
||||||
name : 'network'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title : 'Next Airing',
|
|
||||||
name : 'nextAiring',
|
|
||||||
sortValue : SeriesCollection.nextAiring
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Episodes',
|
|
||||||
name : 'percentOfEpisodes'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
initialize: function () {
|
initialize: function () {
|
||||||
this.seriesCollection = SeriesCollection;
|
this.seriesCollection = SeriesCollection.clone();
|
||||||
|
|
||||||
this.listenTo(SeriesCollection, 'sync', this._renderView);
|
this.listenTo(SeriesCollection, 'sync', this._renderView);
|
||||||
this.listenTo(SeriesCollection, 'remove', this._renderView);
|
this.listenTo(SeriesCollection, 'remove', this._renderView);
|
||||||
|
|
||||||
|
this.sortingOptions = {
|
||||||
|
type : 'sorting',
|
||||||
|
storeState : false,
|
||||||
|
viewCollection: this.seriesCollection,
|
||||||
|
items :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
title: 'Title',
|
||||||
|
name : 'title'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Seasons',
|
||||||
|
name : 'seasonCount'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Quality',
|
||||||
|
name : 'qualityProfileId'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Network',
|
||||||
|
name : 'network'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title : 'Next Airing',
|
||||||
|
name : 'nextAiring',
|
||||||
|
sortValue : SeriesCollection.nextAiring
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Episodes',
|
||||||
|
name : 'percentOfEpisodes'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
this.filteringOptions = {
|
this.filteringOptions = {
|
||||||
type : 'radio',
|
type : 'radio',
|
||||||
storeState : true,
|
storeState : true,
|
||||||
|
|
Loading…
Reference in New Issue