mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
ec13ebdc7c
GitOrigin-RevId: af55d782aeaab3acd516a1581d59dd3332109cb8
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import { useTranslation } from 'react-i18next'
|
|
|
|
import { MenuItem } from 'react-bootstrap'
|
|
import { useFileTreeActionable } from '../../contexts/file-tree-actionable'
|
|
|
|
function FileTreeItemMenuItems() {
|
|
const { t } = useTranslation()
|
|
|
|
const {
|
|
canRename,
|
|
canDelete,
|
|
canCreate,
|
|
startRenaming,
|
|
startDeleting,
|
|
startCreatingFolder,
|
|
startCreatingDocOrFile,
|
|
startUploadingDocOrFile,
|
|
downloadPath,
|
|
} = useFileTreeActionable()
|
|
|
|
return (
|
|
<>
|
|
{canRename ? (
|
|
<MenuItem onClick={startRenaming}>{t('rename')}</MenuItem>
|
|
) : null}
|
|
{downloadPath ? (
|
|
<MenuItem href={downloadPath}>{t('download')}</MenuItem>
|
|
) : null}
|
|
{canDelete ? (
|
|
<MenuItem onClick={startDeleting}>{t('delete')}</MenuItem>
|
|
) : null}
|
|
{canCreate ? (
|
|
<>
|
|
<MenuItem divider />
|
|
<MenuItem onClick={startCreatingDocOrFile}>{t('new_file')}</MenuItem>
|
|
<MenuItem onClick={startCreatingFolder}>{t('new_folder')}</MenuItem>
|
|
<MenuItem onClick={startUploadingDocOrFile}>{t('upload')}</MenuItem>
|
|
</>
|
|
) : null}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FileTreeItemMenuItems
|