mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
addaa355d0
Remove default toggle button class GitOrigin-RevId: d405556dba0947c1ada2d5cf998bb2eb05d9886b
180 lines
5 KiB
JavaScript
180 lines
5 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { Dropdown, MenuItem, OverlayTrigger, Tooltip } from 'react-bootstrap'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Icon from '../../../shared/components/icon'
|
|
|
|
function PreviewRecompileButton({
|
|
compilerState: {
|
|
isAutoCompileOn,
|
|
isClearingCache,
|
|
isCompiling,
|
|
isDraftModeOn,
|
|
isSyntaxCheckOn
|
|
},
|
|
onClearCache,
|
|
onRecompile,
|
|
onRunSyntaxCheckNow,
|
|
onSetAutoCompile,
|
|
onSetDraftMode,
|
|
onSetSyntaxCheck,
|
|
showText
|
|
}) {
|
|
const { t } = useTranslation()
|
|
|
|
function handleRecompileFromScratch() {
|
|
onClearCache()
|
|
.then(() => {
|
|
onRecompile()
|
|
})
|
|
.catch(error => {
|
|
console.error(error)
|
|
})
|
|
}
|
|
|
|
function handleSelectAutoCompileOn() {
|
|
onSetAutoCompile(true)
|
|
}
|
|
|
|
function handleSelectAutoCompileOff() {
|
|
onSetAutoCompile(false)
|
|
}
|
|
|
|
function handleSelectDraftModeOn() {
|
|
onSetDraftMode(true)
|
|
}
|
|
|
|
function handleSelectDraftModeOff() {
|
|
onSetDraftMode(false)
|
|
}
|
|
|
|
function handleSelectSyntaxCheckOn() {
|
|
onSetSyntaxCheck(true)
|
|
}
|
|
|
|
function handleSelectSyntaxCheckOff() {
|
|
onSetSyntaxCheck(false)
|
|
}
|
|
|
|
let compilingProps = {}
|
|
let recompileProps = {}
|
|
function _hideText(keepAria) {
|
|
return {
|
|
'aria-hidden': !keepAria,
|
|
style: {
|
|
position: 'absolute',
|
|
right: '-100vw'
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!showText) {
|
|
compilingProps = _hideText(isCompiling || isClearingCache)
|
|
recompileProps = _hideText(!isCompiling || !isClearingCache)
|
|
} else if (isCompiling || isClearingCache) {
|
|
recompileProps = _hideText()
|
|
} else {
|
|
compilingProps = _hideText()
|
|
}
|
|
|
|
const buttonElement = (
|
|
<Dropdown
|
|
id="pdf-recompile-dropdown"
|
|
className="btn-recompile-group toolbar-item"
|
|
>
|
|
<button className="btn btn-recompile" onClick={onRecompile}>
|
|
<Icon type="refresh" spin={isCompiling} />
|
|
|
|
<span id="text-compiling" className="toolbar-text" {...compilingProps}>
|
|
{t('compiling')}
|
|
…
|
|
</span>
|
|
|
|
<span id="text-recompile" className="toolbar-text" {...recompileProps}>
|
|
{t('recompile')}
|
|
</span>
|
|
</button>
|
|
<Dropdown.Toggle
|
|
aria-label={t('toggle_compile_options_menu')}
|
|
className="btn btn-recompile"
|
|
bsStyle="success"
|
|
/>
|
|
<Dropdown.Menu>
|
|
<MenuItem header>{t('auto_compile')}</MenuItem>
|
|
<MenuItem onSelect={handleSelectAutoCompileOn}>
|
|
<Icon type={isAutoCompileOn ? 'check' : ''} modifier="fw" />
|
|
{t('on')}
|
|
</MenuItem>
|
|
<MenuItem onSelect={handleSelectAutoCompileOff}>
|
|
<Icon type={!isAutoCompileOn ? 'check' : ''} modifier="fw" />
|
|
{t('off')}
|
|
</MenuItem>
|
|
<MenuItem header>{t('compile_mode')}</MenuItem>
|
|
<MenuItem onSelect={handleSelectDraftModeOff}>
|
|
<Icon type={!isDraftModeOn ? 'check' : ''} modifier="fw" />
|
|
{t('normal')}
|
|
</MenuItem>
|
|
<MenuItem onSelect={handleSelectDraftModeOn}>
|
|
<Icon type={isDraftModeOn ? 'check' : ''} modifier="fw" />
|
|
{t('fast')} <span className="subdued">[draft]</span>
|
|
</MenuItem>
|
|
<MenuItem header>Syntax Checks</MenuItem>
|
|
<MenuItem onSelect={handleSelectSyntaxCheckOn}>
|
|
<Icon type={isSyntaxCheckOn ? 'check' : ''} modifier="fw" />
|
|
{t('stop_on_validation_error')}
|
|
</MenuItem>
|
|
<MenuItem onSelect={handleSelectSyntaxCheckOff}>
|
|
<Icon type={!isSyntaxCheckOn ? 'check' : ''} modifier="fw" />
|
|
{t('ignore_validation_errors')}
|
|
</MenuItem>
|
|
<MenuItem onSelect={onRunSyntaxCheckNow}>
|
|
<Icon type="" modifier="fw" />
|
|
{t('run_syntax_check_now')}
|
|
</MenuItem>
|
|
<MenuItem divider />
|
|
<MenuItem
|
|
onSelect={handleRecompileFromScratch}
|
|
disabled={isCompiling || isClearingCache}
|
|
aria-disabled={!!(isCompiling || isClearingCache)}
|
|
>
|
|
{t('recompile_from_scratch')}
|
|
</MenuItem>
|
|
</Dropdown.Menu>
|
|
</Dropdown>
|
|
)
|
|
|
|
return showText ? (
|
|
buttonElement
|
|
) : (
|
|
<OverlayTrigger
|
|
placement="bottom"
|
|
overlay={
|
|
<Tooltip id="tooltip-download-pdf">
|
|
{isCompiling || isClearingCache ? t('compiling') : t('recompile')}
|
|
</Tooltip>
|
|
}
|
|
>
|
|
{buttonElement}
|
|
</OverlayTrigger>
|
|
)
|
|
}
|
|
|
|
PreviewRecompileButton.propTypes = {
|
|
compilerState: PropTypes.shape({
|
|
isAutoCompileOn: PropTypes.bool.isRequired,
|
|
isClearingCache: PropTypes.bool.isRequired,
|
|
isCompiling: PropTypes.bool.isRequired,
|
|
isDraftModeOn: PropTypes.bool.isRequired,
|
|
isSyntaxCheckOn: PropTypes.bool.isRequired,
|
|
logEntries: PropTypes.object.isRequired
|
|
}),
|
|
onClearCache: PropTypes.func.isRequired,
|
|
onRecompile: PropTypes.func.isRequired,
|
|
onRunSyntaxCheckNow: PropTypes.func.isRequired,
|
|
onSetAutoCompile: PropTypes.func.isRequired,
|
|
onSetDraftMode: PropTypes.func.isRequired,
|
|
onSetSyntaxCheck: PropTypes.func.isRequired,
|
|
showText: PropTypes.bool.isRequired
|
|
}
|
|
|
|
export default PreviewRecompileButton
|