mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-27 10:52:41 +03:00
190 lines
4.5 KiB
JavaScript
190 lines
4.5 KiB
JavaScript
import * as React from "react";
|
|
import * as Constants from "~/common/constants";
|
|
import * as System from "~/components/system";
|
|
import * as SVG from "~/common/svg";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
import Avatar from "~/components/core/Avatar";
|
|
|
|
const STYLES_CIRCLE = css`
|
|
height: 32px;
|
|
width: 32px;
|
|
border-radius: 32px;
|
|
background-color: ${Constants.system.black};
|
|
color: ${Constants.system.white};
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
|
|
position: relative;
|
|
transition: 200ms ease all;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
|
|
:hover {
|
|
color: ${Constants.system.white};
|
|
background-color: ${Constants.system.brand};
|
|
}
|
|
`;
|
|
|
|
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;
|
|
|
|
:hover {
|
|
color: ${Constants.system.brand};
|
|
}
|
|
|
|
svg {
|
|
transform: rotate(0deg);
|
|
transition: 200ms ease transform;
|
|
}
|
|
`;
|
|
|
|
const STYLES_ICON_ELEMENT_CUSTOM = css`
|
|
height: 40px;
|
|
width: 40px;
|
|
border-radius: 40px;
|
|
background: ${Constants.system.brand};
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: ${Constants.system.white};
|
|
user-select: none;
|
|
cursor: pointer;
|
|
|
|
svg {
|
|
transform: rotate(0deg);
|
|
transition: 200ms ease transform;
|
|
}
|
|
`;
|
|
|
|
const STYLES_APPLICATION_HEADER = css`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: ${Constants.system.foreground};
|
|
box-shadow: inset 0 -1px 0 0 ${Constants.system.border};
|
|
`;
|
|
|
|
const STYLES_LEFT = css`
|
|
flex-shrink: 0;
|
|
width: 288px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
`;
|
|
|
|
const STYLES_MIDDLE = css`
|
|
min-width: 10%;
|
|
width: 100%;
|
|
padding: 0 24px 0 48px;
|
|
`;
|
|
|
|
const STYLES_RIGHT = css`
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding-right: 16px;
|
|
`;
|
|
|
|
const STYLES_INPUT = css`
|
|
width: 100%;
|
|
max-width: 1024px;
|
|
font-size: 16px;
|
|
height: 40px;
|
|
padding: 0 16px 0 16px;
|
|
background-color: ${Constants.system.white};
|
|
border-radius: 4px;
|
|
box-shadow: inset 0 0 0 1px #e0e0e0, 0 1px 4px rgba(0, 0, 0, 0.04);
|
|
border: 0;
|
|
outline: 0;
|
|
box-sizing: border-box;
|
|
transition: 200ms ease all;
|
|
|
|
:focus {
|
|
box-shadow: 0 1px 4px rgba(0, 71, 255, 0.3),
|
|
inset 0 0 0 1px ${Constants.system.brand};
|
|
outline: 0;
|
|
}
|
|
`;
|
|
|
|
export default class ApplicationHeader extends React.Component {
|
|
render() {
|
|
const isBackDisabled =
|
|
this.props.currentIndex === 0 || this.props.history.length < 2;
|
|
|
|
const isForwardDisabled =
|
|
this.props.currentIndex === this.props.history.length - 1 ||
|
|
this.props.history.length < 2;
|
|
|
|
return (
|
|
<header css={STYLES_APPLICATION_HEADER}>
|
|
<div css={STYLES_LEFT}>
|
|
<span
|
|
css={STYLES_ICON_ELEMENT_CUSTOM}
|
|
style={{ marginRight: 16, marginLeft: 12 }}
|
|
>
|
|
<SVG.Logo height="32px" />
|
|
</span>
|
|
<span
|
|
css={STYLES_ICON_ELEMENT}
|
|
style={
|
|
isBackDisabled
|
|
? { cursor: "not-allowed", color: Constants.system.border }
|
|
: null
|
|
}
|
|
onClick={isBackDisabled ? () => {} : this.props.onBack}
|
|
>
|
|
<SVG.NavigationArrow
|
|
height="16px"
|
|
style={{ transform: `rotate(180deg)` }}
|
|
/>
|
|
</span>
|
|
<span
|
|
css={STYLES_ICON_ELEMENT}
|
|
style={
|
|
isForwardDisabled
|
|
? { cursor: "not-allowed", color: Constants.system.border }
|
|
: null
|
|
}
|
|
onClick={isForwardDisabled ? () => {} : this.props.onForward}
|
|
>
|
|
<SVG.NavigationArrow height="16px" />
|
|
</span>
|
|
</div>
|
|
<div css={STYLES_MIDDLE} />
|
|
<div css={STYLES_RIGHT}>
|
|
<Avatar
|
|
style={{ marginLeft: 12 }}
|
|
onClick={() => {}}
|
|
size={32}
|
|
url={this.props.viewer.photoURL}
|
|
popover={
|
|
<System.PopoverNavigation
|
|
style={{ right: 0, top: "48px", cursor: "pointer" }}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
onAction={this.props.onAction}
|
|
navigation={[
|
|
{ text: "Edit account", value: 13 },
|
|
{ text: "Settings", value: 14 },
|
|
]}
|
|
/>
|
|
}
|
|
/>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|
|
}
|