slate/components/core/SlatePreviewBlock.js

627 lines
18 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";
2020-11-28 02:02:16 +03:00
import * as Window from "~/common/window";
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";
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;
box-shadow: 0px 0px 0px 1px ${Constants.system.lightBorder} inset;
cursor: pointer;
@media (max-width: ${Constants.sizes.mobile}px) {
margin: 0 8px;
}
`;
const STYLES_PLACEHOLDER = css`
width: 100%;
height: 320px;
background-size: cover;
background-position: 50% 50%;
margin-bottom: 4px;
@media (max-width: ${Constants.sizes.mobile}px) {
height: 100%;
}
`;
export class SlatePreviewRow extends React.Component {
render() {
let numItems = this.props.numItems || 4;
let objects;
if (this.props.slate.data.objects.length === 0) {
objects = [
<div
css={STYLES_PLACEHOLDER}
style={{
backgroundImage: `url(${placeholder})`,
...this.props.imageStyle,
}}
/>,
];
} else {
let trimmed =
this.props.slate.data.objects.length > numItems
? this.props.slate.data.objects.slice(1, numItems)
: this.props.slate.data.objects.slice(1, this.props.slate.data.objects.length);
objects = trimmed.map((each) => (
<div key={each.id} css={STYLES_ITEM_BOX}>
<SlateMediaObjectPreview
blurhash={each.blurhash}
charCap={30}
centeredImage
type={each.type}
url={each.url}
style={this.props.previewStyle}
title={each.title || each.name}
iconOnly={this.props.small}
coverImage={each.coverImage}
/>
</div>
));
}
return (
<div css={STYLES_IMAGE_ROW} style={{ height: `100%`, ...this.props.containerStyle }}>
{objects}
</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`
color: ${Constants.system.darkGray};
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;
box-shadow: 0 0 40px 0 ${Constants.system.shadow};
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-10-01 03:41:53 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
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};
color: ${Constants.system.darkGray};
margin-bottom: 20px;
2020-11-20 04:50:24 +03:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
height: 20px;
2020-09-04 07:16:19 +03:00
`;
2020-09-05 00:37:50 +03:00
const STYLES_ICON_BOX = css`
2020-09-05 04:40:23 +03:00
height: 32px;
width: 32px;
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;
color: ${Constants.system.darkGray};
2020-11-13 01:36:20 +03:00
:hover {
color: ${Constants.system.brand};
}
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;
height: 24px;
`;
const STYLES_PREVIEW = css`
display: flex;
`;
const STYLES_OBJECT_COUNT = css`
width: auto;
font-size: ${Constants.typescale.lvlN1};
color: ${Constants.system.darkGray};
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() {
let count = 0;
if (this.props.slate.data.objects.length > 4) {
console.log(this.props.slate.data.objects.slice(0, 4));
for (let object of this.props.slate.data.objects.slice(0, 4)) {
if (object.type.startsWith("image/") && !object.type.startsWith("image/svg")) {
count++;
}
}
}
2020-10-05 00:30:28 +03:00
let first = this.props.slate.data.objects ? this.props.slate.data.objects[0] : null;
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={
2020-10-05 00:30:28 +03:00
this.props.isOwner
2020-09-05 00:37:50 +03:00
? [
{
text: "Copy URL",
onClick: (e) =>
this._handleCopy(
e,
2020-11-17 06:17:56 +03:00
Strings.getURLFromPath(
`/${this.props.username}/${this.props.slate.slatename}`
)
2020-09-05 00:37:50 +03:00
),
},
{
text: "Copy slate ID",
2020-09-05 00:37:50 +03:00
onClick: (e) => this._handleCopy(e, this.props.slate.id),
},
]
: [
{
text: "Copy URL",
onClick: (e) =>
this._handleCopy(
e,
2020-11-17 06:17:56 +03:00
Strings.getURLFromPath(
`/${this.props.username}/${this.props.slate.slatename}`
)
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}>
{console.log("check", count)}
{this.props.external ? (
<React.Fragment>
<span css={STYLES_MOBILE_HIDDEN}>
<div css={STYLES_TITLE_LINE}>
<div css={STYLES_TITLE} style={{ width: `85%` }}>
{this.props.slate.data.name}
</div>
<div css={STYLES_OBJECT_COUNT}>
{this.props.slate.data.objects.length} file
{this.props.slate.data.objects.length > 1 ? "s" : ""}
</div>
</div>
{this.props.slate.data.body ? (
<div css={STYLES_BODY}>{this.props.slate.data.body}</div>
) : (
<div style={{ height: "41px" }} />
)}
{this.props.slate.data.objects.length === 1 ||
(this.props.slate.data.objects.length != 0 && count <= 3) ? (
<div
style={{
width: "100%",
height: 320,
}}
>
<SlateMediaObjectPreview
blurhash={first.blurhash}
centeredImage
charCap={30}
type={first.type}
url={first.url}
title={first.title || first.name}
coverImage={first.coverImage}
/>
</div>
) : first ? (
<div css={STYLES_PREVIEW}>
<div
style={{
width: "75%",
height: 320,
}}
>
<SlateMediaObjectPreview
blurhash={first.blurhash}
centeredImage
charCap={30}
type={first.type}
url={first.url}
title={first.title || first.name}
coverImage={first.coverImage}
/>
</div>
<div
style={{
width: `25%`,
height: 324,
}}
>
<SlatePreviewRow {...this.props} previewStyle={this.props.previewStyle} />
</div>
</div>
) : (
<div
css={STYLES_PLACEHOLDER}
style={{
backgroundImage: `url(${placeholder})`,
...this.props.imageStyle,
}}
/>
)}
</span>
<span css={STYLES_MOBILE_ONLY}>
<div css={STYLES_TITLE}>{this.props.slate.data.name}</div>
<div css={STYLES_OBJECT_COUNT}>
{this.props.slate.data.objects.length} file
{this.props.slate.data.objects.length > 1 ? "s" : ""}
</div>
2020-09-04 01:42:08 +03:00
<div
2020-09-04 07:16:19 +03:00
style={{
width: "100%",
height: `320px`,
}}
>
{first ? (
<SlateMediaObjectPreview
blurhash={first.blurhash}
centeredImage
charCap={30}
type={first.type}
url={first.url}
title={first.title || first.name}
coverImage={first.coverImage}
/>
) : (
<div
css={STYLES_PLACEHOLDER}
style={{
backgroundImage: `url(${placeholder})`,
...this.props.imageStyle,
}}
/>
)}
2020-09-04 01:42:08 +03:00
</div>
</span>
</React.Fragment>
) : (
<React.Fragment>
<div css={STYLES_TITLE_LINE}>
<div css={STYLES_TITLE}>{this.props.slate.data.name}</div>
{this.props.isOwner ? (
this.props.slate.data.public ? (
<div
css={STYLES_TAG}
style={{
borderColor: Constants.system.brand,
color: Constants.system.brand,
}}
>
Public
</div>
) : (
<div
css={STYLES_TAG}
style={{
color: Constants.system.darkGray,
borderColor: Constants.system.darkGray,
}}
>
Private
</div>
)
) : (
<div style={{ height: 32 }} />
)}
{this.props.username ? (
<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>
) : null}
</div>
<span css={STYLES_MOBILE_HIDDEN}>
{this.props.slate.data.body ? (
<div css={STYLES_BODY}>{this.props.slate.data.body}</div>
) : this.props.isOwner ? (
<div style={{ height: "44px" }} />
) : (
<div style={{ height: "40px" }} />
)}
2020-09-04 07:42:50 +03:00
<div
style={{
width: "100%",
height: `304px`,
}}
>
{first ? (
<SlateMediaObjectPreview
blurhash={first.blurhash}
centeredImage
charCap={30}
type={first.type}
url={first.url}
title={first.title || first.name}
coverImage={first.coverImage}
/>
) : this.props.isOwner ? (
<div css={STYLES_CREATE_NEW} key="add-files">
<SVG.Plus height="24px" />
<div>Add Files</div>
</div>
) : (
<div
css={STYLES_PLACEHOLDER}
style={{
backgroundImage: `url(${placeholder})`,
...this.props.imageStyle,
}}
/>
)}
2020-09-04 07:16:19 +03:00
</div>
</span>
<span css={STYLES_MOBILE_ONLY}>
<div
css={STYLES_TITLE}
style={{ marginBottom: 8, fontSize: Constants.typescale.lvl1 }}
>
{this.props.slate.data.name}
2020-09-05 04:40:23 +03:00
</div>
<div css={STYLES_OBJECT_COUNT} style={{ marginBottom: 16, fontSize: 12 }}>
{this.props.slate.data.objects.length} file
{this.props.slate.data.objects.length === 1 ? "" : "s"}
2020-10-01 03:41:53 +03:00
</div>
<div
style={{
width: "100%",
height: `300px`,
}}
>
{first ? (
<SlateMediaObjectPreview
blurhash={first.blurhash}
centeredImage
charCap={30}
type={first.type}
url={first.url}
style={{ borderRadius: 8 }}
imageStyle={{ borderRadius: 8 }}
title={first.title || first.name}
coverImage={first.coverImage}
/>
) : this.props.isOwner ? (
<div css={STYLES_CREATE_NEW} key="add-files">
<SVG.Plus height="24px" />
<div>Add Files</div>
</div>
) : (
<div
css={STYLES_PLACEHOLDER}
style={{
backgroundImage: `url(${placeholder})`,
...this.props.imageStyle,
}}
/>
)}
2020-11-20 04:50:24 +03:00
</div>
</span>
</React.Fragment>
)}
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}>
{this.props.external
? this.props.slates.map((slate) => (
<div
key={slate.id}
href={
this.props.username
? `/${this.props.username}/${slate.slatename}`
: `/${slate.username}/${slate.slatename}`
}
>
<SlatePreviewBlock
isOwner={this.props.isOwner}
username={this.props.username}
slate={slate}
external={this.props.external}
/>
</div>
))
: this.props.slates.map((slate) => (
<div
key={slate.id}
onClick={() =>
this.props.onAction({
type: "NAVIGATE",
value: "V1_NAVIGATION_SLATE",
data: { decorator: "SLATE", ...slate },
})
}
>
<SlatePreviewBlock
isOwner={this.props.isOwner}
username={this.props.username}
slate={slate}
external={this.props.external}
/>
</div>
))}
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
}
}