1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/UI/Series/Index/SeriesItemView.js

60 lines
1.6 KiB
JavaScript
Raw Normal View History

'use strict';
define([
'app',
'Quality/QualityProfileCollection',
'Series/SeriesCollection',
'Series/Edit/EditSeriesView',
'Series/Delete/DeleteSeriesView'
2013-02-15 11:18:42 +03:00
], function () {
2013-03-04 01:42:26 +03: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 11:18:42 +03:00
'progressbar': '.progress .bar'
},
events: {
'click .x-edit' : 'editSeries',
'click .x-remove': 'removeSeries'
},
initialize: function (options) {
this.qualityProfileCollection = options.qualityProfiles;
this.viewStyle = options.viewStyle;
},
onRender: function () {
NzbDrone.ModelBinder.bind(this.model, this.el);
},
editSeries: function () {
2013-03-04 05:02:57 +03:00
var view = new NzbDrone.Series.Edit.EditSeriesView({ model: this.model});
2013-02-16 03:49:25 +03:00
2013-02-28 07:48:31 +03:00
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
2013-02-16 03:49:25 +03:00
view: view
});
},
removeSeries: function () {
2013-03-04 01:42:26 +03:00
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
2013-02-16 03:49:25 +03:00
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
view: view
});
}
});
});