import { isUndefined } from "lodash-es"; import { useEffect } from "react"; import { Link } from "react-router-dom"; import { useTranslation } from "react-i18next"; import { userService } from "../services"; import { useAppSelector } from "../store"; import showDailyReviewDialog from "./DailyReviewDialog"; import showSettingDialog from "./SettingDialog"; import UserBanner from "./UserBanner"; import UsageHeatMap from "./UsageHeatMap"; import ShortcutList from "./ShortcutList"; import TagList from "./TagList"; import "../less/siderbar.less"; const Sidebar = () => { const { t } = useTranslation(); const location = useAppSelector((state) => state.location); useEffect(() => { toggleSiderbar(false); }, [location.query]); const handleSettingBtnClick = () => { showSettingDialog(); }; return ( <>
toggleSiderbar(false)}>
); }; export const toggleSiderbar = (show?: boolean) => { const sidebarEl = document.body.querySelector(".sidebar-wrapper") as HTMLDivElement; const maskEl = document.body.querySelector(".mask") as HTMLDivElement; if (isUndefined(show)) { show = !sidebarEl.classList.contains("show"); } if (show) { sidebarEl.classList.add("show"); maskEl.classList.add("show"); } else { sidebarEl.classList.remove("show"); maskEl.classList.remove("show"); } }; export default Sidebar;