* Fixed right drawer width and shared in theme * Added date packages and tooltip * Added date utils and tests * Added comment thread components * Fixed comment chip * Fix from rebase * Fix from rebase * Fix margin right * Fixed CSS and graphql
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
import { ReactNode } from 'react';
|
|
import styled from '@emotion/styled';
|
|
import { useRecoilState } from 'recoil';
|
|
|
|
import { Panel } from '../Panel';
|
|
import { RightDrawer } from '../right-drawer/components/RightDrawer';
|
|
import { isRightDrawerOpenState } from '../right-drawer/states/isRightDrawerOpenState';
|
|
import { TopBar } from '../top-bar/TopBar';
|
|
|
|
type OwnProps = {
|
|
children: JSX.Element;
|
|
title: string;
|
|
icon: ReactNode;
|
|
onAddButtonClick?: () => void;
|
|
};
|
|
|
|
const StyledContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
`;
|
|
|
|
const TOPBAR_HEIGHT = '48px';
|
|
|
|
const MainContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: calc(100% - ${(props) => props.theme.spacing(3)});
|
|
height: calc(100% - ${TOPBAR_HEIGHT} - ${(props) => props.theme.spacing(3)});
|
|
background: ${(props) => props.theme.noisyBackground};
|
|
padding-right: ${(props) => props.theme.spacing(3)};
|
|
padding-bottom: ${(props) => props.theme.spacing(3)};
|
|
gap: ${(props) => props.theme.spacing(2)};
|
|
`;
|
|
|
|
type LeftContainerProps = {
|
|
isRightDrawerOpen?: boolean;
|
|
};
|
|
|
|
const LeftContainer = styled.div<LeftContainerProps>`
|
|
display: flex;
|
|
width: calc(
|
|
100% -
|
|
${(props) =>
|
|
props.isRightDrawerOpen
|
|
? `${props.theme.rightDrawerWidth} - ${props.theme.spacing(2)}`
|
|
: '0px'}
|
|
);
|
|
position: relative;
|
|
`;
|
|
|
|
export function WithTopBarContainer({
|
|
children,
|
|
title,
|
|
icon,
|
|
onAddButtonClick,
|
|
}: OwnProps) {
|
|
const [isRightDrawerOpen] = useRecoilState(isRightDrawerOpenState);
|
|
|
|
return (
|
|
<StyledContainer>
|
|
<TopBar title={title} icon={icon} onAddButtonClick={onAddButtonClick} />
|
|
<MainContainer>
|
|
<LeftContainer isRightDrawerOpen={isRightDrawerOpen}>
|
|
<Panel>{children}</Panel>
|
|
</LeftContainer>
|
|
<RightDrawer />
|
|
</MainContainer>
|
|
</StyledContainer>
|
|
);
|
|
}
|