mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-13 03:42:11 +03:00
117 lines
2.8 KiB
JavaScript
117 lines
2.8 KiB
JavaScript
import * as React from "react";
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
|
|
|
|
export const getServerSideProps = async (context) => {
|
|
return {
|
|
props: { ...context.query },
|
|
};
|
|
};
|
|
|
|
const STYLES_ROOT = css`
|
|
padding: 128px 88px 256px 88px;
|
|
|
|
@media (max-width: 768px) {
|
|
padding: 128px 24px 128px 24px;
|
|
}
|
|
`;
|
|
|
|
const STYLES_HEADING = css`
|
|
font-weight: 400;
|
|
font-size: 2.88rem;
|
|
line-height: 1.5;
|
|
color: ${Constants.system.black};
|
|
|
|
@media (max-width: 768px) {
|
|
font-size: 1rem;
|
|
}
|
|
`;
|
|
|
|
const STYLES_PARAGRAPH = css`
|
|
font-weight: 400;
|
|
font-size: 2.88rem;
|
|
line-height: 1.5;
|
|
color: ${Constants.system.pitchBlack};
|
|
|
|
@media (max-width: 768px) {
|
|
font-size: 1rem;
|
|
}
|
|
`;
|
|
|
|
const STYLES_USER = css`
|
|
background-position: 50% 50%;
|
|
background-size: cover;
|
|
height: 88px;
|
|
width: 88px;
|
|
border-radius: 4px;
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
|
|
`;
|
|
|
|
export default class ProfilePage extends React.Component {
|
|
render() {
|
|
console.log({ profilePageProps: this.props });
|
|
|
|
const title = this.props.creator
|
|
? `@${this.props.creator.username}`
|
|
: "404";
|
|
const url = `https://slate.host/${title}`;
|
|
|
|
if (!this.props.creator) {
|
|
return (
|
|
<WebsitePrototypeWrapper
|
|
title={title}
|
|
description="This Slate user can not be found."
|
|
url={url}
|
|
>
|
|
<div css={STYLES_ROOT}>
|
|
<h1 css={STYLES_HEADING}>404</h1>
|
|
<p css={STYLES_PARAGRAPH}>
|
|
This user is not found.
|
|
<br />
|
|
<br />
|
|
<a href="/application">Run Slate</a>
|
|
<br />
|
|
<a href="/system">Use Slate's Design System</a>
|
|
</p>
|
|
</div>
|
|
</WebsitePrototypeWrapper>
|
|
);
|
|
}
|
|
|
|
const description = "A user on Slate.";
|
|
|
|
return (
|
|
<WebsitePrototypeWrapper
|
|
title={title}
|
|
description={description}
|
|
url={url}
|
|
image={this.props.creator.data.photo}
|
|
>
|
|
<div css={STYLES_ROOT}>
|
|
<div
|
|
css={STYLES_USER}
|
|
style={{ backgroundImage: `url(${this.props.creator.data.photo})` }}
|
|
/>
|
|
<h1 css={STYLES_HEADING}>{title}</h1>
|
|
<p css={STYLES_PARAGRAPH}>
|
|
This is an example of a profile page on Slate. Slate is going to be
|
|
really cool soon!
|
|
<br />
|
|
<br />
|
|
<a href="/application">Run Slate {Constants.values.version}</a>
|
|
<br />
|
|
<a href="/system">Use Slate's Design System</a>
|
|
<br />
|
|
<a href="https://github.com/filecoin-project/slate">
|
|
View Source ☺
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</WebsitePrototypeWrapper>
|
|
);
|
|
}
|
|
}
|