You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
'use strict';
|
|
define(['app', 'Quality/QualityProfileModel'], function () {
|
|
|
|
NzbDrone.Settings.Quality.Profile.EditQualityProfileView = Backbone.Marionette.ItemView.extend({
|
|
template: 'Settings/Quality/Profile/EditQualityProfileTemplate',
|
|
|
|
events: {
|
|
'click .x-save' : 'saveQualityProfile',
|
|
'dblclick .x-available-list': '_moveQuality',
|
|
'dblclick .x-allowed-list' : '_moveQuality'
|
|
},
|
|
|
|
_moveQuality: function (event) {
|
|
|
|
var quality;
|
|
var qualityId = event.target.value;
|
|
var availableCollection = new Backbone.Collection(this.model.get('available'));
|
|
availableCollection.comparator = function (model) {
|
|
return model.get('weight');
|
|
};
|
|
|
|
var allowedCollection = new Backbone.Collection(this.model.get('allowed'));
|
|
allowedCollection.comparator = function (model) {
|
|
return model.get('weight');
|
|
};
|
|
|
|
if (availableCollection.get(qualityId)) {
|
|
quality = availableCollection.get(qualityId);
|
|
availableCollection.remove(quality);
|
|
allowedCollection.add(quality);
|
|
}
|
|
else if (allowedCollection.get(qualityId)) {
|
|
quality = allowedCollection.get(qualityId);
|
|
|
|
allowedCollection.remove(quality);
|
|
availableCollection.add(quality);
|
|
}
|
|
else {
|
|
throw 'couldnt find quality id ' + qualityId;
|
|
}
|
|
|
|
|
|
this.model.set('available', availableCollection.toJSON());
|
|
this.model.set('allowed', allowedCollection.toJSON());
|
|
|
|
this.render();
|
|
},
|
|
|
|
saveQualityProfile: function () {
|
|
//Todo: Make sure model is updated with Allowed, Cutoff, Name
|
|
|
|
this.model.save();
|
|
this.trigger('saved');
|
|
NzbDrone.modalRegion.closeModal();
|
|
}
|
|
});
|
|
|
|
});
|