mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
587c4ba129
display modal if file exists in drop location GitOrigin-RevId: 2dbcbce26c32903f1acfdfbf7fdddb676c130098
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
/* eslint-disable
|
|
camelcase,
|
|
max-len,
|
|
no-return-assign,
|
|
no-undef,
|
|
*/
|
|
// 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
|
|
*/
|
|
define(['base'], App =>
|
|
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]
|
|
}
|
|
for (let dropped_entity of Array.from(entities)) {
|
|
try {
|
|
ide.fileTreeManager.moveEntity(dropped_entity, rootFolder)
|
|
} catch (err) {
|
|
$modal.open({
|
|
templateUrl: 'duplicateFileModalTemplate',
|
|
controller: 'DuplicateFileModalController',
|
|
resolve: {
|
|
fileName() {
|
|
return dropped_entity.name
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
$scope.$digest()
|
|
// clear highlight explicitly
|
|
return $('.file-tree-inner .droppable-hover').removeClass(
|
|
'droppable-hover'
|
|
)
|
|
})
|
|
}))
|