ConceptPortal-public/rsconcept/frontend/src/components/Navigation/UserMenu.tsx
2023-08-27 16:35:17 +03:00

40 lines
1018 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 h-full px-1 py-2 font-semibold rounded-lg hover:underline clr-btn-nav text-primary'>
Войти...
</Link>
);
}
function UserMenu() {
const { user } = useAuth();
const menu = useDropdown();
return (
<div ref={menu.ref}>
<div className='w-[4.2rem] flex justify-end'>
{ !user && <LoginRef />}
{ user &&
<NavigationButton
icon={<UserIcon />}
description={`Пользователь ${user?.username}`}
onClick={menu.toggle}
/>}
</div>
{ user && menu.isActive &&
<UserDropdown
hideDropdown={() => menu.hide()}
/>}
</div>
);
}
export default UserMenu;