mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
d91ee50762
GitOrigin-RevId: 109a4357fc3b083ffbd3af5b8c98acf0f655f297
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import useFetchMock from './hooks/use-fetch-mock'
|
|
import PdfSynctexControls from '../js/features/pdf-preview/components/pdf-synctex-controls'
|
|
import PdfViewer from '../js/features/pdf-preview/components/pdf-viewer'
|
|
import {
|
|
mockBuildFile,
|
|
mockCompile,
|
|
mockSynctex,
|
|
mockValidPdf,
|
|
} from './fixtures/compile'
|
|
import { useEffect, Suspense } from 'react'
|
|
import { ScopeDecorator } from './decorators/scope'
|
|
|
|
export default {
|
|
title: 'Editor / PDF Viewer',
|
|
component: PdfViewer,
|
|
decorators: [ScopeDecorator],
|
|
}
|
|
|
|
export const Interactive = () => {
|
|
useFetchMock(fetchMock => {
|
|
mockCompile(fetchMock)
|
|
mockBuildFile(fetchMock)
|
|
mockValidPdf(fetchMock)
|
|
mockSynctex(fetchMock)
|
|
})
|
|
|
|
useEffect(() => {
|
|
window.dispatchEvent(
|
|
new CustomEvent(`cursor:editor:update`, {
|
|
detail: { row: 10, position: 10 },
|
|
})
|
|
)
|
|
}, [])
|
|
|
|
return (
|
|
<div>
|
|
<div className="pdf-viewer">
|
|
<Suspense fallback={null}>
|
|
<PdfViewer />
|
|
</Suspense>
|
|
</div>
|
|
<div style={{ position: 'absolute', top: 150, left: 50 }}>
|
|
<PdfSynctexControls />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|