mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5ba970b81e
Disable Compile Button when Compiling GitOrigin-RevId: c25cbaab3547695919ba62385cffef2a44665fec
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
import { Button, OverlayTrigger, Tooltip } from 'react-bootstrap'
|
|
import PropTypes from 'prop-types'
|
|
import Icon from '../../../shared/components/icon'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { memo } from 'react'
|
|
import { useLayoutContext } from '../../../shared/context/layout-context'
|
|
|
|
const modifierKey = /Mac/i.test(navigator.platform) ? 'Cmd' : 'Ctrl'
|
|
|
|
function PdfCompileButtonInner({ startCompile, compiling }) {
|
|
const { detachRole } = useLayoutContext()
|
|
|
|
const { t } = useTranslation()
|
|
|
|
const compileButtonLabel = compiling ? t('compiling') + '…' : t('recompile')
|
|
|
|
return (
|
|
<OverlayTrigger
|
|
placement="bottom"
|
|
delayShow={500}
|
|
overlay={
|
|
<Tooltip id="tooltip-logs-toggle" className="keyboard-tooltip">
|
|
{t('recompile_pdf')}{' '}
|
|
{detachRole !== 'detached' && (
|
|
<span className="keyboard-shortcut">({modifierKey} + Enter)</span>
|
|
)}
|
|
</Tooltip>
|
|
}
|
|
>
|
|
<Button
|
|
className="btn-recompile"
|
|
bsStyle="success"
|
|
onClick={() => startCompile()}
|
|
aria-label={compileButtonLabel}
|
|
disabled={compiling}
|
|
>
|
|
<Icon type="refresh" spin={compiling} />
|
|
<span className="toolbar-hide-medium toolbar-hide-small btn-recompile-label">
|
|
{compileButtonLabel}
|
|
</span>
|
|
</Button>
|
|
</OverlayTrigger>
|
|
)
|
|
}
|
|
|
|
PdfCompileButtonInner.propTypes = {
|
|
compiling: PropTypes.bool.isRequired,
|
|
startCompile: PropTypes.func.isRequired,
|
|
}
|
|
|
|
export default memo(PdfCompileButtonInner)
|