mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
73bc3418a2
GitOrigin-RevId: fcc88a362c3e97c9fddf85d47c3a83a0a0b89432
27 lines
773 B
JavaScript
27 lines
773 B
JavaScript
import Icon from '../../../shared/components/icon'
|
|
import { Button } from 'react-bootstrap'
|
|
import { usePdfPreviewContext } from '../contexts/pdf-preview-context'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { memo } from 'react'
|
|
|
|
function PdfClearCacheButton() {
|
|
const { compiling, clearCache, clearingCache } = usePdfPreviewContext()
|
|
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<Button
|
|
bsSize="small"
|
|
bsStyle="danger"
|
|
className="logs-pane-actions-clear-cache"
|
|
onClick={clearCache}
|
|
disabled={clearingCache || compiling}
|
|
>
|
|
{clearingCache ? <Icon type="refresh" spin /> : <Icon type="trash-o" />}
|
|
|
|
<span>{t('clear_cached_files')}</span>
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
export default memo(PdfClearCacheButton)
|