mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3c01402bbd
PDF Detach v2 GitOrigin-RevId: 3deb76474185f9176cde23ab32ef51b90df6e8e9
33 lines
980 B
JavaScript
33 lines
980 B
JavaScript
import { Dropdown } from 'react-bootstrap'
|
|
import PdfFileList from './pdf-file-list'
|
|
import ControlledDropdown from '../../../shared/components/controlled-dropdown'
|
|
import { memo } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useDetachCompileContext as useCompileContext } from '../../../shared/context/detach-compile-context'
|
|
|
|
function PdfDownloadFilesButton() {
|
|
const { compiling, fileList } = useCompileContext()
|
|
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<ControlledDropdown
|
|
id="dropdown-files-logs-pane"
|
|
dropup
|
|
pullRight
|
|
disabled={compiling || !fileList}
|
|
>
|
|
<Dropdown.Toggle
|
|
className="dropdown-toggle"
|
|
title={t('other_logs_and_files')}
|
|
bsSize="small"
|
|
bsStyle="info"
|
|
/>
|
|
<Dropdown.Menu id="dropdown-files-logs-pane-list">
|
|
<PdfFileList fileList={fileList} />
|
|
</Dropdown.Menu>
|
|
</ControlledDropdown>
|
|
)
|
|
}
|
|
|
|
export default memo(PdfDownloadFilesButton)
|