mirror of https://github.com/Sonarr/Sonarr
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app',
|
|
'Quality/QualityProfileCollection',
|
|
'Series/SeriesCollection',
|
|
'Series/Edit/EditSeriesView',
|
|
'Series/Delete/DeleteSeriesView'
|
|
|
|
], function () {
|
|
|
|
NzbDrone.Series.Index.List.ItemView = Backbone.Marionette.ItemView.extend({
|
|
template: 'Series/Index/List/ItemTemplate',
|
|
|
|
ui: {
|
|
'progressbar': '.progress .bar'
|
|
},
|
|
|
|
events: {
|
|
'click .x-edit' : 'editSeries',
|
|
'click .x-remove': 'removeSeries',
|
|
'click a' : 'showEpisodeList'
|
|
},
|
|
|
|
initialize: function (options) {
|
|
this.qualityProfileCollection = options.qualityProfiles;
|
|
},
|
|
|
|
editSeries: function () {
|
|
var view = new NzbDrone.Series.Edit.EditSeriesView({ model: this.model});
|
|
|
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
|
view: view
|
|
});
|
|
},
|
|
|
|
removeSeries: function () {
|
|
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
|
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
|
view: view
|
|
});
|
|
},
|
|
|
|
showEpisodeList: function (e) {
|
|
e.preventDefault();
|
|
NzbDrone.Router.navigate('/series/details/' + this.model.get('id'), { trigger: true});
|
|
|
|
}
|
|
});
|
|
});
|