mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-10 13:14:04 +03:00
68 lines
1.5 KiB
JavaScript
68 lines
1.5 KiB
JavaScript
//doable with vw. calculate vw - sidebar (if mobile size), divided by numItems = max-width and max-height
|
|
|
|
import React from "react";
|
|
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import { css } from "@emotion/react";
|
|
import SlateMediaObjectPreview from "~/components/core/SlateMediaObjectPreview";
|
|
|
|
const STYLES_IMAGE_ROW = css`
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
max-height: 186px;
|
|
overflow: hidden;
|
|
`;
|
|
|
|
const STYLES_ITEM_BOX = css`
|
|
width: 186px;
|
|
height: 186px;
|
|
padding: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
`;
|
|
|
|
export function SlatePreviewRow(props) {
|
|
let objects =
|
|
props.slate.data.objects.length > 5
|
|
? props.slate.data.objects.slice(0, 5)
|
|
: props.slate.data.objects;
|
|
return (
|
|
<div css={STYLES_IMAGE_ROW}>
|
|
{objects.map((each) => (
|
|
<div css={STYLES_ITEM_BOX} style={props.style}>
|
|
<SlateMediaObjectPreview type={each.type} url={each.url} />
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const STYLES_BLOCK = css`
|
|
border: 1px solid ${Constants.system.border};
|
|
border-radius: 16px;
|
|
padding: 24px;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
margin: 24px auto;
|
|
width: 95%;
|
|
max-width: 980px;
|
|
cursor: pointer;
|
|
`;
|
|
|
|
const STYLES_SLATE_NAME = css`
|
|
font-size: ${Constants.typescale.lvl1};
|
|
`;
|
|
|
|
export default function SlatePreviewBlock(props) {
|
|
return (
|
|
<div css={STYLES_BLOCK}>
|
|
<div css={STYLES_SLATE_NAME}>{props.slate.data.name}</div>
|
|
<SlatePreviewRow {...props} />
|
|
</div>
|
|
);
|
|
}
|