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 Window from "~/common/window"; import { css } from "@emotion/react"; import { Boundary } from "~/components/system/components/fragments/Boundary"; import { PopoverNavigation } from "~/components/system/components/PopoverNavigation"; 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.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 = [
, ]; } 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) => (
)); } return (
{objects}
); } } 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.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; 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: 0 0 40px 0 ${Constants.system.shadow}; 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.darkGray}; 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.darkGray}; :hover { color: ${Constants.system.brand}; } `; 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.darkGray}; @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() { let count = 0; const { objects } = this.props.slate.data; if (objects.length >= 4) { const set = this.props.slate.data.objects.slice(0, 4); for (let object of set) { if (object.type.startsWith("image/") && !object.type.startsWith("image/svg")) { count++; } } } let first = objects ? objects[0] : null; 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.isPublic && ( )}
{this.props.isOwner ? (
{ this._test = c; }} >
{this.state.showMenu ?
{contextMenu}
: null}
) : (
{objects.length} file {objects.length > 1 ? "s" : ""}
)}
{this.props.slate.data.body ? this.props.slate.data.body : null}
{objects.length === 1 || (objects.length != 0 && count <= 3) ? (
) : first ? (
) : (
)}
{this.props.slate.data.name}
{this.props.isOwner && (
{this.props.isPublic ? null : ( )}
)}
{this.props.slate.data.body ? (
{this.props.slate.data.body}
) : (
)}
{first ? ( ) : (
)}
); } } 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.external ? this.props.slates?.map((slate) => ( )) : this.props.slates?.map((slate) => (
this.props.onAction({ type: "NAVIGATE", value: "NAV_SLATE", data: { decorator: "SLATE", ...slate }, }) } >
))}
); } }