mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
26d7524c93
GitOrigin-RevId: 7ffc1e32d331fa8bab1ea25919e706bf8b59800f
178 lines
5.5 KiB
TypeScript
178 lines
5.5 KiB
TypeScript
import {
|
|
createContext,
|
|
FC,
|
|
useCallback,
|
|
useContext,
|
|
useEffect,
|
|
useMemo,
|
|
useRef,
|
|
useState,
|
|
} from 'react'
|
|
import { useProjectContext } from '@/shared/context/project-context'
|
|
import { useIdeReactContext } from '@/features/ide-react/context/ide-react-context'
|
|
import { useEditorManagerContext } from '@/features/ide-react/context/editor-manager-context'
|
|
import { useSelectFileTreeEntity } from '@/features/ide-react/hooks/use-select-file-tree-entity'
|
|
import useScopeValue from '@/shared/hooks/use-scope-value'
|
|
import { BinaryFile } from '@/features/file-view/types/binary-file'
|
|
import {
|
|
FileTreeDocumentFindResult,
|
|
FileTreeFileRefFindResult,
|
|
FileTreeFindResult,
|
|
} from '@/features/ide-react/types/file-tree'
|
|
import { debugConsole } from '@/utils/debugging'
|
|
import { convertFileRefToBinaryFile } from '@/features/ide-react/util/file-view'
|
|
import { sendMB } from '@/infrastructure/event-tracking'
|
|
import { FileRef } from '../../../../../types/file-ref'
|
|
import useEventListener from '@/shared/hooks/use-event-listener'
|
|
|
|
const FileTreeOpenContext = createContext<
|
|
| {
|
|
selectedEntityCount: number
|
|
openEntity: FileTreeDocumentFindResult | FileTreeFileRefFindResult | null
|
|
handleFileTreeInit: () => void
|
|
handleFileTreeSelect: (selectedEntities: FileTreeFindResult[]) => void
|
|
handleFileTreeDelete: (entity: FileTreeFindResult) => void
|
|
}
|
|
| undefined
|
|
>(undefined)
|
|
|
|
export const FileTreeOpenProvider: FC = ({ children }) => {
|
|
const { rootDocId, owner } = useProjectContext()
|
|
const { eventEmitter, projectJoined } = useIdeReactContext()
|
|
const {
|
|
openDocId: openDocWithId,
|
|
currentDocumentId: openDocId,
|
|
openInitialDoc,
|
|
} = useEditorManagerContext()
|
|
const { selectEntity } = useSelectFileTreeEntity()
|
|
const [, setOpenFile] = useScopeValue<BinaryFile | null>('openFile')
|
|
const [openEntity, setOpenEntity] = useState<
|
|
FileTreeDocumentFindResult | FileTreeFileRefFindResult | null
|
|
>(null)
|
|
const [selectedEntityCount, setSelectedEntityCount] = useState(0)
|
|
const [fileTreeReady, setFileTreeReady] = useState(false)
|
|
|
|
const handleFileTreeInit = useCallback(() => {
|
|
setFileTreeReady(true)
|
|
}, [])
|
|
|
|
// Open a document in the editor when one is selected in the file tree
|
|
const handleFileTreeSelect = useCallback(
|
|
(selectedEntities: FileTreeFindResult[]) => {
|
|
debugConsole.log('File tree selection changed', selectedEntities)
|
|
setSelectedEntityCount(selectedEntities.length)
|
|
if (selectedEntities.length !== 1) {
|
|
setOpenEntity(null)
|
|
return
|
|
}
|
|
const [selected] = selectedEntities
|
|
|
|
if (selected.type === 'folder') {
|
|
return
|
|
}
|
|
|
|
setOpenEntity(selected)
|
|
if (selected.type === 'doc' && fileTreeReady) {
|
|
openDocWithId(selected.entity._id, { keepCurrentView: true })
|
|
if (selected.entity.name.endsWith('.bib')) {
|
|
sendMB('open-bib-file', {
|
|
projectOwner: owner._id,
|
|
isSampleFile: selected.entity.name === 'sample.bib',
|
|
linkedFileProvider: null,
|
|
})
|
|
}
|
|
}
|
|
// Keep openFile scope value in sync with the file tree
|
|
const openFile =
|
|
selected.type === 'fileRef'
|
|
? convertFileRefToBinaryFile(selected.entity)
|
|
: null
|
|
setOpenFile(openFile)
|
|
if (openFile) {
|
|
if (selected?.entity?.name?.endsWith('.bib')) {
|
|
sendMB('open-bib-file', {
|
|
projectOwner: owner._id,
|
|
isSampleFile: false,
|
|
linkedFileProvider: (selected.entity as FileRef).linkedFileData
|
|
?.provider,
|
|
})
|
|
}
|
|
window.dispatchEvent(new CustomEvent('file-view:file-opened'))
|
|
}
|
|
},
|
|
[fileTreeReady, setOpenFile, openDocWithId, owner]
|
|
)
|
|
|
|
const handleFileTreeDelete = useCallback(
|
|
(entity: FileTreeFindResult) => {
|
|
eventEmitter.emit('entity:deleted', entity)
|
|
// Select the root document if the current document was deleted
|
|
if (entity.entity._id === openDocId) {
|
|
openDocWithId(rootDocId!)
|
|
}
|
|
},
|
|
[eventEmitter, openDocId, openDocWithId, rootDocId]
|
|
)
|
|
|
|
// Synchronize the file tree when openDoc or openDocId is called on the editor
|
|
// manager context from elsewhere. If the file tree does change, it will
|
|
// trigger the onSelect handler in this component, which will update the local
|
|
// state.
|
|
useEventListener(
|
|
'doc:after-opened',
|
|
useCallback(
|
|
(event: CustomEvent<{ docId: string }>) => {
|
|
selectEntity(event.detail.docId)
|
|
},
|
|
[selectEntity]
|
|
)
|
|
)
|
|
|
|
// Open a document once the file tree and project are ready
|
|
const initialOpenDoneRef = useRef(false)
|
|
useEffect(() => {
|
|
if (
|
|
rootDocId &&
|
|
fileTreeReady &&
|
|
projectJoined &&
|
|
!initialOpenDoneRef.current
|
|
) {
|
|
initialOpenDoneRef.current = true
|
|
openInitialDoc(rootDocId)
|
|
}
|
|
}, [fileTreeReady, openInitialDoc, projectJoined, rootDocId])
|
|
|
|
const value = useMemo(() => {
|
|
return {
|
|
selectedEntityCount,
|
|
openEntity,
|
|
handleFileTreeInit,
|
|
handleFileTreeSelect,
|
|
handleFileTreeDelete,
|
|
}
|
|
}, [
|
|
handleFileTreeDelete,
|
|
handleFileTreeInit,
|
|
handleFileTreeSelect,
|
|
openEntity,
|
|
selectedEntityCount,
|
|
])
|
|
|
|
return (
|
|
<FileTreeOpenContext.Provider value={value}>
|
|
{children}
|
|
</FileTreeOpenContext.Provider>
|
|
)
|
|
}
|
|
|
|
export const useFileTreeOpenContext = () => {
|
|
const context = useContext(FileTreeOpenContext)
|
|
|
|
if (!context) {
|
|
throw new Error(
|
|
'useFileTreeOpenContext is only available inside FileTreeOpenProvider'
|
|
)
|
|
}
|
|
|
|
return context
|
|
}
|