mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
af5543f119
PDF Detach: Wait for i18n GitOrigin-RevId: d1774c917ba903eab9980c90dc8b1e41eaf5e935
30 lines
815 B
JavaScript
30 lines
815 B
JavaScript
import ReactDOM from 'react-dom'
|
|
import PdfPreview from './pdf-preview'
|
|
import { ContextRoot } from '../../../shared/context/root-context'
|
|
import useWaitForI18n from '../../../shared/hooks/use-wait-for-i18n'
|
|
import { Shortcuts } from './shortcuts'
|
|
import PdfPreviewDetachedRootSafariWarning from './pdf-preview-detached-root-safari-warning'
|
|
|
|
function PdfPreviewDetachedRoot() {
|
|
const { isReady } = useWaitForI18n()
|
|
|
|
if (!isReady) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<ContextRoot>
|
|
<Shortcuts>
|
|
<PdfPreviewDetachedRootSafariWarning />
|
|
<PdfPreview />
|
|
</Shortcuts>
|
|
</ContextRoot>
|
|
)
|
|
}
|
|
|
|
export default PdfPreviewDetachedRoot // for testing
|
|
|
|
const element = document.getElementById('pdf-preview-detached-root')
|
|
if (element) {
|
|
ReactDOM.render(<PdfPreviewDetachedRoot />, element)
|
|
}
|