mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
0cde5be165
Convert React context providers to TypeScript [don't squash!] GitOrigin-RevId: d92a91798286978410956ab791d73c17c5086d86
97 lines
2.7 KiB
TypeScript
97 lines
2.7 KiB
TypeScript
import { ReactNode, useEffect, useRef } from 'react'
|
|
import classNames from 'classnames'
|
|
import scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'
|
|
|
|
import { useEditorContext } from '../../../../shared/context/editor-context'
|
|
import { useFileTreeMainContext } from '../../contexts/file-tree-main'
|
|
import { useDraggable } from '../../contexts/file-tree-draggable'
|
|
|
|
import FileTreeItemName from './file-tree-item-name'
|
|
import FileTreeItemMenu from './file-tree-item-menu'
|
|
import { useFileTreeSelectable } from '../../contexts/file-tree-selectable'
|
|
import { useFileTreeActionable } from '../../contexts/file-tree-actionable'
|
|
import { useDragDropManager } from 'react-dnd'
|
|
|
|
function FileTreeItemInner({
|
|
id,
|
|
name,
|
|
isSelected,
|
|
icons,
|
|
}: {
|
|
id: string
|
|
name: string
|
|
isSelected: boolean
|
|
icons?: ReactNode
|
|
}) {
|
|
const { permissionsLevel } = useEditorContext()
|
|
const { setContextMenuCoords } = useFileTreeMainContext()
|
|
const { isRenaming } = useFileTreeActionable()
|
|
|
|
const { selectedEntityIds } = useFileTreeSelectable()
|
|
|
|
const hasMenu =
|
|
permissionsLevel !== 'readOnly' &&
|
|
isSelected &&
|
|
selectedEntityIds.size === 1
|
|
|
|
const { dragRef, setIsDraggable } = useDraggable(id)
|
|
|
|
const dragDropItem = useDragDropManager().getMonitor().getItem()
|
|
|
|
const itemRef = useRef<HTMLDivElement | null>(null)
|
|
|
|
useEffect(() => {
|
|
const item = itemRef.current
|
|
if (isSelected && item) {
|
|
// we're delaying scrolling due to a race condition with other elements,
|
|
// mainly the Outline, being resized inside the same panel, causing the
|
|
// FileTree to have its viewport shrinked after the selected item is
|
|
// scrolled into the view, hiding it again.
|
|
// See `left-pane-resize-all` in `file-tree-controller` for more information.
|
|
setTimeout(() => {
|
|
if (item) {
|
|
scrollIntoViewIfNeeded(item, {
|
|
scrollMode: 'if-needed',
|
|
})
|
|
}
|
|
}, 100)
|
|
}
|
|
}, [isSelected, itemRef])
|
|
|
|
function handleContextMenu(ev: React.MouseEvent<HTMLDivElement>) {
|
|
ev.preventDefault()
|
|
|
|
setContextMenuCoords({
|
|
top: ev.pageY,
|
|
left: ev.pageX,
|
|
})
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={classNames('entity', {
|
|
'file-tree-entity-dragging': dragDropItem?.draggedEntityIds?.has(id),
|
|
})}
|
|
role="presentation"
|
|
ref={dragRef}
|
|
draggable={!isRenaming}
|
|
onContextMenu={handleContextMenu}
|
|
>
|
|
<div
|
|
className="entity-name entity-name-react"
|
|
role="presentation"
|
|
ref={itemRef}
|
|
>
|
|
{icons}
|
|
<FileTreeItemName
|
|
name={name}
|
|
isSelected={isSelected}
|
|
setIsDraggable={setIsDraggable}
|
|
/>
|
|
{hasMenu ? <FileTreeItemMenu id={id} /> : null}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default FileTreeItemInner
|