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.
57 lines
1.6 KiB
57 lines
1.6 KiB
'use strict';
|
|
|
|
define(
|
|
[
|
|
'marionette',
|
|
'AddSeries/RootFolders/CollectionView',
|
|
'AddSeries/RootFolders/Collection',
|
|
'AddSeries/RootFolders/Model',
|
|
'Mixins/AutoComplete'
|
|
], function (Marionette, RootFolderCollectionView, RootFolderCollection, RootFolderModel) {
|
|
|
|
return Marionette.Layout.extend({
|
|
template: 'AddSeries/RootFolders/LayoutTemplate',
|
|
|
|
ui: {
|
|
pathInput: '.x-path input'
|
|
},
|
|
|
|
regions: {
|
|
currentDirs: '#current-dirs'
|
|
},
|
|
|
|
events: {
|
|
'click .x-add': '_addFolder'
|
|
},
|
|
|
|
initialize: function () {
|
|
this.collection = RootFolderCollection;
|
|
this.rootfolderListView = new RootFolderCollectionView({ collection: RootFolderCollection });
|
|
this.rootfolderListView.on('itemview:folderSelected', this._onFolderSelected, this);
|
|
},
|
|
|
|
onRender: function () {
|
|
|
|
this.currentDirs.show(this.rootfolderListView);
|
|
this.ui.pathInput.autoComplete('/directories');
|
|
},
|
|
|
|
_onFolderSelected: function (options) {
|
|
this.trigger('folderSelected', options);
|
|
},
|
|
|
|
_addFolder: function () {
|
|
var newDir = new RootFolderModel({
|
|
Path: this.ui.pathInput.val()
|
|
});
|
|
|
|
RootFolderCollection.create(newDir, {
|
|
wait: true, success: function () {
|
|
RootFolderCollection.fetch();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
});
|