2020-11-26 09:22:30 -05:00
|
|
|
import App from '../../../base'
|
|
|
|
import { react2angular } from 'react2angular'
|
|
|
|
|
|
|
|
import FileTreeRoot from '../components/file-tree-root'
|
|
|
|
|
|
|
|
App.controller('ReactFileTreeController', function(
|
|
|
|
$scope,
|
|
|
|
$timeout,
|
|
|
|
ide,
|
|
|
|
eventTracking
|
|
|
|
) {
|
|
|
|
$scope.projectId = ide.project_id
|
|
|
|
$scope.rootFolder = null
|
|
|
|
$scope.rootDocId = null
|
|
|
|
$scope.hasWritePermissions = false
|
|
|
|
|
|
|
|
$scope.$on('project:joined', () => {
|
|
|
|
$scope.rootFolder = $scope.project.rootFolder
|
|
|
|
$scope.rootDocId = $scope.project.rootDoc_id
|
|
|
|
$scope.$emit('file-tree:initialized')
|
|
|
|
})
|
|
|
|
|
|
|
|
$scope.$watch('permissions.write', hasWritePermissions => {
|
|
|
|
$scope.hasWritePermissions = hasWritePermissions
|
|
|
|
})
|
|
|
|
|
|
|
|
$scope.$watch('editor.open_doc_id', openDocId => {
|
|
|
|
window.dispatchEvent(
|
|
|
|
new CustomEvent('editor.openDoc', { detail: openDocId })
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
$scope.onInit = () => {
|
|
|
|
// HACK: resize the vertical pane on init after a 0ms timeout. We do not
|
|
|
|
// understand why this is necessary but without this the resized handle is
|
|
|
|
// stuck at the bottom. The vertical resize will soon be migrated to React
|
|
|
|
// so we accept to live with this hack for now.
|
|
|
|
$timeout(() => {
|
|
|
|
$scope.$emit('left-pane-resize-all')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.onSelect = selectedEntities => {
|
|
|
|
if (selectedEntities.length === 1) {
|
|
|
|
const selectedEntity = selectedEntities[0]
|
2020-11-27 08:11:31 -05:00
|
|
|
const type =
|
|
|
|
selectedEntity.type === 'fileRef' ? 'file' : selectedEntity.type
|
2020-11-26 09:22:30 -05:00
|
|
|
$scope.$emit('entity:selected', {
|
2021-01-05 05:57:07 -05:00
|
|
|
...selectedEntity.entity,
|
2020-11-26 09:22:30 -05:00
|
|
|
id: selectedEntity.entity._id,
|
2020-11-27 08:11:31 -05:00
|
|
|
type
|
2020-11-26 09:22:30 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
// in the react implementation there is no such concept as "1
|
|
|
|
// multi-selected entity" so here we pass a count of 0
|
|
|
|
$scope.$emit('entities:multiSelected', { count: 0 })
|
|
|
|
} else if (selectedEntities.length > 1) {
|
2020-12-15 05:23:54 -05:00
|
|
|
$scope.$emit('entities:multiSelected', {
|
|
|
|
count: selectedEntities.length
|
|
|
|
})
|
2021-01-07 09:22:53 -05:00
|
|
|
} else {
|
|
|
|
$scope.$emit('entity:no-selection')
|
2020-11-26 09:22:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
App.component('fileTreeRoot', react2angular(FileTreeRoot))
|