import * as React from "react"; import * as Constants from "~/common/constants"; import * as Window from "~/common/window"; import { css } from "@emotion/core"; import { ProcessedText } from "~/components/system/components/Typography"; import { ViewAllButton } from "~/components/core/ViewAll"; import SlateMediaObjectPreview from "~/components/core/SlateMediaObjectPreview"; const MARGIN = 12; const MIN_WIDTH = 144; const placeholder = "https://slate.textile.io/ipfs/bafkreidq27ycqubd4pxbo76n3rv5eefgxl3a2lh3wfvdgtil4u47so3nqe"; 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_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_BLOCK = css` box-shadow: 0 0 0 0.5px ${Constants.system.lightBorder} inset, 0 0 40px 0 ${Constants.system.shadow}; padding: 24px; font-size: 12px; text-align: left; cursor: pointer; height: 440px; width: 100%; @media (max-width: ${Constants.sizes.mobile}px) { margin: 24px auto; height: auto; } `; const STYLES_BODY = css` font-family: ${Constants.font.text}; font-size: ${Constants.typescale.lvl0}; color: ${Constants.system.darkGray}; margin-bottom: 24px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; @media (max-width: ${Constants.sizes.mobile}px) { display: none; } `; const STYLES_TITLE = css` font-size: ${Constants.typescale.lvl1}; font-family: ${Constants.font.medium}; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 16px 0 4px 0; @media (max-width: ${Constants.sizes.mobile}px) { font-size: ${Constants.typescale.lvl1}; } `; const STYLES_PREVIEW = css` display: flex; `; const STYLES_INFO = css` display: flex; justify-content: space-between; `; const STYLES_OBJECT_COUNT = css` margin-top: 18px; width: auto; font-size: ${Constants.typescale.lvlN1}; color: ${Constants.system.darkGray}; margin-right: 0; @media (max-width: ${Constants.sizes.mobile}px) { margin-top: 18px; } `; export class SlatePreviewBlock extends React.Component { _ref; _test; state = { showMenu: false, copyValue: "", windowWidth: 360, }; componentDidMount = () => { this.calculateWidth(); window.addEventListener("resize", this.calculateWidth); }; componentWillUnmount = () => { window.removeEventListener("resize", this.calculateWidth); }; calculateWidth = () => { this.setState({ windowWidth: window.innerWidth }); }; _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 first = this.props.slate.data.objects ? this.props.slate.data.objects[0] : null; return (
{this.props.slate.data.objects.length === 1 ? (
) : first ? (
) : (
)}
{this.props.slate.data.name}
{this.props.slate.data.body ? (
) : (
)}
{this.props.slate.data.objects.length} file {this.props.slate.data.objects.length > 1 ? "s" : ""}
{first ? ( ) : (
)}
{this.props.slate.data.name}
{this.props.slate.data.body ? (
) : (
)}
{this.props.slate.data.objects.length} file {this.props.slate.data.objects.length > 1 ? "s" : ""}
); } } const STYLES_LINK = css` color: ${Constants.system.grayBlack}; text-decoration: none; width: calc(33.33% - 16px); margin-bottom: 16px; margin-right: 16px; @media (max-width: ${Constants.sizes.tablet}px) { width: 50%; } @media (max-width: ${Constants.sizes.mobile}px) { width: 100%; } `; const STYLES_SLATES = css` display: flex; flex-direction: row; flex-wrap: wrap; overflow: hidden; padding-bottom: 48px; @media (max-width: ${Constants.sizes.mobile}px) { display: block; } `; export default class SlatePreviewBlocksExternal extends React.Component { state = { imageSize: 56, }; componentDidMount = () => { this.calculateWidth(); this.debounceInstance = this.debounce(this.calculateWidth, 350); window.addEventListener("resize", this.debounceInstance); }; componentWillUnmount = () => { window.removeEventListener("resize", this.debounceInstance); }; debounce = (func, wait) => { Window.debounce(func, wait); }; calculateWidth = () => { let windowWidth = window.innerWidth; if (windowWidth > Constants.sizes.mobile) { if (this.props.external) { windowWidth -= 48; } else { windowWidth -= 96; } windowWidth = Math.min(windowWidth, Constants.sizes.desktop); windowWidth -= 80; //NOTE(martina): 48px padding on scene page, 40px padding on block for (let i = this.props.numItems || 5; i > 0; i--) { let width = (windowWidth - MARGIN * 2 * (i - 1)) / i; if (width < MIN_WIDTH) { continue; } this.setState({ imageSize: width }); return; } } this.setState({ imageSize: windowWidth - 48 - 32 }); //NOTE(martina): 24px padding on scene page, 16px padding on block on mobile }; render() { return (
{this.props.slates.map((slate) => ( ))}
); } }