mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Added latest button to Season Pass
This commit is contained in:
parent
63dd1fc189
commit
4cfe57f13d
@ -18,7 +18,8 @@ define(
|
|||||||
|
|
||||||
events: {
|
events: {
|
||||||
'change .x-season-select': '_seasonSelected',
|
'change .x-season-select': '_seasonSelected',
|
||||||
'click .x-expander' : '_expand'
|
'click .x-expander' : '_expand',
|
||||||
|
'click .x-latest' : '_latest'
|
||||||
},
|
},
|
||||||
|
|
||||||
regions: {
|
regions: {
|
||||||
@ -66,26 +67,13 @@ define(
|
|||||||
},
|
},
|
||||||
|
|
||||||
_seasonSelected: function () {
|
_seasonSelected: function () {
|
||||||
var self = this;
|
|
||||||
var seasonNumber = parseInt(this.ui.seasonSelect.val());
|
var seasonNumber = parseInt(this.ui.seasonSelect.val());
|
||||||
|
|
||||||
if (seasonNumber == -1) {
|
if (seasonNumber == -1 || isNaN(seasonNumber)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var promise = $.ajax({
|
this._setMonitored(seasonNumber)
|
||||||
url: this.seasonCollection.url + '/pass',
|
|
||||||
type: 'POST',
|
|
||||||
data: {
|
|
||||||
seriesId: this.model.get('id'),
|
|
||||||
seasonNumber: seasonNumber
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
promise.done(function (data) {
|
|
||||||
self.seasonCollection = new SeasonCollection(data);
|
|
||||||
self.render();
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
_expand: function () {
|
_expand: function () {
|
||||||
@ -112,6 +100,34 @@ define(
|
|||||||
this.ui.expander.removeClass('icon-chevron-down');
|
this.ui.expander.removeClass('icon-chevron-down');
|
||||||
this.ui.expander.addClass('icon-chevron-right');
|
this.ui.expander.addClass('icon-chevron-right');
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_latest: function () {
|
||||||
|
var season = _.max(this.seasonCollection.models, function (model) {
|
||||||
|
return model.get('seasonNumber');
|
||||||
|
});
|
||||||
|
|
||||||
|
//var seasonNumber = season.get('seasonNumber');
|
||||||
|
|
||||||
|
this._setMonitored(season.get('seasonNumber'))
|
||||||
|
},
|
||||||
|
|
||||||
|
_setMonitored: function (seasonNumber) {
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
var promise = $.ajax({
|
||||||
|
url: this.seasonCollection.url + '/pass',
|
||||||
|
type: 'POST',
|
||||||
|
data: {
|
||||||
|
seriesId: this.model.get('id'),
|
||||||
|
seasonNumber: seasonNumber
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
promise.done(function (data) {
|
||||||
|
self.seasonCollection = new SeasonCollection(data);
|
||||||
|
self.render();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -8,18 +8,28 @@
|
|||||||
{{title}}
|
{{title}}
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
<select class="x-season-select season-select">
|
|
||||||
<option value="-1">Select season...</option>
|
<span class="span3">
|
||||||
{{#each seasons.models}}
|
<select class="x-season-select season-select">
|
||||||
|
<option value="-1">Select season...</option>
|
||||||
|
{{#each seasons.models}}
|
||||||
{{#if_eq attributes.seasonNumber compare="0"}}
|
{{#if_eq attributes.seasonNumber compare="0"}}
|
||||||
<option value="{{attributes.seasonumber}}">Specials</option>
|
<option value="{{attributes.seasonNumber}}">Specials</option>
|
||||||
{{else}}
|
{{else}}
|
||||||
<option value="{{attributes.seasonNumber}}">Season {{attributes.seasonNumber}}</option>
|
<option value="{{attributes.seasonNumber}}">Season {{attributes.seasonNumber}}</option>
|
||||||
{{/if_eq}}
|
{{/if_eq}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<span class="help-inline">
|
||||||
|
<i class="icon-question-sign" title="Selecting a season will unmonitor all previous seasons"/>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<button class="btn x-latest">Latest</button>
|
||||||
|
|
||||||
<span class="help-inline">
|
<span class="help-inline">
|
||||||
<i class="icon-question-sign" title="Selecting a season will unmonitor all previous seasons"/>
|
<i class="icon-question-sign" title="Will quickly select the latest season as first monitored"/>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user