mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
abb59e4603
[web] Migrate the file tree on the editor page to Bootstrap 5 GitOrigin-RevId: e2efec26242c8cdab37a54bc182b83bfb0f1eb3c
56 lines
1.6 KiB
JavaScript
56 lines
1.6 KiB
JavaScript
import { useRef } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import Icon from '../../../../shared/components/icon'
|
|
|
|
import { useFileTreeMainContext } from '../../contexts/file-tree-main'
|
|
import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
function FileTreeItemMenu({ id, name }) {
|
|
const { t } = useTranslation()
|
|
const { contextMenuCoords, setContextMenuCoords } = useFileTreeMainContext()
|
|
const menuButtonRef = useRef()
|
|
|
|
const isMenuOpen = Boolean(contextMenuCoords)
|
|
|
|
function handleClick(event) {
|
|
event.stopPropagation()
|
|
if (!contextMenuCoords) {
|
|
const target = menuButtonRef.current.getBoundingClientRect()
|
|
setContextMenuCoords({
|
|
top: target.top + target.height / 2,
|
|
left: target.right,
|
|
})
|
|
} else {
|
|
setContextMenuCoords(null)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="menu-button btn-group">
|
|
<button
|
|
className="entity-menu-toggle btn btn-sm"
|
|
id={`menu-button-${id}`}
|
|
onClick={handleClick}
|
|
ref={menuButtonRef}
|
|
aria-haspopup="true"
|
|
aria-expanded={isMenuOpen}
|
|
aria-label={t('open_action_menu', { name })}
|
|
>
|
|
<BootstrapVersionSwitcher
|
|
bs3={<Icon type="ellipsis-v" accessibilityLabel={t('menu')} />}
|
|
bs5={<MaterialIcon type="more_vert" accessibilityLabel={t('menu')} />}
|
|
/>
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
FileTreeItemMenu.propTypes = {
|
|
id: PropTypes.string.isRequired,
|
|
name: PropTypes.string.isRequired,
|
|
}
|
|
|
|
export default FileTreeItemMenu
|