mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3c01402bbd
PDF Detach v2 GitOrigin-RevId: 3deb76474185f9176cde23ab32ef51b90df6e8e9
36 lines
955 B
JavaScript
36 lines
955 B
JavaScript
import { memo, useCallback } from 'react'
|
|
import { Button } from 'react-bootstrap'
|
|
import Icon from '../../../shared/components/icon'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useDetachCompileContext as useCompileContext } from '../../../shared/context/detach-compile-context'
|
|
|
|
function PdfHybridCodeCheckButton() {
|
|
const { codeCheckFailed, error, toggleLogs } = useCompileContext()
|
|
|
|
const { t } = useTranslation()
|
|
|
|
const handleClick = useCallback(() => {
|
|
toggleLogs()
|
|
}, [toggleLogs])
|
|
|
|
if (!codeCheckFailed) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<Button
|
|
bsSize="xsmall"
|
|
bsStyle="danger"
|
|
disabled={Boolean(error)}
|
|
className="btn-toggle-logs toolbar-item"
|
|
onClick={handleClick}
|
|
>
|
|
<Icon type="exclamation-triangle" />
|
|
<span className="toolbar-text toolbar-hide-small">
|
|
{t('code_check_failed')}
|
|
</span>
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
export default memo(PdfHybridCodeCheckButton)
|