mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
12 lines
377 B
TypeScript
12 lines
377 B
TypeScript
|
import { findInTree } from '@/features/file-tree/util/find-in-tree'
|
||
|
import { Folder } from '../../../../../types/folder'
|
||
|
import { Doc } from '../../../../../types/doc'
|
||
|
|
||
|
export function findDocEntityById(fileTreeData: Folder, docId: string) {
|
||
|
const item = findInTree(fileTreeData, docId)
|
||
|
if (!item || item.type !== 'doc') {
|
||
|
return null
|
||
|
}
|
||
|
return item.entity as Doc
|
||
|
}
|