diff --git a/client/modules/IDE/components/Sidebar.jsx b/client/modules/IDE/components/Sidebar.jsx index 7102c9cff..24fd487c9 100644 --- a/client/modules/IDE/components/Sidebar.jsx +++ b/client/modules/IDE/components/Sidebar.jsx @@ -1,4 +1,4 @@ -import React, { useRef } from 'react'; +import React, { useRef, useEffect } from 'react'; import classNames from 'classnames'; import { useTranslation } from 'react-i18next'; import { useDispatch, useSelector } from 'react-redux'; @@ -30,21 +30,37 @@ export default function SideBar() { ); const isExpanded = useSelector((state) => state.ide.sidebarIsExpanded); const canEditProject = useSelector(selectCanEditSketch); + const isAuthenticated = useSelector(getAuthenticated); const sidebarOptionsRef = useRef(null); - const isAuthenticated = useSelector(getAuthenticated); + useEffect(() => { + function handleClickOutside(event) { + if ( + projectOptionsVisible && + sidebarOptionsRef.current && + !sidebarOptionsRef.current.contains(event.target) + ) { + setTimeout(() => dispatch(closeProjectOptions()), 300); + } + } - const onBlurComponent = () => { - setTimeout(() => dispatch(closeProjectOptions()), 200); - }; + if (projectOptionsVisible) { + document.addEventListener('mousedown', handleClickOutside); + } else { + document.removeEventListener('mousedown', handleClickOutside); + } + + return () => { + document.removeEventListener('mousedown', handleClickOutside); + }; + }, [projectOptionsVisible, dispatch]); const toggleProjectOptions = (e) => { e.preventDefault(); if (projectOptionsVisible) { dispatch(closeProjectOptions()); } else { - sidebarOptionsRef.current?.focus(); dispatch(openProjectOptions()); } }; @@ -65,9 +81,7 @@ export default function SideBar() { dispatch(collapseSidebar()); dispatch(closeProjectOptions()); }} - > - {' '} - + /> )}
{t('Sidebar.Title')} -
+
-
    -
  • - -
  • -
  • - -
  • - {isAuthenticated && ( + {projectOptionsVisible && ( +
      +
    • + +
    • - )} -
    + {isAuthenticated && ( +
  • + +
  • + )} +
+ )}