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

fixed appearance for profile sidebar

This commit is contained in:
Fedor Katurov 2022-03-29 15:39:29 +07:00
parent 42c9fed92c
commit 16d12f92da
11 changed files with 96 additions and 10 deletions

View file

@ -0,0 +1,23 @@
import React, { VFC } from 'react';
import { useStackContext } from '~/components/sidebar/SidebarStack';
import { SidebarStackCard } from '~/components/sidebar/SidebarStackCard';
import { SettingsNotes } from '~/containers/settings/SettingsNotes';
import styles from './styles.module.scss';
interface ProfileSidebarNotesProps {}
const ProfileSidebarNotes: VFC<ProfileSidebarNotesProps> = () => {
const { closeAllTabs } = useStackContext();
return (
<SidebarStackCard width={800} headerFeature="back" title="Заметки" onBackPress={closeAllTabs}>
<div className={styles.scroller}>
<SettingsNotes />
</div>
</SidebarStackCard>
);
};
export { ProfileSidebarNotes };

View file

@ -0,0 +1,7 @@
@import "src/styles/variables";
.scroller {
flex: 1;
overflow: auto;
padding: $gap;
}

View file

@ -1,6 +1,5 @@
import React, { VFC } from 'react';
import classNames from 'classnames';
import Link from 'next/link';
import { Filler } from '~/components/containers/Filler';
@ -9,9 +8,10 @@ import { Button } from '~/components/input/Button';
import { VerticalMenu } from '~/components/menu/VerticalMenu';
import { URLS } from '~/constants/urls';
import { ProfileSidebarHead } from '~/containers/profile/ProfileSidebarHead';
import styles from '~/containers/profile/ProfileSidebarMenu/styles.module.scss';
import { ProfileStats } from '~/containers/profile/ProfileStats';
import styles from './styles.module.scss';
interface SettingsMenuProps {}
const SettingsMenu: VFC<SettingsMenuProps> = () => (
@ -35,9 +35,9 @@ const SettingsMenu: VFC<SettingsMenuProps> = () => (
</Link>
</VerticalMenu>
<br />
<ProfileStats />
<div className={styles.stats}>
<ProfileStats />
</div>
<Group horizontal>
<Filler />

View file

@ -0,0 +1,21 @@
@import "../../../styles/variables";
.wrap {
padding: $gap;
box-sizing: border-box;
display: flex;
flex-direction: column;
height: 100%;
}
.text {
margin-top: $gap * 2;
}
.stats {
margin-top: 1em;
@include tablet {
display: none;
}
}

View file

@ -8,6 +8,8 @@
flex-direction: column;
height: 100%;
min-height: 0;
box-shadow: transparentize(black, 0.8) -5px 0 5px;
border-radius: $radius;
}
.head {

View file

@ -6,6 +6,8 @@ import { ProfileAvatar } from '~/components/profile/ProfileAvatar';
import { usePatchUser } from '~/hooks/auth/usePatchUser';
import { useUser } from '~/hooks/auth/useUser';
import styles from './styles.module.scss';
interface ProfileSidebarHeadProps {}
const ProfileSidebarHead: VFC<ProfileSidebarHeadProps> = () => {
@ -17,7 +19,8 @@ const ProfileSidebarHead: VFC<ProfileSidebarHeadProps> = () => {
<ProfileAvatar canEdit onChangePhoto={updatePhoto} photo={user.photo} size={72} />
<Filler>
<h2>{user.fullname || user.username}</h2>
<div className={styles.name}>{user.fullname || user.username}</div>
<div className={styles.username}>{!!user.fullname && `~${user.username}`}</div>
</Filler>
</Group>
);

View file

@ -0,0 +1,11 @@
@import "src/styles/variables";
.name {
font: $font_20_semibold;
}
.username {
margin-top: 2px;
opacity: 0.5;
font: $font_14_medium;
}

View file

@ -37,13 +37,21 @@ const ProfileSidebarMenu: VFC<ProfileSidebarMenuProps> = ({ onClose }) => {
<VerticalMenu.Item onClick={() => setActiveTab(2)}>Удалённые посты</VerticalMenu.Item>
</VerticalMenu>
<ProfileStats />
<div className={styles.stats}>
<ProfileStats />
</div>
</Group>
</Filler>
<Button round onClick={onClose} color="secondary">
Закрыть
</Button>
<Group className={styles.buttons}>
<Button round onClick={onClose} color="outline">
Выйти
</Button>
<Button round onClick={onClose} color="outline-white">
Закрыть
</Button>
</Group>
</div>
);
};

View file

@ -11,3 +11,11 @@
.text {
margin-top: $gap * 2;
}
.buttons {
flex: 0;
}
.stats {
display: none;
}

View file

@ -1,5 +1,6 @@
import React, { VFC } from 'react';
import { ProfileSidebarNotes } from '~/components/profile/ProfileSidebarNotes';
import { ProfileSidebarSettings } from '~/components/profile/ProfileSidebarSettings';
import { SidebarStack } from '~/components/sidebar/SidebarStack';
import { SidebarStackCard } from '~/components/sidebar/SidebarStackCard';
@ -19,6 +20,7 @@ const ProfileSidebar: VFC<ProfileSidebarProps> = ({ onRequestClose }) => {
<SidebarStack.Cards>
<ProfileSidebarSettings />
<ProfileSidebarNotes />
</SidebarStack.Cards>
</SidebarStack>
</SidebarWrapper>

View file

@ -22,5 +22,6 @@
@include tablet {
margin-top: 0;
flex-direction: column;
}
}