mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
376 lines
10 KiB
JavaScript
376 lines
10 KiB
JavaScript
import Head from "next/head";
|
|
|
|
import * as React from "react";
|
|
import * as SVG from "~/common/svg";
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import { css } from "@emotion/react";
|
|
import { GoogleScript } from "~/common/analytics";
|
|
|
|
const STYLES_PAGE = css`
|
|
background-color: ${Constants.system.foreground};
|
|
`;
|
|
|
|
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_ICON_ELEMENT = css`
|
|
height: 48px;
|
|
width: 48px;
|
|
border-radius: 4px;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: ${Constants.system.brand};
|
|
background-image: url("/static/social.png");
|
|
background-size: cover;
|
|
color: ${Constants.system.white};
|
|
user-select: none;
|
|
`;
|
|
|
|
const STYLES_SIDEBAR = css`
|
|
padding: 88px 24px 128px 24px;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 312px;
|
|
background-color: ${Constants.system.foreground};
|
|
overflow-y: scroll;
|
|
|
|
::-webkit-scrollbar {
|
|
width: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: ${Constants.system.gray};
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: ${Constants.system.darkGray};
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: ${Constants.system.brand};
|
|
}
|
|
|
|
@media (max-width: 568px) {
|
|
width: 100%;
|
|
position: relative;
|
|
overflow-y: auto;
|
|
}
|
|
`;
|
|
|
|
const STYLES_LINK = css`
|
|
font-family: ${Constants.font.semiBold};
|
|
color: ${Constants.system.pitchBlack};
|
|
text-decoration: none;
|
|
font-weight: 400;
|
|
display: block;
|
|
margin-top: 8px;
|
|
|
|
:hover {
|
|
color: ${Constants.system.brand};
|
|
}
|
|
`;
|
|
|
|
const STYLES_LINK_ACTIVE = css`
|
|
font-family: ${Constants.font.semiBold};
|
|
color: ${Constants.system.brand};
|
|
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.darkGray};
|
|
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.brand};
|
|
}
|
|
`;
|
|
|
|
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 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="/static/social.png" />
|
|
|
|
<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="/static/social.png" />
|
|
|
|
<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" />
|
|
|
|
<GoogleScript id="UA-52930282-7" />
|
|
</Head>
|
|
<div css={STYLES_BODY}>{children}</div>
|
|
<div css={STYLES_SIDEBAR}>
|
|
<a css={STYLES_ICON_ELEMENT} href="/_/system" />
|
|
<br />
|
|
<br />
|
|
|
|
<span css={STYLES_LABEL}>Experiences</span>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/create-address"
|
|
title="CreateFilecoinAddress"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/make-storage-deal"
|
|
title="CreateFilecoinStorageDeal"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/generate-powergate-token"
|
|
title="CreateToken"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/filecoin-wallet-balances"
|
|
title="FilecoinBalancesList"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/list-filecoin-deals"
|
|
title="FilecoinDealsList"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/filecoin-settings"
|
|
title="FilecoinSettings"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/friends-list"
|
|
title="FriendsList"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/peers-list"
|
|
title="PeersList"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/experiences/send-address-filecoin"
|
|
title="SendAddressFilecoin"
|
|
/>
|
|
|
|
<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/carousel" title="Carousel" />
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/system/checkboxes"
|
|
title="Checkboxes"
|
|
/>
|
|
<SidebarLink url={url} href="/_/system/colors" title="Colors" />
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/system/datepicker"
|
|
title="Datepicker"
|
|
/>
|
|
<SidebarLink url={url} href="/_/system/dropdowns" title="Dropdowns" />
|
|
<SidebarLink url={url} href="/_/system/globe" title="Globe" />
|
|
<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/line-chart"
|
|
title="Line Chart"
|
|
/>
|
|
<SidebarLink
|
|
url={url}
|
|
href="/_/system/list-editor"
|
|
title="List Editor"
|
|
/>
|
|
<SidebarLink url={url} href="/_/system/loaders" title="Loaders" />
|
|
<SidebarLink url={url} href="/_/system/modals" title="Modals" />
|
|
<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/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
|
|
css={STYLES_SMALL_LINK}
|
|
onClick={() => {
|
|
window.open(
|
|
"https://github.com/filecoin-shipyard/js-lotus-client"
|
|
);
|
|
}}
|
|
>
|
|
<SVG.ExpandBox height="12px" style={{ marginRight: 10 }} />
|
|
JS Lotus Client
|
|
</div>
|
|
<div
|
|
css={STYLES_SMALL_LINK}
|
|
onClick={() => {
|
|
window.open("https://github.com/textileio/js-powergate-client");
|
|
}}
|
|
>
|
|
<SVG.ExpandBox height="12px" style={{ marginRight: 10 }} />
|
|
JS Powergate Client
|
|
</div>
|
|
<div
|
|
css={STYLES_SMALL_LINK}
|
|
onClick={() => {
|
|
window.open("https://docs.textile.io/");
|
|
}}
|
|
>
|
|
<SVG.ExpandBox height="12px" style={{ marginRight: 10 }} />
|
|
Textile Documentation
|
|
</div>
|
|
<div
|
|
css={STYLES_SMALL_LINK}
|
|
onClick={() => {
|
|
window.open("https://docs.lotu.sh/");
|
|
}}
|
|
>
|
|
<SVG.ExpandBox height="12px" style={{ marginRight: 10 }} />
|
|
Lotus Documentation
|
|
</div>
|
|
<div
|
|
css={STYLES_SMALL_LINK}
|
|
onClick={() => {
|
|
window.open("https://docs.filecoin.io/");
|
|
}}
|
|
>
|
|
<SVG.ExpandBox height="12px" style={{ marginRight: 10 }} />
|
|
Filecoin Documentation
|
|
</div>
|
|
<div
|
|
css={STYLES_SMALL_LINK}
|
|
onClick={() => {
|
|
window.open("https://filecoin.io/#community");
|
|
}}
|
|
>
|
|
<SVG.ExpandBox height="12px" style={{ marginRight: 10 }} />
|
|
Community
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|