mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
3be937c503
Migrate layout context to TypeScript GitOrigin-RevId: ce453bfb67f7c36176fa24144413b556cd3c117e
26 lines
714 B
JavaScript
26 lines
714 B
JavaScript
import { useLayoutContext } from '../../../shared/context/layout-context'
|
|
import PdfSynctexControls from './pdf-synctex-controls'
|
|
|
|
export function DefaultSynctexControl() {
|
|
const { detachRole } = useLayoutContext()
|
|
if (!detachRole) {
|
|
return <PdfSynctexControls />
|
|
}
|
|
return null
|
|
}
|
|
|
|
export function DetacherSynctexControl() {
|
|
const { detachRole, detachIsLinked } = useLayoutContext()
|
|
if (detachRole === 'detacher' && detachIsLinked) {
|
|
return <PdfSynctexControls />
|
|
}
|
|
return null
|
|
}
|
|
|
|
export function DetachedSynctexControl() {
|
|
const { detachRole, detachIsLinked } = useLayoutContext()
|
|
if (detachRole === 'detached' && detachIsLinked) {
|
|
return <PdfSynctexControls />
|
|
}
|
|
return null
|
|
}
|