Merge 51fe9299adc3908dc40262f42986edb1f08a5819 into a74d3feae425063e559d9d185cdbf2af1fa61885

This commit is contained in:
Savvy Bit 2025-03-27 17:27:50 +00:00 committed by GitHub
commit e9e3a626d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,6 +14,7 @@ import { AppHeader } from "@/components/layouts/global/app-header.tsx";
import Aside from "@/components/layouts/global/aside.tsx";
import classes from "./app-shell.module.css";
import { useTrialEndAction } from "@/ee/hooks/use-trial-end-action.tsx";
import { useToggleSidebar } from "./hooks/hooks/use-toggle-sidebar";
export default function GlobalAppShell({
children,
@ -22,12 +23,29 @@ export default function GlobalAppShell({
}) {
useTrialEndAction();
const [mobileOpened] = useAtom(mobileSidebarAtom);
const toggleMobile = useToggleSidebar(mobileSidebarAtom);
const [desktopOpened] = useAtom(desktopSidebarAtom);
const [{ isAsideOpen }] = useAtom(asideStateAtom);
const [sidebarWidth, setSidebarWidth] = useAtom(sidebarWidthAtom);
const [isResizing, setIsResizing] = useState(false);
const sidebarRef = useRef(null);
const handleOutSideClick = (event: MouseEvent) => {
if (mobileOpened && !sidebarRef.current.contains(event.target)) {
event.stopPropagation();
toggleMobile();
}
}
useEffect(() => {
document.addEventListener("mousedown", handleOutSideClick);
return () => {
document.removeEventListener("mousedown", handleOutSideClick);
};
}, [mobileOpened]);
const startResizing = React.useCallback((mouseDownEvent) => {
mouseDownEvent.preventDefault();
setIsResizing(true);