mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
added sidebar headers
This commit is contained in:
parent
01fac15a00
commit
2e75e4f7c0
6 changed files with 61 additions and 7 deletions
|
@ -1,7 +1,6 @@
|
||||||
@import "src/styles/variables";
|
@import "src/styles/variables";
|
||||||
|
|
||||||
.wrap {
|
.wrap {
|
||||||
@include sidebar_content(600px);
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import React, { FC, useMemo } from 'react';
|
import React, { FC, useMemo } from 'react';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
|
import { Button } from '~/components/input/Button';
|
||||||
|
import { Filler } from '~/components/containers/Filler';
|
||||||
|
|
||||||
interface SidebarStackProps {}
|
interface SidebarStackProps {}
|
||||||
|
|
||||||
|
|
|
@ -9,11 +9,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
@include sidebar_content(400px);
|
|
||||||
|
|
||||||
box-shadow: transparentize(white, 0.9) -1px 0;
|
box-shadow: transparentize(white, 0.9) -1px 0;
|
||||||
max-width: 400px;
|
border-radius: $radius 0 0 $radius;
|
||||||
width: 100vw;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
|
|
31
src/components/sidebar/SidebarStackCard/index.tsx
Normal file
31
src/components/sidebar/SidebarStackCard/index.tsx
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
import React, { FC, useMemo } from 'react';
|
||||||
|
import styles from './styles.module.scss';
|
||||||
|
import { Filler } from '~/components/containers/Filler';
|
||||||
|
import { Button } from '~/components/input/Button';
|
||||||
|
|
||||||
|
interface SidebarStackCardProps {
|
||||||
|
width?: number;
|
||||||
|
headerFeature?: 'back' | 'close';
|
||||||
|
title?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const SidebarStackCard: FC<SidebarStackCardProps> = ({ children, title, width, headerFeature }) => {
|
||||||
|
const style = useMemo(() => ({ maxWidth: width, flexBasis: width }), [width]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={style} className={styles.card}>
|
||||||
|
{(headerFeature || title) && (
|
||||||
|
<div className={styles.head}>
|
||||||
|
<Filler>{!!title && <h5>{title}</h5>}</Filler>
|
||||||
|
|
||||||
|
{headerFeature === 'back' && <Button color="link" iconRight="right" />}
|
||||||
|
{headerFeature === 'close' && <Button color="link" iconRight="close" />}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<Filler>{children}</Filler>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export { SidebarStackCard };
|
17
src/components/sidebar/SidebarStackCard/styles.module.scss
Normal file
17
src/components/sidebar/SidebarStackCard/styles.module.scss
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
@import "src/styles/variables";
|
||||||
|
|
||||||
|
.card {
|
||||||
|
width: 100vw;
|
||||||
|
max-width: 400px;
|
||||||
|
flex-basis: 400px;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.head {
|
||||||
|
@include row_shadow;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
padding: $gap $gap $gap $gap * 2;
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ import { DialogComponentProps } from '~/types/modal';
|
||||||
import { ProfileSidebarMenu } from '~/containers/profile/ProfileSidebarMenu';
|
import { ProfileSidebarMenu } from '~/containers/profile/ProfileSidebarMenu';
|
||||||
import { SidebarStack } from '~/components/sidebar/SidebarStack';
|
import { SidebarStack } from '~/components/sidebar/SidebarStack';
|
||||||
import { ProfileSidebarSettings } from '~/components/profile/ProfileSidebarSettings';
|
import { ProfileSidebarSettings } from '~/components/profile/ProfileSidebarSettings';
|
||||||
|
import { SidebarStackCard } from '~/components/sidebar/SidebarStackCard';
|
||||||
|
|
||||||
interface ProfileSidebarProps extends DialogComponentProps {}
|
interface ProfileSidebarProps extends DialogComponentProps {}
|
||||||
|
|
||||||
|
@ -11,8 +12,13 @@ const ProfileSidebar: VFC<ProfileSidebarProps> = ({ onRequestClose }) => {
|
||||||
return (
|
return (
|
||||||
<SidebarWrapper onClose={onRequestClose}>
|
<SidebarWrapper onClose={onRequestClose}>
|
||||||
<SidebarStack>
|
<SidebarStack>
|
||||||
<ProfileSidebarMenu onClose={onRequestClose} />
|
<SidebarStackCard headerFeature="close" title="Профиль">
|
||||||
<ProfileSidebarSettings />
|
<ProfileSidebarMenu onClose={onRequestClose} />
|
||||||
|
</SidebarStackCard>
|
||||||
|
|
||||||
|
<SidebarStackCard width={600} headerFeature="back" title="Настройки">
|
||||||
|
<ProfileSidebarSettings />
|
||||||
|
</SidebarStackCard>
|
||||||
</SidebarStack>
|
</SidebarStack>
|
||||||
</SidebarWrapper>
|
</SidebarWrapper>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue