strapi-plugin-content-manager
Version:
A powerful UI to easily manage your data.
172 lines (160 loc) • 3.06 kB
JavaScript
import styled, { css } from 'styled-components';
const sizes = {
small: '35px',
big: '127px',
margin: '20px',
};
const max = 4;
const StyledMediaPreviewList = styled.div`
position: relative;
height: ${sizes.small};
> div {
position: absolute;
top: 0;
${createCSS()};
}
`;
function createCSS() {
let styles = '';
for (let i = 0; i <= max; i += 1) {
styles += `
&:nth-of-type(${i}) {
left: calc( ${sizes.margin} * ${i - 1});
z-index: ${i};
}
`;
}
return css`
${styles}
`;
}
const MediaPreviewItem = styled.div`
width: ${sizes.small};
height: ${sizes.small};
div {
width: 100%;
height: 100%;
overflow: hidden;
border-radius: calc(${sizes.small} / 2);
background-color: #f3f3f4;
border: 1px solid #f3f3f4;
}
&.hoverable {
:hover {
z-index: ${max + 1};
}
}
`;
const MediaPreviewFile = styled(MediaPreviewItem)`
span {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
div {
position: relative;
background-color: #f3f3f4;
color: #333740;
text-align: center;
line-height: ${sizes.small};
border: 1px solid white;
span {
display: block;
padding: 0 3px;
text-transform: uppercase;
font-size: 10px;
font-weight: 600;
}
i,
svg {
position: absolute;
left: 1px;
top: -1px;
font-size: 15px;
width: 100%;
height: 100%;
&:before {
width: 100%;
height: 100%;
padding: 10px;
line-height: 35px;
background: #f3f3f4;
}
}
}
div + span {
display: none;
position: absolute;
left: 120%;
bottom: -10px;
max-width: 150px;
color: #333740;
}
&.hoverable {
:hover {
div + span {
display: block;
}
}
}
`;
const MediaPreviewText = styled(MediaPreviewItem)`
div {
font-size: 13px;
color: #333740;
text-align: center;
line-height: ${sizes.small};
font-weight: 600;
}
`;
const MediaPreviewImage = styled(MediaPreviewItem)`
img {
display: block;
object-fit: cover;
background-color: #fafafb;
}
div {
position: relative;
&::before {
content: '-';
position: absolute;
width: 100%;
height: 100%;
background: white;
color: transparent;
opacity: 0;
}
img {
width: 100%;
height: 100%;
}
}
div + img {
display: none;
width: ${sizes.big};
height: ${sizes.big};
border-radius: calc(${sizes.big} / 2);
margin-top: calc(${`-${sizes.big}`} - ${sizes.small} - 5px);
margin-left: calc((${sizes.small} - ${sizes.big}) / 2);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}
&.hoverable {
:hover {
div {
&::before {
opacity: 0.6;
}
}
div + img {
display: block;
}
}
}
`;
export {
MediaPreviewFile,
MediaPreviewImage,
MediaPreviewItem,
MediaPreviewText,
StyledMediaPreviewList,
};