mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
0cde5be165
Convert React context providers to TypeScript [don't squash!] GitOrigin-RevId: d92a91798286978410956ab791d73c17c5086d86
115 lines
3 KiB
TypeScript
115 lines
3 KiB
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import * as eventTracking from '../../../infrastructure/event-tracking'
|
|
|
|
import { Button } from 'react-bootstrap'
|
|
import Tooltip from '../../../shared/components/tooltip'
|
|
import Icon from '../../../shared/components/icon'
|
|
|
|
import { useEditorContext } from '../../../shared/context/editor-context'
|
|
import { useFileTreeActionable } from '../contexts/file-tree-actionable'
|
|
|
|
function FileTreeToolbar() {
|
|
const { permissionsLevel } = useEditorContext()
|
|
|
|
if (permissionsLevel === 'readOnly') return null
|
|
|
|
return (
|
|
<div className="toolbar toolbar-filetree">
|
|
<FileTreeToolbarLeft />
|
|
<FileTreeToolbarRight />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function FileTreeToolbarLeft() {
|
|
const { t } = useTranslation()
|
|
const {
|
|
canCreate,
|
|
startCreatingFolder,
|
|
startCreatingDocOrFile,
|
|
startUploadingDocOrFile,
|
|
} = useFileTreeActionable()
|
|
|
|
const createWithAnalytics = () => {
|
|
eventTracking.sendMB('new-file-click', { location: 'toolbar' })
|
|
startCreatingDocOrFile()
|
|
}
|
|
|
|
const uploadWithAnalytics = () => {
|
|
eventTracking.sendMB('upload-click', { location: 'toolbar' })
|
|
startUploadingDocOrFile()
|
|
}
|
|
|
|
if (!canCreate) return null
|
|
|
|
return (
|
|
<div className="toolbar-left">
|
|
<Tooltip
|
|
id="new-file"
|
|
description={t('new_file')}
|
|
overlayProps={{ placement: 'bottom' }}
|
|
>
|
|
<Button onClick={createWithAnalytics} bsStyle={null}>
|
|
<Icon type="file" fw accessibilityLabel={t('new_file')} />
|
|
</Button>
|
|
</Tooltip>
|
|
<Tooltip
|
|
id="new-folder"
|
|
description={t('new_folder')}
|
|
overlayProps={{ placement: 'bottom' }}
|
|
>
|
|
<Button onClick={startCreatingFolder} bsStyle={null}>
|
|
<Icon type="folder" fw accessibilityLabel={t('new_folder')} />
|
|
</Button>
|
|
</Tooltip>
|
|
<Tooltip
|
|
id="upload"
|
|
description={t('upload')}
|
|
overlayProps={{ placement: 'bottom' }}
|
|
>
|
|
<Button onClick={uploadWithAnalytics}>
|
|
<Icon type="upload" fw accessibilityLabel={t('upload')} />
|
|
</Button>
|
|
</Tooltip>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function FileTreeToolbarRight() {
|
|
const { t } = useTranslation()
|
|
const { canRename, canDelete, startRenaming, startDeleting } =
|
|
useFileTreeActionable()
|
|
|
|
if (!canRename && !canDelete) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className="toolbar-right">
|
|
{canRename ? (
|
|
<Tooltip
|
|
id="rename"
|
|
description={t('rename')}
|
|
overlayProps={{ placement: 'bottom' }}
|
|
>
|
|
<Button onClick={startRenaming}>
|
|
<Icon type="pencil" fw accessibilityLabel={t('rename')} />
|
|
</Button>
|
|
</Tooltip>
|
|
) : null}
|
|
{canDelete ? (
|
|
<Tooltip
|
|
id="delete"
|
|
description={t('delete')}
|
|
overlayProps={{ placement: 'bottom' }}
|
|
>
|
|
<Button onClick={startDeleting}>
|
|
<Icon type="trash-o" fw accessibilityLabel={t('delete')} />
|
|
</Button>
|
|
</Tooltip>
|
|
) : null}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default FileTreeToolbar
|