mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-27 10:52:41 +03:00
120 lines
2.7 KiB
JavaScript
120 lines
2.7 KiB
JavaScript
import * as React from "react";
|
|
import * as Strings from "~/common/strings";
|
|
import * as Constants from "~/common/constants";
|
|
import * as SVG from "~/components/system/svg";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
const NAVIGATION_WIDTH = 288;
|
|
const HEADER_HEIGHT = 72;
|
|
|
|
const STYLES_BODY = css`
|
|
padding: 72px 0 0 ${Constants.sizes.navigation}px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
`;
|
|
|
|
const STYLES_HEADER = css`
|
|
z-index: ${Constants.zindex.header};
|
|
height: ${Constants.sizes.header}px;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
position: fixed;
|
|
`;
|
|
|
|
const STYLES_NAVIGATION = css`
|
|
z-index: ${Constants.zindex.navigation};
|
|
width: ${Constants.sizes.navigation}px;
|
|
top: ${Constants.sizes.header}px;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
`;
|
|
|
|
const STYLES_SIDEBAR = css`
|
|
width: ${Constants.sizes.sidebar}px;
|
|
padding: 0;
|
|
flex-shrink: 0;
|
|
`;
|
|
|
|
const STYLES_TRUE_SIDEBAR = css`
|
|
width: ${Constants.sizes.sidebar}px;
|
|
background: ${Constants.system.foreground};
|
|
z-index: ${Constants.zindex.sidebar};
|
|
border-left: 1px solid ${Constants.system.border};
|
|
padding: 0 0 128px 0;
|
|
position: fixed;
|
|
right: 0;
|
|
top: ${Constants.sizes.header}px;
|
|
bottom: 0;
|
|
flex-shrink: 0;
|
|
overflow-y: scroll;
|
|
|
|
scrollbar-width: none;
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: ${Constants.system.foreground};
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: ${Constants.system.darkGray};
|
|
}
|
|
`;
|
|
|
|
const STYLES_SIDEBAR_HEADER = css`
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
`;
|
|
|
|
const STYLES_BLOCK = css`
|
|
height: 56px;
|
|
width: 56px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: 200ms ease all;
|
|
cursor: pointer;
|
|
|
|
:hover {
|
|
color: ${Constants.system.brand};
|
|
}
|
|
`;
|
|
|
|
const STYLES_SIDEBAR_CONTENT = css`
|
|
padding: 24px;
|
|
`;
|
|
|
|
export default class ApplicationLayout extends React.Component {
|
|
render() {
|
|
return (
|
|
<React.Fragment>
|
|
<div css={STYLES_NAVIGATION}>{this.props.navigation}</div>
|
|
<div css={STYLES_HEADER}>{this.props.header}</div>
|
|
<div css={STYLES_BODY}>
|
|
{this.props.children}
|
|
{this.props.sidebar ? (
|
|
<div css={STYLES_SIDEBAR}>
|
|
<div css={STYLES_TRUE_SIDEBAR}>
|
|
<div css={STYLES_SIDEBAR_HEADER}>
|
|
<div css={STYLES_BLOCK} onClick={this.props.onDismissSidebar}>
|
|
<SVG.Dismiss height="24px" />
|
|
</div>
|
|
</div>
|
|
<div css={STYLES_SIDEBAR_CONTENT}>{this.props.sidebar}</div>
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
}
|