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 ? (
) : null}
{downloadPath ? (
) : null}
{canDelete ? (
) : null}
{canCreate ? (
<>
>
) : null}
>
)
}
export default FileTreeItemMenuItems