mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'app',
|
|
'marionette',
|
|
'Settings/Quality/Profile/EditQualityProfileView',
|
|
'Settings/Quality/Profile/DeleteView',
|
|
'Mixins/AsModelBoundView',
|
|
'Settings/Quality/Profile/AllowedLabeler'
|
|
|
|
], function (App, Marionette, EditProfileView, DeleteProfileView, AsModelBoundView) {
|
|
|
|
var view = Marionette.ItemView.extend({
|
|
template: 'Settings/Quality/Profile/QualityProfileTemplate',
|
|
tagName : 'li',
|
|
|
|
ui: {
|
|
'progressbar': '.progress .bar'
|
|
},
|
|
|
|
events: {
|
|
'click .x-edit' : '_editProfile',
|
|
'click .x-delete': '_deleteProfile'
|
|
},
|
|
|
|
initialize: function () {
|
|
this.listenTo(this.model, 'sync', this.render);
|
|
},
|
|
|
|
_editProfile: function () {
|
|
var view = new EditProfileView({ model: this.model, profileCollection: this.model.collection });
|
|
App.modalRegion.show(view);
|
|
},
|
|
|
|
_deleteProfile: function () {
|
|
var view = new DeleteProfileView({ model: this.model });
|
|
App.modalRegion.show(view);
|
|
}
|
|
});
|
|
|
|
return AsModelBoundView.call(view);
|
|
});
|