slate/components/core/ApplicationHeader.js

254 lines
6.7 KiB
JavaScript
Raw Normal View History

2020-06-19 06:57:57 +03:00
import * as React from "react";
import * as Constants from "~/common/constants";
import * as SVG from "~/common/svg";
2020-09-29 07:39:05 +03:00
import ApplicationUserControls from "~/components/core/ApplicationUserControls";
import { css, keyframes } from "@emotion/core";
import { SearchModal } from "~/components/core/SearchModal";
2020-08-25 02:24:29 +03:00
import { dispatchCustomEvent } from "~/common/custom-events";
const STYLES_ICON_ELEMENT = css`
height: 40px;
width: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
color: #565151;
user-select: none;
cursor: pointer;
pointer-events: auto;
:hover {
color: ${Constants.system.brand};
}
svg {
transform: rotate(0deg);
transition: 200ms ease transform;
}
`;
const STYLES_APPLICATION_HEADER = css`
display: flex;
2020-09-29 08:47:27 +03:00
align-items: center;
justify-content: space-between;
2020-09-29 07:39:05 +03:00
width: calc(100% - ${Constants.sizes.navigation}px);
height: 56px;
2020-09-29 08:47:27 +03:00
padding: 0 48px 0 36px;
pointer-events: none;
background-color: ${Constants.system.white};
2020-10-29 01:36:38 +03:00
@supports ((-webkit-backdrop-filter: blur(25px)) or (backdrop-filter: blur(25px))) {
-webkit-backdrop-filter: blur(25px);
backdrop-filter: blur(25px);
background-color: rgba(255, 255, 255, 0.75);
}
@media (max-width: ${Constants.sizes.mobile}px) {
2020-09-29 08:47:27 +03:00
padding: 0px 12px;
2020-09-29 07:39:05 +03:00
width: 100%;
}
`;
const STYLES_LEFT = css`
flex-shrink: 0;
2020-09-16 23:39:35 +03:00
${"" /* width: 352px; */}
display: flex;
align-items: center;
justify-content: flex-start;
`;
const STYLES_MIDDLE = css`
min-width: 10%;
width: 100%;
padding: 0 24px 0 48px;
`;
2020-09-29 07:39:05 +03:00
const STYLES_MOBILE_HIDDEN = css`
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_MOBILE_ONLY = css`
@media (min-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_RIGHT = css`
2020-09-16 23:39:35 +03:00
min-width: 10%;
width: 100%;
display: flex;
align-items: center;
justify-content: flex-end;
`;
2020-09-06 04:57:39 +03:00
const rotate = keyframes`
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
`;
const STYLES_ROTATION = css`
animation: ${rotate} 1s linear infinite;
`;
const STYLES_STATIC = css`
transition: 200ms ease all;
`;
export default class ApplicationHeader extends React.Component {
2020-10-29 01:36:38 +03:00
keysPressed = {};
2020-09-06 04:57:39 +03:00
state = {
isRefreshing: false,
};
2020-10-29 01:36:38 +03:00
componentDidMount = () => {
window.addEventListener("keydown", this._handleKeyDown);
window.addEventListener("keyup", this._handleKeyUp);
};
//TODO toast: add a command-f light text next to svg
//add cmd svg to header
//add on-hover keybinds next to cmd svg
//--> argue with haris about how that looks
_handleKeyDown = (e) => {
let prevValue = this.keysPressed[e.key];
this.keysPressed[e.key] = true;
if (
(this.keysPressed["Control"] || this.keysPressed["Meta"]) &&
this.keysPressed["f"] &&
prevValue !== this.keysPressed[e.key]
) {
e.preventDefault();
e.stopPropagation();
this._handleCreateSearch();
}
};
_handleKeyUp = (e) => {
this.keysPressed = {};
};
2020-08-25 02:24:29 +03:00
_handleCreateSearch = (e) => {
dispatchCustomEvent({
name: "create-modal",
2020-10-31 02:12:20 +03:00
detail: { modal: <SearchModal viewer={this.props.viewer} onAction={this.props.onAction} /> },
2020-09-06 04:57:39 +03:00
});
};
render() {
2020-10-29 01:36:38 +03:00
const isBackDisabled = this.props.currentIndex === 0 || this.props.history.length < 2;
const isForwardDisabled =
2020-10-29 01:36:38 +03:00
this.props.currentIndex === this.props.history.length - 1 || this.props.history.length < 2;
return (
<header css={STYLES_APPLICATION_HEADER}>
<div css={STYLES_LEFT}>
2020-09-29 08:47:27 +03:00
<span
css={STYLES_MOBILE_ONLY}
style={{ pointerEvents: "auto", marginLeft: 8, marginRight: 16 }}
>
2020-09-29 07:39:05 +03:00
<ApplicationUserControls
viewer={this.props.viewer}
onAction={this.props.onAction}
onSignOut={this.props.onSignOut}
/>
</span>
2020-09-29 07:39:05 +03:00
<span css={STYLES_MOBILE_HIDDEN}>
2020-09-29 08:47:27 +03:00
<span
css={STYLES_ICON_ELEMENT}
style={
2020-10-29 01:36:38 +03:00
isBackDisabled ? { cursor: "not-allowed", color: Constants.system.border } : null
2020-09-29 08:47:27 +03:00
}
onClick={isBackDisabled ? () => {} : this.props.onBack}
>
2020-10-29 01:36:38 +03:00
<SVG.NavigationArrow height="24px" style={{ transform: `rotate(180deg)` }} />
2020-09-29 08:47:27 +03:00
</span>
2020-10-01 03:41:53 +03:00
</span>
<span css={STYLES_MOBILE_HIDDEN}>
2020-09-29 08:47:27 +03:00
<span
css={STYLES_ICON_ELEMENT}
style={
2020-10-29 01:36:38 +03:00
isForwardDisabled ? { cursor: "not-allowed", color: Constants.system.border } : null
2020-09-29 08:47:27 +03:00
}
onClick={isForwardDisabled ? () => {} : this.props.onForward}
>
<SVG.NavigationArrow height="24px" />
</span>
2020-10-01 03:41:53 +03:00
</span>
<span css={STYLES_MOBILE_HIDDEN}>
2020-09-29 07:39:05 +03:00
<span
2020-09-29 08:47:27 +03:00
css={STYLES_ICON_ELEMENT}
style={{ marginLeft: 24 }}
onClick={this._handleCreateSearch}
>
<SVG.Search height="24px" />
</span>
</span>
2020-10-29 11:43:08 +03:00
<span css={STYLES_MOBILE_HIDDEN}>
<span
css={STYLES_ICON_ELEMENT}
style={{ marginLeft: 16, color: Constants.system.border, cursor: "default" }}
>
<p>CMD+F</p>
</span>
</span>
</div>
2020-09-16 23:39:35 +03:00
{/* <div css={STYLES_MIDDLE} /> */}
<div css={STYLES_RIGHT}>
2020-09-29 08:47:27 +03:00
<span css={STYLES_MOBILE_HIDDEN}>
<span
css={STYLES_ICON_ELEMENT}
onClick={() =>
this.props.onAction({
type: "SIDEBAR",
value: "SIDEBAR_HELP",
})
}
>
<SVG.Help height="24px" />
</span>
</span>
<span css={STYLES_MOBILE_ONLY}>
<span
css={STYLES_ICON_ELEMENT}
style={
2020-10-29 01:36:38 +03:00
isBackDisabled ? { cursor: "not-allowed", color: Constants.system.border } : null
2020-09-29 08:47:27 +03:00
}
onClick={isBackDisabled ? () => {} : this.props.onBack}
>
2020-10-29 01:36:38 +03:00
<SVG.NavigationArrow height="24px" style={{ transform: `rotate(180deg)` }} />
2020-09-29 08:47:27 +03:00
</span>
<span
css={STYLES_ICON_ELEMENT}
style={
2020-10-29 01:36:38 +03:00
isForwardDisabled ? { cursor: "not-allowed", color: Constants.system.border } : null
2020-09-29 08:47:27 +03:00
}
onClick={isForwardDisabled ? () => {} : this.props.onForward}
>
<SVG.NavigationArrow height="24px" />
</span>
<span
css={STYLES_ICON_ELEMENT}
style={{ marginLeft: 12 }}
onClick={this._handleCreateSearch}
>
<SVG.Search height="24px" />
</span>
2020-09-16 23:39:35 +03:00
</span>
</div>
</header>
);
}
}