// @ts-nocheck import React, { useEffect } from 'react'; import { Scrollbar } from 'react-scrollbars-custom'; import classNames from 'classnames'; import withDashboard from '@/containers/Dashboard/withDashboard'; import { useObserveSidebarExpendedBodyclass } from './hooks'; import { compose } from '@/utils'; /** * Sidebar container/ * @returns {JSX.Element} */ function SidebarContainerJSX({ // #ownProps children, // #withDashboard sidebarExpended, }) { const sidebarScrollerRef = React.useRef(); // Toggles classname to body once sidebar expend/shrink. useObserveSidebarExpendedBodyclass(sidebarExpended); useEffect(() => { if (!sidebarExpended && sidebarScrollerRef.current) { sidebarScrollerRef.current.scrollTo({ top: 0, left: 0, }); } }, [sidebarExpended]); const handleSidebarMouseLeave = () => { if (!sidebarExpended && sidebarScrollerRef.current) { sidebarScrollerRef.current.scrollTo({ top: 0, left: 0 }); } }; const scrollerElementRef = React.useCallback((ref) => { sidebarScrollerRef.current = ref; }, []); return ( ); } export const SidebarContainer = compose( withDashboard(({ sidebarExpended }) => ({ sidebarExpended, })), )(SidebarContainerJSX);