1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

added profile quick info

This commit is contained in:
Fedor Katurov 2022-07-19 14:58:28 +07:00
parent fa17aac056
commit 1241d2c784
9 changed files with 131 additions and 64 deletions

View file

@ -3,60 +3,26 @@ import React, { FC, useCallback, useState } from 'react';
import { Manager, Popper, Reference } from 'react-popper';
import { Avatar } from '~/components/common/Avatar';
import { useRandomPhrase } from '~/constants/phrases';
import { MenuButton } from '~/components/menu';
import { ProfileQuickInfo } from '~/containers/profile/ProfileQuickInfo';
import { IUser } from '~/types/auth';
import { path } from '~/utils/ramda';
import styles from './styles.module.scss';
interface Props {
user: IUser;
withDetails: boolean;
className?: string;
}
const modifiers = [
{
name: 'offset',
options: {
offset: [0, 10],
},
},
];
const CommentAvatar: FC<Props> = ({ user, withDetails, className }) => {
const [hovered, setHovered] = useState(false);
const randomPhrase = useRandomPhrase('USER_DESCRIPTION');
const onMouseOver = useCallback(() => setHovered(true), [setHovered]);
const onMouseOut = useCallback(() => setHovered(false), [setHovered]);
const CommentAvatar: FC<Props> = ({ user, className }) => {
return (
<Manager>
<Reference>
{({ ref }) => (
<Avatar
url={path(['photo', 'url'], user)}
username={user.username}
className={className}
onMouseOver={onMouseOver}
onMouseOut={onMouseOut}
ref={ref}
/>
)}
</Reference>
{hovered && withDetails && (
<Popper placement="right" modifiers={modifiers} strategy="fixed">
{({ style, ref }) => (
<div style={style} ref={ref} className={styles.popper}>
<h4 className={styles.username}>{user.fullname || user.username}</h4>
<div className={styles.description}>{user.description || randomPhrase}</div>
</div>
)}
</Popper>
)}
</Manager>
<MenuButton
position="top"
icon={
<Avatar url={path(['photo', 'url'], user)} username={user.username} className={className} />
}
>
<ProfileQuickInfo user={user} />
</MenuButton>
);
};