mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-12 12:54:54 +00:00
a40c593a21
[Web] add selectedFileName to context in editor (fileTreeActionable) GitOrigin-RevId: 53bc1a9692cbd6626a44ae8f0cd8ac68d6ce69ae
69 lines
2.1 KiB
JavaScript
69 lines
2.1 KiB
JavaScript
import { useCallback } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import * as eventTracking from '../../../../infrastructure/event-tracking'
|
|
import { useProjectContext } from '@/shared/context/project-context'
|
|
|
|
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,
|
|
selectedFileName,
|
|
} = useFileTreeActionable()
|
|
|
|
const { owner } = useProjectContext()
|
|
|
|
const downloadWithAnalytics = useCallback(() => {
|
|
// we are only interested in downloads of bib files WRT analytics, for the purposes of promoting the tpr integrations
|
|
if (selectedFileName?.endsWith('.bib')) {
|
|
eventTracking.sendMB('download-bib-file', { projectOwner: owner._id })
|
|
}
|
|
}, [selectedFileName, owner])
|
|
|
|
const createWithAnalytics = useCallback(() => {
|
|
eventTracking.sendMB('new-file-click', { location: 'file-menu' })
|
|
startCreatingDocOrFile()
|
|
}, [startCreatingDocOrFile])
|
|
|
|
const uploadWithAnalytics = useCallback(() => {
|
|
eventTracking.sendMB('upload-click', { location: 'file-menu' })
|
|
startUploadingDocOrFile()
|
|
}, [startUploadingDocOrFile])
|
|
|
|
return (
|
|
<>
|
|
{canRename ? (
|
|
<MenuItem onClick={startRenaming}>{t('rename')}</MenuItem>
|
|
) : null}
|
|
{downloadPath ? (
|
|
<MenuItem href={downloadPath} onClick={downloadWithAnalytics} download>
|
|
{t('download')}
|
|
</MenuItem>
|
|
) : null}
|
|
{canDelete ? (
|
|
<MenuItem onClick={startDeleting}>{t('delete')}</MenuItem>
|
|
) : null}
|
|
{canCreate ? (
|
|
<>
|
|
<MenuItem divider />
|
|
<MenuItem onClick={createWithAnalytics}>{t('new_file')}</MenuItem>
|
|
<MenuItem onClick={startCreatingFolder}>{t('new_folder')}</MenuItem>
|
|
<MenuItem onClick={uploadWithAnalytics}>{t('upload')}</MenuItem>
|
|
</>
|
|
) : null}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FileTreeItemMenuItems
|