mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 14:07:20 +03:00
214 lines
6.5 KiB
JavaScript
214 lines
6.5 KiB
JavaScript
import Head from "next/head";
|
|
|
|
import * as React from "react";
|
|
import * as SVG from "~/common/svg";
|
|
import * as SVGLogo from "~/common/logo";
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
const STYLES_PAGE = css`
|
|
background-color: ${Constants.semantic.bgLight};
|
|
`;
|
|
|
|
const STYLES_BODY = css`
|
|
max-width: 960px;
|
|
width: 100%;
|
|
margin: 0 auto 0 auto;
|
|
padding: 88px 24px 128px 336px;
|
|
|
|
@media (max-width: 568px) {
|
|
padding: 88px 24px 128px 24px;
|
|
}
|
|
`;
|
|
|
|
const STYLES_SIDEBAR = css`
|
|
padding: 88px 24px 128px 24px;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 312px;
|
|
background-color: ${Constants.semantic.bgLight};
|
|
overflow-y: scroll;
|
|
|
|
::-webkit-scrollbar {
|
|
width: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: ${Constants.system.gray};
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: ${Constants.system.grayLight2};
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: ${Constants.system.blue};
|
|
}
|
|
|
|
@media (max-width: 568px) {
|
|
width: 100%;
|
|
position: relative;
|
|
overflow-y: auto;
|
|
}
|
|
`;
|
|
|
|
const STYLES_LINK = css`
|
|
font-family: ${Constants.font.semiBold};
|
|
color: ${Constants.system.black};
|
|
text-decoration: none;
|
|
font-weight: 400;
|
|
display: block;
|
|
margin-top: 8px;
|
|
|
|
:hover {
|
|
color: ${Constants.system.blue};
|
|
}
|
|
`;
|
|
|
|
const STYLES_LINK_ACTIVE = css`
|
|
font-family: ${Constants.font.semiBold};
|
|
color: ${Constants.system.blue};
|
|
text-decoration: none;
|
|
font-weight: 400;
|
|
display: block;
|
|
margin-top: 8px;
|
|
`;
|
|
|
|
const STYLES_DESCRIPTION = css`
|
|
font-weight: 400;
|
|
margin-top: 4px;
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
`;
|
|
|
|
const STYLES_LABEL = css`
|
|
font-family: ${Constants.font.semiBold};
|
|
display: block;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
color: ${Constants.system.grayLight2};
|
|
letter-spacing: 0.6px;
|
|
`;
|
|
|
|
const SidebarLink = (props) => {
|
|
return (
|
|
<React.Fragment>
|
|
<a
|
|
css={props.url.includes(props.href) ? STYLES_LINK_ACTIVE : STYLES_LINK}
|
|
href={props.href}
|
|
target={props.target}
|
|
>
|
|
{props.title}
|
|
</a>
|
|
{props.children ? <div css={STYLES_DESCRIPTION}>{props.children}</div> : null}
|
|
</React.Fragment>
|
|
);
|
|
};
|
|
|
|
const STYLES_SMALL_LINK = css`
|
|
padding: 0 16px 0 0px;
|
|
font-size: 14px;
|
|
font-family: "inter-semi-bold";
|
|
margin-top: 11px;
|
|
color: #666;
|
|
transition: 200ms ease all;
|
|
cursor: pointer;
|
|
|
|
:hover {
|
|
color: ${Constants.system.blue};
|
|
}
|
|
`;
|
|
|
|
export default class SystemPage extends React.Component {
|
|
render() {
|
|
const { title, description, url, children } = this.props;
|
|
|
|
return (
|
|
<div css={STYLES_PAGE}>
|
|
<Head>
|
|
<title>{title}</title>
|
|
<meta name="title" content={title} />
|
|
<meta name="description" content={description} />
|
|
<meta
|
|
name="google-site-verification"
|
|
content="INHmYWYLRrINvdmu9BXrXaJnphG0-wF5e2YGaDx2v7k"
|
|
/>
|
|
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content={url} />
|
|
<meta property="og:title" content={title} />
|
|
<meta property="og:description" content={description} />
|
|
<meta
|
|
property="og:image"
|
|
content="https://slate.textile.io/ipfs/bafkreifknnc7rs7u7qrwc72dzaazzk3f3r4dnp3m4cuzdnr5zfckaet3se"
|
|
/>
|
|
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:url" content={url} />
|
|
<meta property="twitter:title" content={title} />
|
|
<meta property="twitter:description" content={description} />
|
|
<meta
|
|
property="twitter:image"
|
|
content="https://slate.textile.io/ipfs/bafkreifknnc7rs7u7qrwc72dzaazzk3f3r4dnp3m4cuzdnr5zfckaet3se"
|
|
/>
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/static/favicon-96x96.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png" />
|
|
|
|
<link rel="shortcut icon" href="/static/favicon.ico" />
|
|
</Head>
|
|
<div css={STYLES_BODY}>{children}</div>
|
|
<div css={STYLES_SIDEBAR}>
|
|
<a css={STYLES_LINK} href="/_/system" style={{ marginTop: 0 }}>
|
|
<SVGLogo.Logo height="32px" style={{ marginBottom: 24 }} />
|
|
</a>
|
|
|
|
<span css={STYLES_LABEL}>
|
|
<br />
|
|
<br />
|
|
Components
|
|
</span>
|
|
|
|
<SidebarLink url={url} href="/_/system/avatar-group" title="Avatar Group" />
|
|
<SidebarLink url={url} href="/_/system/buttons" title="Buttons" />
|
|
<SidebarLink url={url} href="/_/system/card-tabs" title="Card Tabs" />
|
|
<SidebarLink url={url} href="/_/system/card-3d" title="3D Card" />
|
|
<SidebarLink url={url} href="/_/system/checkboxes" title="Checkboxes" />
|
|
<SidebarLink url={url} href="/_/system/colors" title="Colors" />
|
|
<SidebarLink url={url} href="/_/system/dropdowns" title="Dropdowns" />
|
|
<SidebarLink url={url} href="/_/system/hover-tile" title="Hover Tile" />
|
|
<SidebarLink url={url} href="/_/system/icons" title="Icons" />
|
|
<SidebarLink url={url} href="/_/system/inputs" title="Inputs" />
|
|
<SidebarLink url={url} href="/_/system/list-editor" title="List Editor" />
|
|
<SidebarLink url={url} href="/_/system/loaders" title="Loaders" />
|
|
<SidebarLink url={url} href="/_/system/notifications" title="Notifications" />
|
|
<SidebarLink url={url} href="/_/system/radios" title="Radios" />
|
|
<SidebarLink url={url} href="/_/system/sliders" title="Sliders" />
|
|
<SidebarLink url={url} href="/_/system/stats" title="Stats" />
|
|
<SidebarLink url={url} href="/_/system/tables" title="Tables" />
|
|
<SidebarLink url={url} href="/_/system/tabs" title="Tabs" />
|
|
<SidebarLink url={url} href="/_/system/tags" title="Tags" />
|
|
<SidebarLink url={url} href="/_/system/toggles" title="Toggles" />
|
|
<SidebarLink url={url} href="/_/system/tooltips" title="Tooltips" />
|
|
<SidebarLink url={url} href="/_/system/typography" title="Typography" />
|
|
|
|
<div
|
|
css={STYLES_SMALL_LINK}
|
|
style={{ marginTop: 48 }}
|
|
onClick={() => {
|
|
window.open("https://github.com/filecoin-project/slate");
|
|
}}
|
|
>
|
|
<SVG.ExpandBox height="12px" style={{ marginRight: 10 }} />
|
|
View source
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|