DocSpace-client/packages/common/components/Loaders/InfoPanelBodyLoader/views/GalleryLoader.js

84 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-10-01 23:39:28 +00:00
import React from "react";
import styled from "styled-components";
import RectangleLoader from "../../RectangleLoader/RectangleLoader";
const StyledGalleryLoader = styled.div`
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: start;
.thumbnail {
}
`;
const StyledSubtitleLoader = styled.div`
width: 100%;
padding: 24px 0 24px 0;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
`;
const StyledProperty = styled.div`
width: 100%;
display: grid;
grid-template-columns: 101px 1fr;
grid-column-gap: 24px;
grid-row-gap: 8px;
.property-content {
max-width: 100%;
margin: auto 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
`;
const propertyDimensions = [
{ propertyTitle: "100px", propertyContent: "160px" },
{ propertyTitle: "52px", propertyContent: "50px" },
{ propertyTitle: "68px", propertyContent: "35px" },
];
const GalleryLoader = () => {
return (
<StyledGalleryLoader>
<RectangleLoader
className="thumbnail"
width={"360.2px"}
height={"346px"}
borderRadius={"3px"}
/>
<StyledSubtitleLoader>
<RectangleLoader width={"71px"} height={"16px"} borderRadius={"3px"} />
</StyledSubtitleLoader>
<StyledProperty>
{propertyDimensions.map((property) => [
<RectangleLoader
className="property-title"
width={property.propertyTitle}
height={"20px"}
borderRadius={"3px"}
/>,
<RectangleLoader
className="property-content"
width={property.propertyContent}
height={"20px"}
borderRadius={"3px"}
/>,
])}
</StyledProperty>
</StyledGalleryLoader>
);
};
export default GalleryLoader;