ConceptPortal-public/rsconcept/frontend/src/components/Navigation/UserMenu.tsx
2023-07-25 20:27:29 +03:00

38 lines
909 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Link } from 'react-router-dom';
import { useAuth } from '../../context/AuthContext';
import useDropdown from '../../hooks/useDropdown';
import { UserIcon } from '../Icons';
import NavigationButton from './NavigationButton';
import UserDropdown from './UserDropdown';
function LoginRef() {
return (
<Link to='login' className='inline-block text-sm font-bold hover:underline'>
Войти...
</Link>
);
}
function UserMenu() {
const { user } = useAuth();
const menu = useDropdown();
return (
<div ref={menu.ref}>
{ !user && <LoginRef />}
{ user &&
<NavigationButton
icon={<UserIcon />}
description={`Пользователь ${user?.username}`}
onClick={menu.toggle}
/>}
{ user && menu.isActive &&
<UserDropdown
hideDropdown={() => { menu.hide(); }}
/>}
</div>
);
}
export default UserMenu;