slate/pages/_/slate.js
2020-09-07 17:40:54 -07:00

196 lines
4.8 KiB
JavaScript

import * as React from "react";
import * as Constants from "~/common/constants";
import * as System from "~/components/system";
import * as SVGLogo from "~/common/logo";
import { css } from "@emotion/react";
import { ProcessedText } from "~/components/system/components/Typography";
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
import WebsitePrototypeHeaderGeneric from "~/components/core/WebsitePrototypeHeaderGeneric";
import WebsitePrototypeFooter from "~/components/core/WebsitePrototypeFooter";
import Slate, { generateLayout } from "~/components/core/Slate";
import SlateMediaObject from "~/components/core/SlateMediaObject";
const STYLES_ROOT = css`
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
min-height: 100vh;
text-align: center;
font-size: 1rem;
`;
const STYLES_SLATE = css`
padding: 0 88px 0 88px;
max-width: 1660px;
display: block;
width: 100%;
margin: 0 auto 0 auto;
min-height: 10%;
height: 100%;
@media (max-width: ${Constants.sizes.mobile}px) {
padding: 0 24px 0 24px;
}
`;
const STYLES_HEADER = css`
display: flex;
align-items: flex-start;
justify-content: space-between;
padding: 12px 0 12px 0;
max-width: 540px;
width: 100%;
overflow-wrap: break-word;
@media (max-width: ${Constants.sizes.mobile}px) {
max-width: none;
display: block;
}
`;
const STYLES_HEADER_LEFT = css`
font-family: ${Constants.font.semiBold};
text-transform: none;
flex-shrink: 0;
line-height: 1.5;
color: ${Constants.system.pitchBlack};
text-decoration: none;
transition: 200ms ease color;
overflow-wrap: break-word;
max-width: 228px;
text-align: left;
:visited {
color: ${Constants.system.black};
}
:hover {
color: ${Constants.system.brand};
}
@media (max-width: ${Constants.sizes.mobile}px) {
text-align: center;
}
`;
const STYLES_HEADER_RIGHT = css`
font-family: ${Constants.font.text};
text-transform: none;
line-height: 1.5;
text-align: left;
min-width: 10%;
width: 100%;
padding-left: 16px;
overflow-wrap: break-word;
@media (max-width: ${Constants.sizes.mobile}px) {
padding-left: 0px;
margin-top: 16px;
text-align: center;
}
`;
const STYLES_LOGO = css`
display: inline-flex;
flex-shrink: 0;
margin-right: 16px;
padding-top: 1px;
@media (max-width: ${Constants.sizes.mobile}px) {
transform: translateY(3px);
}
`;
export const getServerSideProps = async (context) => {
return {
props: { ...context.query },
};
};
export default class SlatePage extends React.Component {
state = {
layouts: this.props.slate.data.layouts
? this.props.slate.data.layouts
: { lg: generateLayout(this.props.slate.data.objects) },
};
componentDidMount() {
if (!this.props.slate) {
return null;
}
System.dispatchCustomEvent({
name: "slate-global-create-carousel",
detail: {
slides: this.props.slate.data.objects.map((each) => {
return {
id: each.id,
data: each,
editing: false,
component: (
<SlateMediaObject key={each.id} useImageFallback data={each} />
),
};
}),
},
});
}
_handleSelect = (index) =>
System.dispatchCustomEvent({
name: "slate-global-open-carousel",
detail: { index },
});
render() {
const title = `${this.props.creator.username}/${
this.props.slate.slatename
}`;
const url = `https://slate.host/${this.props.creator.username}`;
const description = this.props.slate.data.body;
let image;
this.props.slate.data.objects.forEach((o) => {
if (o.type && o.type.startsWith("image/")) {
image = o.url;
}
});
return (
<WebsitePrototypeWrapper
title={title}
description={description}
url={url}
image={image}
>
<div css={STYLES_ROOT}>
<WebsitePrototypeHeaderGeneric>
<div css={STYLES_HEADER}>
<SVGLogo.Symbol height="16px" css={STYLES_LOGO} />
<a css={STYLES_HEADER_LEFT} href={url}>
{this.props.creator.username} / {this.props.slate.slatename}
</a>
<div css={STYLES_HEADER_RIGHT}>
<ProcessedText text={this.props.slate.data.body} />
</div>
</div>
</WebsitePrototypeHeaderGeneric>
<div css={STYLES_SLATE}>
<Slate
editing={false}
layouts={this.state.layouts}
items={this.props.slate.data.objects}
onSelect={this._handleSelect}
/>
</div>
<WebsitePrototypeFooter style={{ marginTop: 88 }} />
</div>
<System.GlobalCarousel />
</WebsitePrototypeWrapper>
);
}
}