import useCurrentUser from "@/hooks/useCurrentUser"; import useNavigateTo from "@/hooks/useNavigateTo"; import { useGlobalStore, useUserStore } from "@/store/module"; import { extractUsernameFromName } from "@/store/v1/resourceName"; import { User_Role } from "@/types/proto/api/v2/user_service"; import { useTranslate } from "@/utils/i18n"; import showAboutSiteDialog from "./AboutSiteDialog"; import Icon from "./Icon"; import UserAvatar from "./UserAvatar"; import Dropdown from "./kit/Dropdown"; const UserBanner = () => { const t = useTranslate(); const navigateTo = useNavigateTo(); const globalStore = useGlobalStore(); const userStore = useUserStore(); const { systemStatus } = globalStore.state; const user = useCurrentUser(); const title = user ? user.nickname : systemStatus.customizedProfile.name || "memos"; const handleMyAccountClick = () => { navigateTo(`/u/${encodeURIComponent(extractUsernameFromName(user.name))}`); }; const handleAboutBtnClick = () => { showAboutSiteDialog(); }; const handleSignOutBtnClick = async () => { await userStore.doSignOut(); window.location.href = "/auth"; }; return (