import * as React from "react";
import * as Constants from "~/common/constants";
import * as SVG from "~/common/svg";
import * as Strings from "~/common/strings";
import * as Validations from "~/common/validations";
import * as Typography from "~/components/system/components/Typography";
import { Logo } from "~/common/logo";
import { css } from "@emotion/react";
import { Boundary } from "~/components/system/components/fragments/Boundary";
import { PopoverNavigation } from "~/components/system/components/PopoverNavigation";
import { Link } from "~/components/core/Link";
import ProcessedText from "~/components/core/ProcessedText";
import SlateMediaObjectPreview from "~/components/core/SlateMediaObjectPreview";
const placeholder =
"https://slate.textile.io/ipfs/bafkreidq27ycqubd4pxbo76n3rv5eefgxl3a2lh3wfvdgtil4u47so3nqe";
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.semantic.borderLight} 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; */}
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() {
let objects = this.props.objects;
let components = objects.slice(1).map((each) => (
));
return (
);
}
}
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;
}
`;
const STYLES_CREATE_NEW = css`
color: ${Constants.system.grayLight2};
box-shadow: 0px 0px 0px 1px rgba(229, 229, 229, 0.5) inset;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
@media (max-width: ${Constants.sizes.mobile}px) {
margin: 0;
border-radius: 8;
width: 100%;
height: 100%;
}
`;
const STYLES_BLOCK = css`
border-radius: 4px;
box-shadow: ${Constants.shadow.lightSmall};
padding: 24px;
font-size: 12px;
text-align: left;
cursor: pointer;
height: 440px;
width: 100%;
background-color: ${Constants.system.white};
@media (max-width: ${Constants.sizes.mobile}px) {
margin: 24px auto;
height: auto;
}
`;
const STYLES_TITLE_LINE = css`
width: 100%;
display: flex;
align-items: center;
font-size: ${Constants.typescale.lvl1};
margin-bottom: 8px;
overflow-wrap: break-word;
justify-content: space-between;
`;
const STYLES_COPY_INPUT = css`
pointer-events: none;
position: absolute;
opacity: 0;
`;
const STYLES_TAG = css`
margin-right: 16px;
padding: 4px 8px;
border-radius: 2px;
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};
font-size: ${Constants.typescale.lvl0};
color: ${Constants.system.grayLight2};
margin-bottom: 16px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
height: 20px;
@media (max-width: ${Constants.sizes.mobile}px) {
margin-bottom: 0;
}
`;
const STYLES_ICON_BOX = css`
height: 24px;
width: 24px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
color: ${Constants.system.grayLight2};
:hover {
color: ${Constants.system.blue};
}
`;
const STYLES_CONTEXT_MENU = css`
position: absolute;
`;
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};
color: ${Constants.system.grayLight2};
@media (max-width: ${Constants.sizes.mobile}px) {
margin: 8px 0 16px 0;
}
`;
export class SlatePreviewBlock extends React.Component {
_ref;
_test;
state = {
showMenu: false,
copyValue: "",
};
_handleCopy = (e, value) => {
e.stopPropagation();
this.setState({ copyValue: value }, () => {
this._ref.select();
document.execCommand("copy");
this._handleHide();
});
};
_handleClick = (e) => {
e.stopPropagation();
if (this.state.showMenu) {
this._handleHide();
return;
}
this.setState({ showMenu: true });
};
_handleHide = (e) => {
this.setState({ showMenu: false });
};
render() {
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);
}
if (objects.length >= 4) break;
}
}
if (!objects.length && slate.objects?.length) {
objects = [slate.objects[0]];
}
let contextMenu = (
this._handleCopy(e, this.props.slate.id),
},
],
]}
/>
{
this._ref = c;
}}
value={this.state.copyValue}
css={STYLES_COPY_INPUT}
/>
);
return (
{this.props.slate.data.name}
{this.props.isOwner && !this.props.slate.isPublic && (
)}
{this.props.isOwner ? (
{
this._test = c;
}}
>
{this.state.showMenu ?
{contextMenu}
: null}
) : (
{slate.objects.length} file
{slate.objects.length !== 1 ? "s" : ""}
)}
{this.props.slate.data.body ? this.props.slate.data.body : null}
{objects.length === 0 ? (
This collection is empty
) : objects.length < 4 ? (
) : (
)}
{this.props.slate.data.name}
{this.props.isOwner && !this.props.slate.isPublic && (
)}
{this.props.slate.data.body ? (
{this.props.slate.data.body}
) : (
)}
{objects.length >= 1 ? (
) : (
This collection is empty
)}
);
}
}
const STYLES_SLATES = css`
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
grid-column-gap: 16px;
grid-row-gap: 16px;
padding-bottom: 48px;
@media (max-width: ${Constants.sizes.tablet}px) {
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
@media (max-width: ${Constants.sizes.mobile}px) {
display: block;
}
`;
export default class SlatePreviewBlocks extends React.Component {
render() {
return (
{this.props.slates?.map((slate) => (
))}
);
}
}