slate/components/core/ApplicationLayout.js
2020-12-10 18:59:27 -08:00

216 lines
5.4 KiB
JavaScript

import * as React from "react";
import * as Constants from "~/common/constants";
import * as SVG from "~/common/svg";
import { css } from "@emotion/react";
import { GlobalTooltip } from "~/components/system/components/fragments/GlobalTooltip";
import { Boundary } from "~/components/system/components/fragments/Boundary";
import { Alert } from "~/components/core/Alert";
const STYLES_NO_VISIBLE_SCROLL = css`
overflow-y: scroll;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
-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_HEADER = css`
z-index: ${Constants.zindex.header};
height: ${Constants.sizes.header}px;
pointer-events: none;
width: 100vw;
position: fixed;
right: 0;
top: 0;
transition: top 0.25s;
`;
const STYLES_CONTENT = css`
background: ${Constants.system.foreground};
width: 100%;
min-width: 10%;
min-height: 100vh;
position: relative;
margin-top: ${Constants.sizes.topOffset}px;
@media (max-width: ${Constants.sizes.mobile}px) {
padding-left: 0px;
padding: 0 0 88px 0;
margin-top: calc(${Constants.sizes.topOffset}px + 36px);
}
`;
const STYLES_SIDEBAR = css`
z-index: ${Constants.zindex.sidebar};
height: 100vh;
width: ${Constants.sizes.sidebar}px;
padding: 0;
flex-shrink: 0;
position: fixed;
background-color: rgba(195, 195, 196, 1);
top: 0;
right: 0;
${STYLES_NO_VISIBLE_SCROLL}
@media (max-width: ${Constants.sizes.mobile}px) {
width: 100%;
}
@supports ((-webkit-backdrop-filter: blur(25px)) or (backdrop-filter: blur(25px))) {
-webkit-backdrop-filter: blur(25px);
backdrop-filter: blur(25px);
background-color: rgba(195, 195, 196, 0.6);
}
`;
const STYLES_SIDEBAR_HEADER = css`
display: flex;
justify-content: flex-end;
margin-bottom: 8px;
`;
const STYLES_SIDEBAR_CONTENT = css`
padding: 56px 24px 24px 24px;
padding-top: calc(32px + ${Constants.sizes.topOffset}px);
@media (max-width: ${Constants.sizes.mobile}px) {
padding-top: 8px;
margin-bottom: 48px;
}
`;
const STYLES_BLOCK = css`
margin-top: 8px;
height: 56px;
width: 56px;
display: inline-flex;
align-items: center;
justify-content: center;
transition: 200ms ease all;
cursor: pointer;
color: rgba(0, 0, 0, 0.25);
`;
export default class ApplicationLayout extends React.Component {
_sidebar;
_navigation;
_body;
state = {
headerTop: 0,
};
componentDidMount = () => {
this.prevScrollPos = window.pageYOffset;
if (this.props.mobile) {
window.addEventListener("scroll", this._handleScroll);
}
};
componentWillUnmount = () => {
if (this.props.mobile) {
window.removeEventListener("scroll", this._handleScroll);
}
};
_handleScroll = () => {
let currentScrollPos = window.pageYOffset;
if (this.prevScrollPos > currentScrollPos) {
this.setState({ headerTop: 0 });
} else {
if (currentScrollPos > 56) {
this.setState({ headerTop: -56 });
}
}
this.prevScrollPos = currentScrollPos;
};
_handleDismiss = (e) => {
e.stopPropagation();
e.preventDefault();
this.props.onDismissSidebar();
};
render() {
let sidebarElements = null;
if (this.props.sidebar) {
sidebarElements = (
<React.Fragment>
{/* <GlobalTooltip
elementRef={this._sidebar}
allowedTypes={["sidebar"]}
/> */}
<div css={STYLES_SIDEBAR_HEADER}>
<div css={STYLES_BLOCK} onClick={this._handleDismiss}>
<SVG.Dismiss height="24px" />
</div>
</div>
<div css={STYLES_SIDEBAR_CONTENT}>{this.props.sidebar}</div>
</React.Fragment>
);
}
return (
<React.Fragment>
<div css={STYLES_CONTENT}>
{/* <GlobalTooltip elementRef={this._body} allowedTypes={["body"]} /> */}
<GlobalTooltip />
<div css={STYLES_HEADER} style={{ top: this.props.mobile ? this.state.headerTop : null }}>
{this.props.header}
</div>
<Alert
noWarning={this.props.viewer.status?.hidePrivacyAlert}
fileLoading={this.props.fileLoading}
onAction={this.props.onAction}
filecoin={this.props.filecoin}
id={this.props.mobile ? "slate-mobile-alert" : null}
onUpdateViewer={this.props.onUpdateViewer}
viewer={this.props.viewer}
style={
this.props.mobile
? { top: this.state.headerTop + 56 }
: {
paddingRight: this.props.sidebar
? `calc(${Constants.sizes.sidebar}px + 48px`
: "auto",
}
}
/>
{this.props.children}
</div>
{this.props.sidebar ? (
<Boundary
onMouseDown
captureResize={false}
captureScroll={false}
enabled
onOutsideRectEvent={this._handleDismiss}
>
<div
css={STYLES_SIDEBAR}
ref={(c) => {
this._sidebar = c;
}}
>
{sidebarElements}
</div>
</Boundary>
) : null}
</React.Fragment>
);
}
}