import * as React from "react";
import * as Constants from "~/common/constants";
import * as SVG from "~/components/system/svg";
import { css } from "@emotion/react";
import { GlobalTooltip } from "~/components/system/components/fragments/GlobalTooltip";
const STYLES_SCROLL = css`
-webkit-overflow-scrolling: touch;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: -ms-autohiding-scrollbar;
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: ${Constants.system.foreground};
}
::-webkit-scrollbar-thumb {
background: ${Constants.system.darkGray};
}
`;
const STYLES_NO_VISIBLE_SCROLL = css`
-webkit-overflow-scrolling: touch;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: -ms-autohiding-scrollbar;
::-webkit-scrollbar {
width: 0px;
display: none;
}
::-webkit-scrollbar-track {
background: ${Constants.system.foreground};
}
::-webkit-scrollbar-thumb {
background: ${Constants.system.darkGray};
}
`;
const STYLES_LAYOUT = css`
display: flex;
align-items: flex-start;
justify-content: space-between;
width: 100%;
`;
const STYLES_HEADER = css`
z-index: ${Constants.zindex.header};
height: ${Constants.sizes.header}px;
pointer-events: none;
width: 100%;
position: absolute;
left: 0;
right: 0;
top: 0;
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_CONTENT = css`
background: ${Constants.system.white};
width: 100%;
min-width: 10%;
height: 100vh;
position: relative;
`;
const STYLES_BODY_WEB = css`
display: block;
height: 100%;
min-height: 10%;
width: 100%;
${STYLES_SCROLL}
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_BODY_MOBILE = css`
display: none;
height: 100%;
min-height: 10%;
width: 100%;
padding: 0px 0px 88px 0px;
${STYLES_SCROLL}
@media (max-width: ${Constants.sizes.mobile}px) {
display: block;
}
`;
const STYLES_NAVIGATION = css`
z-index: 1;
flex-shrink: 0;
height: 100vh;
z-index: ${Constants.zindex.navigation};
width: ${Constants.sizes.navigation}px;
border-right: 1px solid ${Constants.system.border};
${STYLES_NO_VISIBLE_SCROLL}
@media (max-width: ${Constants.sizes.mobile}px) {
width: auto;
}
`;
const STYLES_SIDEBAR_WEB = css`
height: 100vh;
width: ${Constants.sizes.sidebar}px;
padding: 0;
flex-shrink: 0;
box-shadow: inset 1px 0 0 0 ${Constants.system.border};
${STYLES_SCROLL}
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_SIDEBAR_HEADER = css`
display: flex;
justify-content: flex-end;
margin-bottom: 8px;
`;
const STYLES_SIDEBAR_CONTENT = css`
padding: 24px;
`;
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};
}
`;
export default class ApplicationLayout extends React.Component {
_sidebar;
_navigation;
_body;
render() {
let sidebarElements = null;
if (this.props.sidebar) {
sidebarElements = (