mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c78a2f1809
[ReactFileTree] Release to Beta Users GitOrigin-RevId: 34e4120c6e296e11b21c23e350b9b516c0ce5428
109 lines
2.6 KiB
JavaScript
109 lines
2.6 KiB
JavaScript
import React, { useContext } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import Icon from '../../../shared/components/icon'
|
|
import TooltipButton from '../../../shared/components/tooltip-button'
|
|
|
|
import { FileTreeMainContext } from '../contexts/file-tree-main'
|
|
import { useFileTreeActionable } from '../contexts/file-tree-actionable'
|
|
|
|
import FileTreeBadge from './file-tree-badge'
|
|
|
|
function FileTreeToolbar() {
|
|
const { hasWritePermissions } = useContext(FileTreeMainContext)
|
|
|
|
if (!hasWritePermissions) return null
|
|
|
|
return (
|
|
<div className="toolbar toolbar-filetree">
|
|
<FileTreeToolbarLeft />
|
|
<FileTreeToolbarRight />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function FileTreeToolbarLeft() {
|
|
const { t } = useTranslation()
|
|
const {
|
|
canCreate,
|
|
startCreatingFolder,
|
|
startCreatingDocOrFile,
|
|
startUploadingDocOrFile
|
|
} = useFileTreeActionable()
|
|
|
|
if (!canCreate) return null
|
|
|
|
return (
|
|
<>
|
|
<TooltipButton
|
|
id="new_file"
|
|
description={t('new_file')}
|
|
onClick={startCreatingDocOrFile}
|
|
>
|
|
<Icon type="file" modifier="fw" accessibilityLabel={t('new_file')} />
|
|
</TooltipButton>
|
|
<TooltipButton
|
|
id="new_folder"
|
|
description={t('new_folder')}
|
|
onClick={startCreatingFolder}
|
|
>
|
|
<Icon
|
|
type="folder"
|
|
modifier="fw"
|
|
accessibilityLabel={t('new_folder')}
|
|
/>
|
|
</TooltipButton>
|
|
<TooltipButton
|
|
id="upload"
|
|
description={t('upload')}
|
|
onClick={startUploadingDocOrFile}
|
|
>
|
|
<Icon type="upload" modifier="fw" accessibilityLabel={t('upload')} />
|
|
</TooltipButton>
|
|
</>
|
|
)
|
|
}
|
|
|
|
function FileTreeToolbarRight() {
|
|
const { t } = useTranslation()
|
|
const {
|
|
canRename,
|
|
canDelete,
|
|
startRenaming,
|
|
startDeleting
|
|
} = useFileTreeActionable()
|
|
|
|
if (!canRename && !canDelete) {
|
|
return (
|
|
<div className="toolbar-right">
|
|
<FileTreeBadge />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="toolbar-right">
|
|
{canRename ? (
|
|
<TooltipButton
|
|
id="rename"
|
|
description={t('rename')}
|
|
onClick={startRenaming}
|
|
>
|
|
<Icon type="pencil" modifier="fw" accessibilityLabel={t('rename')} />
|
|
</TooltipButton>
|
|
) : null}
|
|
{canDelete ? (
|
|
<TooltipButton
|
|
id="delete"
|
|
description={t('delete')}
|
|
onClick={startDeleting}
|
|
>
|
|
<Icon type="trash-o" modifier="fw" accessibilityLabel={t('delete')} />
|
|
</TooltipButton>
|
|
) : null}
|
|
<FileTreeBadge />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default FileTreeToolbar
|