2018-11-05 05:06:39 -05:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
max-len,
|
|
|
|
no-return-assign,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS101: Remove unnecessary use of Array.from
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-05-19 05:02:56 -04:00
|
|
|
import App from '../../../base'
|
|
|
|
|
|
|
|
export default App.controller('FileTreeRootFolderController', function(
|
|
|
|
$scope,
|
|
|
|
$modal,
|
|
|
|
ide
|
|
|
|
) {
|
|
|
|
const { rootFolder } = $scope
|
|
|
|
return ($scope.onDrop = function(events, ui) {
|
|
|
|
let entities
|
|
|
|
if (ide.fileTreeManager.multiSelectedCount()) {
|
|
|
|
entities = ide.fileTreeManager.getMultiSelectedEntityChildNodes()
|
|
|
|
} else {
|
|
|
|
entities = [$(ui.draggable).scope().entity]
|
|
|
|
}
|
2020-02-18 06:37:02 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
const ids = rootFolder.children.map(entity => entity.id)
|
2020-02-18 06:37:02 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
for (let dropped_entity of Array.from(entities)) {
|
|
|
|
if (!ids.includes(dropped_entity.id)) {
|
|
|
|
try {
|
|
|
|
ide.fileTreeManager.moveEntity(dropped_entity, rootFolder)
|
|
|
|
} catch (err) {
|
|
|
|
$modal.open({
|
|
|
|
templateUrl: 'duplicateFileModalTemplate',
|
|
|
|
controller: 'DuplicateFileModalController',
|
|
|
|
resolve: {
|
|
|
|
fileName() {
|
|
|
|
return dropped_entity.name
|
2020-01-02 14:21:30 -05:00
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
}
|
|
|
|
})
|
2020-01-02 14:21:30 -05:00
|
|
|
}
|
2019-07-16 05:13:18 -04:00
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
}
|
|
|
|
$scope.$digest()
|
|
|
|
// clear highlight explicitly
|
|
|
|
return $('.file-tree-inner .droppable-hover').removeClass('droppable-hover')
|
|
|
|
})
|
|
|
|
})
|