mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
0dfb4d8de6
GitOrigin-RevId: 6d6ee5e993658e0895d9c2bcd4c2f60bba86c04e
28 lines
937 B
TypeScript
28 lines
937 B
TypeScript
import { createPortal } from 'react-dom'
|
|
import HistoryFileTree from '@/features/history/components/history-file-tree'
|
|
import LoadingSpinner from '@/shared/components/loading-spinner'
|
|
import DiffView from '@/features/history/components/diff-view/diff-view'
|
|
import ChangeList from '@/features/history/components/change-list/change-list'
|
|
import { useHistoryContext } from '@/features/history/context/history-context'
|
|
|
|
export default function History() {
|
|
const { updatesInfo } = useHistoryContext()
|
|
const fileTreeContainer = document.getElementById('history-file-tree')
|
|
|
|
return (
|
|
<>
|
|
{fileTreeContainer &&
|
|
createPortal(<HistoryFileTree />, fileTreeContainer)}
|
|
<div className="history-react">
|
|
{updatesInfo.loadingState === 'loadingInitial' ? (
|
|
<LoadingSpinner />
|
|
) : (
|
|
<>
|
|
<DiffView />
|
|
<ChangeList />
|
|
</>
|
|
)}
|
|
</div>
|
|
</>
|
|
)
|
|
}
|