mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
f065a7a909
GitOrigin-RevId: fbb23b32c47edbe5a22badc627318accbd09e82a
98 lines
2.5 KiB
JavaScript
98 lines
2.5 KiB
JavaScript
import PropTypes from 'prop-types'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import Icon from '../../../shared/components/icon'
|
|
import TooltipButton from '../../../shared/components/tooltip-button'
|
|
|
|
import { useEditorContext } from '../../../shared/context/editor-context'
|
|
import { useFileTreeActionable } from '../contexts/file-tree-actionable'
|
|
|
|
function FileTreeToolbar() {
|
|
const { permissionsLevel } = useEditorContext(editorContextPropTypes)
|
|
|
|
if (permissionsLevel === 'readOnly') return null
|
|
|
|
return (
|
|
<div className="toolbar toolbar-filetree">
|
|
<FileTreeToolbarLeft />
|
|
<FileTreeToolbarRight />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const editorContextPropTypes = {
|
|
permissionsLevel: PropTypes.oneOf(['readOnly', 'readAndWrite', 'owner']),
|
|
}
|
|
|
|
function FileTreeToolbarLeft() {
|
|
const { t } = useTranslation()
|
|
const {
|
|
canCreate,
|
|
startCreatingFolder,
|
|
startCreatingDocOrFile,
|
|
startUploadingDocOrFile,
|
|
} = useFileTreeActionable()
|
|
|
|
if (!canCreate) return null
|
|
|
|
return (
|
|
<div className="toolbar-left">
|
|
<TooltipButton
|
|
id="new_file"
|
|
description={t('new_file')}
|
|
onClick={startCreatingDocOrFile}
|
|
>
|
|
<Icon type="file" fw accessibilityLabel={t('new_file')} />
|
|
</TooltipButton>
|
|
<TooltipButton
|
|
id="new_folder"
|
|
description={t('new_folder')}
|
|
onClick={startCreatingFolder}
|
|
>
|
|
<Icon type="folder" fw accessibilityLabel={t('new_folder')} />
|
|
</TooltipButton>
|
|
<TooltipButton
|
|
id="upload"
|
|
description={t('upload')}
|
|
onClick={startUploadingDocOrFile}
|
|
>
|
|
<Icon type="upload" fw accessibilityLabel={t('upload')} />
|
|
</TooltipButton>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function FileTreeToolbarRight() {
|
|
const { t } = useTranslation()
|
|
const { canRename, canDelete, startRenaming, startDeleting } =
|
|
useFileTreeActionable()
|
|
|
|
if (!canRename && !canDelete) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className="toolbar-right">
|
|
{canRename ? (
|
|
<TooltipButton
|
|
id="rename"
|
|
description={t('rename')}
|
|
onClick={startRenaming}
|
|
>
|
|
<Icon type="pencil" fw accessibilityLabel={t('rename')} />
|
|
</TooltipButton>
|
|
) : null}
|
|
{canDelete ? (
|
|
<TooltipButton
|
|
id="delete"
|
|
description={t('delete')}
|
|
onClick={startDeleting}
|
|
>
|
|
<Icon type="trash-o" fw accessibilityLabel={t('delete')} />
|
|
</TooltipButton>
|
|
) : null}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default FileTreeToolbar
|