1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Series/Index/SeriesItemView.js

56 lines
1.5 KiB
JavaScript
Raw Normal View History

'use strict';
define([
'app',
'Quality/QualityProfileCollection',
'Series/SeriesCollection',
'Series/Edit/EditSeriesView',
'Series/Delete/DeleteSeriesView'
2013-02-15 00:18:42 -08:00
], function () {
2013-03-03 14:42:26 -08:00
NzbDrone.Series.Index.SeriesItemView = Backbone.Marionette.ItemView.extend({
tagName : 'tr',
template: 'Series/Index/SeriesItemTemplate',
getTemplate: function(){
if (this.viewStyle === 1){
this.tagName = 'div';
return 'Series/Index/SeriesGridItemTemplate';
}
else {
return 'Series/Index/SeriesItemTemplate';
}
},
ui: {
2013-02-15 00:18:42 -08:00
'progressbar': '.progress .bar'
},
events: {
'click .x-edit' : 'editSeries',
'click .x-remove': 'removeSeries'
},
initialize: function (options) {
this.qualityProfileCollection = options.qualityProfiles;
this.viewStyle = options.viewStyle;
},
editSeries: function () {
2013-03-03 18:02:57 -08:00
var view = new NzbDrone.Series.Edit.EditSeriesView({ model: this.model});
2013-02-15 16:49:25 -08:00
2013-02-27 20:48:31 -08:00
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
2013-02-15 16:49:25 -08:00
view: view
});
},
removeSeries: function () {
2013-03-03 14:42:26 -08:00
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
2013-02-15 16:49:25 -08:00
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
view: view
});
}
});
});