1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

change user profile page layout

This commit is contained in:
Fedor Katurov 2025-01-22 14:36:26 +07:00
parent 25c67310d4
commit 5ef19f49c5
5 changed files with 61 additions and 34 deletions

View file

@ -1,6 +1,7 @@
import { FC } from 'react';
import { Avatar } from '~/components/common/Avatar';
import { Card } from '~/components/common/Card';
import { Placeholder } from '~/components/placeholders/Placeholder';
import { imagePresets } from '~/constants/urls';
import { IUser } from '~/types/auth';
@ -11,28 +12,39 @@ interface Props {
profile: IUser;
isLoading: boolean;
username: string;
description: string;
}
const ProfilePageLeft: FC<Props> = ({ username, profile, isLoading }) => {
const ProfilePageLeft: FC<Props> = ({
username,
profile,
description,
isLoading,
}) => {
return (
<div className={styles.wrap}>
<Avatar
username={username}
url={profile?.photo?.url}
className={styles.avatar}
preset={imagePresets['600']}
/>
<Card className={styles.wrap} elevation={0} seamless>
<Card seamless>
<Avatar
username={username}
url={profile?.photo?.url}
className={styles.avatar}
preset={imagePresets['600']}
/>
<div className={styles.region}>
<div className={styles.name}>
{isLoading ? <Placeholder /> : profile?.fullname}
</div>
<div className={styles.username}>
{isLoading ? <Placeholder /> : `~${profile?.username}`}
</div>
</div>
</Card>
<div className={styles.region}>
<div className={styles.name}>
{isLoading ? <Placeholder /> : profile?.fullname}
</div>
<div className={styles.username}>
{isLoading ? <Placeholder /> : `~${profile?.username}`}
</div>
<div className={styles.description}>{description}</div>
</div>
</div>
</Card>
);
};