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

added profile sidebar just to test if I can

This commit is contained in:
Fedor Katurov 2020-11-17 17:11:13 +07:00
parent b4edba1beb
commit d9a1b5cf13
10 changed files with 209 additions and 10 deletions

View file

@ -0,0 +1,31 @@
import React, { FC } from 'react';
import styles from './styles.module.scss';
import { ProfileAvatar } from '~/containers/profile/ProfileAvatar';
import { Placeholder } from '~/components/placeholders/Placeholder';
import { getPrettyDate } from '~/utils/dom';
import { IUser } from '~/redux/auth/types';
interface IProps {
is_loading: boolean;
user: IUser;
}
const ProfileSidebarInfo: FC<IProps> = ({ is_loading, user }) => (
<div className={styles.wrap}>
<div className={styles.avatar}>
<ProfileAvatar />
</div>
<div className={styles.field}>
<div className={styles.name}>
{is_loading ? <Placeholder width="80%" /> : user.fullname || user.username}
</div>
<div className={styles.description}>
{is_loading ? <Placeholder /> : getPrettyDate(user.last_seen)}
</div>
</div>
</div>
);
export { ProfileSidebarInfo };

View file

@ -0,0 +1,39 @@
.wrap.wrap {
justify-content: center;
align-items: center;
box-sizing: border-box;
position: relative;
flex: 0 0 100px;
display: flex;
margin: $gap;
box-shadow: transparentize(white, 0.95) 0 0 0 1px;
border-radius: $radius;
background: transparentize(black, 0.8);
}
.avatar {
border-radius: $radius;
width: 100px;
height: 100px;
background-size: cover;
position: relative;
flex: 0 0 100px;
left: -$gap;
margin-right: 10px;
}
.field {
flex: 1;
padding: $gap;
}
.name {
font: $font_24_bold;
margin-bottom: 4px;
}
.description {
color: transparentize($color: white, $amount: 0.7);
font: $font_14_regular;
text-transform: lowercase;
}

View file

@ -0,0 +1,21 @@
import React, { FC } from 'react';
import styles from './styles.module.scss';
import { Icon } from '~/components/input/Icon';
interface IProps {}
const ProfileSidebarMenu: FC<IProps> = () => (
<div className={styles.wrap}>
<div className={styles.row}>
<Icon icon="settings" />
<span>Настройки</span>
</div>
<div className={styles.row}>
<Icon icon="messages" />
<span>Сообщения</span>
</div>
</div>
);
export { ProfileSidebarMenu };

View file

@ -0,0 +1,42 @@
.wrap {
display: flex;
align-items: stretch;
justify-content: center;
flex-direction: column;
margin: 0 $gap;
box-sizing: border-box;
box-shadow: $sidebar_border 0 0 0 1px;
border-radius: $radius;
background-color: transparentize(black, 0.9)
}
.row {
padding: $gap;
font: $font_18_semibold;
box-shadow: $sidebar_border 0 -1px;
cursor: pointer;
background-color: transparentize(black, 1);
transition: all 250ms;
display: flex;
align-items: center;
justify-content: flex-start;
height: 30px;
opacity: 0.5;
&:hover {
background-color: transparentize($wisegreen, 0.5);
opacity: 1;
}
&:first-child {
border-radius: $radius $radius 0 0;
}
&:last-child {
border-radius: 0 0 $radius $radius;
}
svg {
margin-right: $gap * 1.2;
}
}