mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-31 18:35:32 -04:00
28 lines
921 B
JavaScript
28 lines
921 B
JavaScript
var AppLayout = require('../../../AppLayout');
|
|
var Marionette = require('marionette');
|
|
var RemotePathMappingItemView = require('./RemotePathMappingItemView');
|
|
var EditView = require('./RemotePathMappingEditView');
|
|
var RemotePathMappingModel = require('./RemotePathMappingModel');
|
|
require('bootstrap');
|
|
|
|
module.exports = Marionette.CompositeView.extend({
|
|
template : 'Settings/DownloadClient/RemotePathMapping/RemotePathMappingCollectionViewTemplate',
|
|
itemViewContainer : '.x-rows',
|
|
itemView : RemotePathMappingItemView,
|
|
|
|
events : {
|
|
'click .x-add' : '_addMapping'
|
|
},
|
|
|
|
_addMapping : function() {
|
|
var model = new RemotePathMappingModel();
|
|
model.collection = this.collection;
|
|
|
|
var view = new EditView({
|
|
model : model,
|
|
targetCollection : this.collection
|
|
});
|
|
|
|
AppLayout.modalRegion.show(view);
|
|
}
|
|
}); |