slate/components/core/SlatePreviewBlock.js

451 lines
11 KiB
JavaScript
Raw Normal View History

2020-09-04 07:32:51 +03:00
import * as React from "react";
import * as Constants from "~/common/constants";
2020-09-01 07:44:56 +03:00
import * as SVG from "~/common/svg";
2020-11-17 06:17:56 +03:00
import * as Strings from "~/common/strings";
2021-05-18 01:11:13 +03:00
import * as Validations from "~/common/validations";
2021-08-04 01:31:49 +03:00
import * as Typography from "~/components/system/components/Typography";
2021-04-23 06:55:26 +03:00
import { Logo } from "~/common/logo";
2020-11-30 08:24:22 +03:00
import { css } from "@emotion/react";
2020-09-05 00:37:50 +03:00
import { Boundary } from "~/components/system/components/fragments/Boundary";
import { PopoverNavigation } from "~/components/system/components/PopoverNavigation";
2021-05-06 03:08:14 +03:00
import { Link } from "~/components/core/Link";
2020-09-04 07:32:51 +03:00
import ProcessedText from "~/components/core/ProcessedText";
import SlateMediaObjectPreview from "~/components/core/SlateMediaObjectPreview";
const placeholder =
"https://slate.textile.io/ipfs/bafkreidq27ycqubd4pxbo76n3rv5eefgxl3a2lh3wfvdgtil4u47so3nqe";
2020-10-02 02:44:22 +03:00
const STYLES_IMAGE_ROW = css`
overflow: hidden;
@media (max-width: ${Constants.sizes.mobile}px) {
justify-content: center;
margin: 0 -8px;
}
`;
const STYLES_ITEM_BOX = css`
height: calc(33.33% - 4px);
overflow: hidden;
margin: 0px 0px 4px 4px;
2021-07-07 22:58:14 +03:00
box-shadow: 0px 0px 0px 1px ${Constants.semantic.borderLight} inset;
cursor: pointer;
@media (max-width: ${Constants.sizes.mobile}px) {
margin: 0 8px;
}
`;
const STYLES_PLACEHOLDER = css`
width: 100%;
height: 320px;
2021-04-23 06:55:26 +03:00
${"" /* background-size: cover;
background-position: 50% 50%; */}
${"" /* margin-bottom: 4px; */}
background-color: #d2d7db;
font-family: ${Constants.font.text};
font-size: 14px;
color: ${Constants.system.white};
display: flex;
align-items: center;
justify-content: center;
@media (max-width: ${Constants.sizes.mobile}px) {
height: 100%;
}
`;
export class SlatePreviewRow extends React.Component {
render() {
2021-05-18 01:11:13 +03:00
let objects = this.props.objects;
2021-05-18 01:14:52 +03:00
let components = objects.slice(1).map((each) => (
2021-05-18 01:11:13 +03:00
<div key={each.id} css={STYLES_ITEM_BOX}>
<SlateMediaObjectPreview
file={each}
charCap={30}
centeredImage
style={this.props.previewStyle}
iconOnly={this.props.small}
/>
</div>
));
return (
<div css={STYLES_PREVIEW}>
<div
style={{
2021-05-18 01:11:13 +03:00
width: "75%",
height: 320,
}}
2021-05-18 01:11:13 +03:00
>
<SlateMediaObjectPreview file={objects[0]} centeredImage charCap={30} />
</div>
<div
style={{
width: `25%`,
height: 324,
}}
>
<div css={STYLES_IMAGE_ROW} style={{ height: `100%`, ...this.props.containerStyle }}>
{components}
</div>
</div>
</div>
);
}
}
2020-10-01 03:41:53 +03:00
const STYLES_MOBILE_HIDDEN = css`
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_MOBILE_ONLY = css`
@media (min-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
2020-09-23 23:52:00 +03:00
const STYLES_CREATE_NEW = css`
2021-07-07 22:58:14 +03:00
color: ${Constants.system.grayLight2};
2020-09-23 23:52:00 +03:00
box-shadow: 0px 0px 0px 1px rgba(229, 229, 229, 0.5) inset;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
2020-11-20 04:50:24 +03:00
width: 100%;
height: 100%;
2020-09-23 23:52:00 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
2020-10-01 03:41:53 +03:00
margin: 0;
border-radius: 8;
width: 100%;
height: 100%;
2020-09-23 23:52:00 +03:00
}
`;
const STYLES_BLOCK = css`
2020-12-11 05:59:17 +03:00
border-radius: 4px;
2021-05-27 11:20:34 +03:00
box-shadow: ${Constants.shadow.lightSmall};
2020-11-20 04:50:24 +03:00
padding: 24px;
font-size: 12px;
text-align: left;
cursor: pointer;
2020-11-20 04:50:24 +03:00
height: 440px;
width: 100%;
2020-12-11 05:59:17 +03:00
background-color: ${Constants.system.white};
2020-10-01 03:41:53 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
margin: 24px auto;
2020-11-20 04:50:24 +03:00
height: auto;
2020-10-01 03:41:53 +03:00
}
`;
2020-09-01 07:44:56 +03:00
const STYLES_TITLE_LINE = css`
width: 100%;
display: flex;
2020-09-01 07:44:56 +03:00
align-items: center;
font-size: ${Constants.typescale.lvl1};
2020-11-20 04:50:24 +03:00
margin-bottom: 8px;
2020-09-06 05:45:27 +03:00
overflow-wrap: break-word;
justify-content: space-between;
`;
2020-09-01 07:44:56 +03:00
const STYLES_COPY_INPUT = css`
pointer-events: none;
position: absolute;
opacity: 0;
`;
2020-09-03 02:17:31 +03:00
const STYLES_TAG = css`
margin-right: 16px;
2020-09-03 02:17:31 +03:00
padding: 4px 8px;
2020-09-04 01:42:08 +03:00
border-radius: 2px;
2020-09-04 07:16:19 +03:00
border: 1px solid ${Constants.system.black};
color: ${Constants.system.black};
font-family: ${Constants.font.semiBold};
font-size: 0.9rem;
`;
const STYLES_BODY = css`
font-family: ${Constants.font.text};
2020-11-20 04:50:24 +03:00
font-size: ${Constants.typescale.lvl0};
2021-07-07 22:58:14 +03:00
color: ${Constants.system.grayLight2};
2021-02-04 03:18:43 +03:00
margin-bottom: 16px;
2020-11-20 04:50:24 +03:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
height: 20px;
2021-02-04 03:18:43 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
margin-bottom: 0;
}
2020-09-04 07:16:19 +03:00
`;
2020-09-05 00:37:50 +03:00
const STYLES_ICON_BOX = css`
height: 24px;
width: 24px;
2020-09-05 04:40:23 +03:00
display: flex;
2020-09-05 00:37:50 +03:00
align-items: center;
justify-content: center;
2020-09-05 04:40:23 +03:00
position: relative;
2021-07-07 22:58:14 +03:00
color: ${Constants.system.grayLight2};
2020-11-13 01:36:20 +03:00
:hover {
2021-07-07 22:14:51 +03:00
color: ${Constants.system.blue};
2020-11-13 01:36:20 +03:00
}
2020-09-05 04:40:23 +03:00
`;
const STYLES_CONTEXT_MENU = css`
position: absolute;
2020-09-05 00:37:50 +03:00
`;
const STYLES_TITLE = css`
font-size: ${Constants.typescale.lvl2};
font-family: ${Constants.font.semiBold};
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-right: 16px;
`;
const STYLES_PREVIEW = css`
display: flex;
`;
const STYLES_OBJECT_COUNT = css`
width: auto;
font-size: ${Constants.typescale.lvlN1};
2021-07-07 22:58:14 +03:00
color: ${Constants.system.grayLight2};
2020-12-11 05:59:17 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
margin: 8px 0 16px 0;
}
`;
2020-10-02 02:44:22 +03:00
export class SlatePreviewBlock extends React.Component {
2020-09-01 07:44:56 +03:00
_ref;
2020-09-05 00:37:50 +03:00
_test;
2020-09-01 07:44:56 +03:00
state = {
2020-09-05 04:40:23 +03:00
showMenu: false,
2020-09-05 00:37:50 +03:00
copyValue: "",
};
2020-09-01 07:44:56 +03:00
_handleCopy = (e, value) => {
2020-09-04 07:16:19 +03:00
e.stopPropagation();
2020-09-05 00:37:50 +03:00
this.setState({ copyValue: value }, () => {
2020-09-01 07:44:56 +03:00
this._ref.select();
document.execCommand("copy");
2020-09-05 04:40:23 +03:00
this._handleHide();
2020-09-01 07:44:56 +03:00
});
};
2020-09-05 00:37:50 +03:00
_handleClick = (e) => {
e.stopPropagation();
2020-09-05 04:40:23 +03:00
if (this.state.showMenu) {
this._handleHide();
return;
}
this.setState({ showMenu: true });
2020-09-05 00:37:50 +03:00
};
_handleHide = (e) => {
2020-09-05 04:40:23 +03:00
this.setState({ showMenu: false });
2020-09-05 00:37:50 +03:00
};
2020-09-01 07:44:56 +03:00
render() {
2021-05-18 01:11:13 +03:00
const slate = this.props.slate;
let objects;
if (slate.data.preview) {
const cid = Strings.urlToCid(slate.data.preview);
let preview = slate.objects.find((each) => each.cid === cid);
if (preview) {
objects = [preview];
}
}
if (!objects) {
objects = [];
for (let file of slate.objects) {
if (Validations.isPreviewableImage(file.data.type)) {
objects.push(file);
}
2021-05-18 01:11:13 +03:00
if (objects.length >= 4) break;
}
}
if (!objects.length && slate.objects?.length) {
objects = [slate.objects[0]];
}
2021-05-18 01:11:13 +03:00
2020-09-05 00:37:50 +03:00
let contextMenu = (
<React.Fragment>
<Boundary
captureResize={true}
captureScroll={false}
enabled
onOutsideRectEvent={this._handleHide}
>
2020-09-05 00:37:50 +03:00
<PopoverNavigation
style={{
top: "16px",
2020-09-05 04:40:23 +03:00
right: "-12px",
2020-09-05 00:37:50 +03:00
}}
navigation={[
2021-05-06 03:08:14 +03:00
[
{
text: "Copy collection ID",
onClick: (e) => this._handleCopy(e, this.props.slate.id),
},
],
]}
2020-09-05 00:37:50 +03:00
/>
</Boundary>
<input
readOnly
ref={(c) => {
this._ref = c;
}}
value={this.state.copyValue}
css={STYLES_COPY_INPUT}
/>
</React.Fragment>
);
2020-09-01 07:44:56 +03:00
return (
2020-11-01 21:40:03 +03:00
<div css={STYLES_BLOCK}>
<span css={STYLES_MOBILE_HIDDEN}>
<div css={STYLES_TITLE_LINE}>
<div css={STYLES_TITLE} style={{ width: "85%" }}>
{this.props.slate.data.name}
{this.props.isOwner && !this.props.slate.isPublic && (
<span style={{ marginLeft: 8 }}>
<SVG.SecurityLock height="20px" />
</span>
)}
</div>
2021-02-04 20:26:59 +03:00
{this.props.isOwner ? (
<div
style={{ marginLeft: "auto" }}
ref={(c) => {
this._test = c;
}}
>
<div css={STYLES_ICON_BOX} onClick={this._handleClick}>
<SVG.MoreHorizontal height="24px" />
{this.state.showMenu ? <div css={STYLES_CONTEXT_MENU}>{contextMenu}</div> : null}
</div>
</div>
) : (
<div css={STYLES_OBJECT_COUNT}>
{slate.objects.length} file
{slate.objects.length !== 1 ? "s" : ""}
</div>
)}
</div>
2021-02-04 20:26:59 +03:00
<div css={STYLES_BODY}>
{this.props.slate.data.body ? this.props.slate.data.body : null}
2021-02-04 03:18:43 +03:00
</div>
2021-05-18 01:11:13 +03:00
{objects.length === 0 ? (
<div
2021-05-18 01:11:13 +03:00
css={STYLES_PLACEHOLDER}
style={{
2021-05-18 01:11:13 +03:00
...this.props.imageStyle,
}}
>
2021-08-04 01:31:49 +03:00
<Logo style={{ height: 24, marginBottom: 8, color: Constants.system.grayLight2 }} />
<Typography.P2 color="grayLight2">This collection is empty</Typography.P2>
</div>
2021-05-18 01:11:13 +03:00
) : objects.length < 4 ? (
<div
style={{
2021-05-18 01:11:13 +03:00
width: "100%",
height: 320,
}}
2021-04-23 06:55:26 +03:00
>
2021-05-18 01:11:13 +03:00
<SlateMediaObjectPreview file={objects[0]} centeredImage charCap={30} />
2021-04-23 06:55:26 +03:00
</div>
2021-05-18 01:11:13 +03:00
) : (
<SlatePreviewRow
{...this.props}
objects={objects}
previewStyle={this.props.previewStyle}
/>
)}
</span>
<span css={STYLES_MOBILE_ONLY}>
2021-02-04 20:26:59 +03:00
<div css={STYLES_TITLE_LINE}>
<div css={STYLES_TITLE}>{this.props.slate.data.name}</div>
{this.props.isOwner && !this.props.slate.isPublic && (
2021-07-07 22:58:14 +03:00
<div style={{ color: Constants.system.grayLight2, margin: `2px 0 0 0` }}>
<SVG.SecurityLock height="20px" />
2021-02-04 03:18:43 +03:00
</div>
)}
2021-02-04 20:26:59 +03:00
</div>
2021-03-12 02:33:44 +03:00
{this.props.slate.data.body ? (
<div css={STYLES_BODY} style={{ marginBottom: 16 }}>
{this.props.slate.data.body}
</div>
) : (
<div style={{ height: 8 }} />
)}
<div
style={{
width: "100%",
height: `320px`,
}}
>
2021-05-18 01:11:13 +03:00
{objects.length >= 1 ? (
<SlateMediaObjectPreview file={objects[0]} centeredImage charCap={30} />
) : (
<div
css={STYLES_PLACEHOLDER}
style={{
...this.props.imageStyle,
}}
2021-05-18 01:11:13 +03:00
>
2021-08-04 01:31:49 +03:00
<Logo style={{ height: 24, marginBottom: 8, color: Constants.system.grayLight2 }} />
<Typography.P2 color="grayLight2">This collection is empty</Typography.P2>
2021-05-18 01:11:13 +03:00
</div>
)}
</div>
</span>
2020-09-01 07:44:56 +03:00
</div>
);
}
}
2020-10-02 02:44:22 +03:00
2020-11-20 04:50:24 +03:00
const STYLES_SLATES = css`
2020-12-11 05:59:17 +03:00
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
grid-column-gap: 16px;
grid-row-gap: 16px;
2020-11-20 04:50:24 +03:00
padding-bottom: 48px;
@media (max-width: ${Constants.sizes.tablet}px) {
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
2020-11-20 04:50:24 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
display: block;
}
2020-10-02 02:44:22 +03:00
`;
export default class SlatePreviewBlocks extends React.Component {
render() {
2020-11-20 04:50:24 +03:00
return (
<div css={STYLES_SLATES}>
2021-05-06 03:08:14 +03:00
{this.props.slates?.map((slate) => (
<Link key={slate.id} href={`/$/slate/${slate.id}`} onAction={this.props.onAction}>
<SlatePreviewBlock
isOwner={this.props.isOwner}
slate={slate}
external={this.props.external}
/>
</Link>
))}
2020-10-02 02:44:22 +03:00
</div>
2020-11-20 04:50:24 +03:00
);
2020-10-02 02:44:22 +03:00
}
}