Closes https://github.com/twentyhq/twenty/issues/5656 https://github.com/twentyhq/twenty/assets/22936103/3e4beea2-9aa9-4015-bb99-ee22adb53b63
74 lines
2.0 KiB
TypeScript
74 lines
2.0 KiB
TypeScript
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
|
|
import { useTheme } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
|
|
const StyledSkeletonContainer = styled.div`
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: ${({ theme }) => theme.spacing(8)};
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: ${({ theme }) => theme.spacing(4)};
|
|
flex-wrap: wrap;
|
|
align-content: flex-start;
|
|
`;
|
|
|
|
const StyledSkeletonSubSection = styled.div`
|
|
display: flex;
|
|
gap: ${({ theme }) => theme.spacing(4)};
|
|
`;
|
|
|
|
const StyledSkeletonSubSectionContent = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: ${({ theme }) => theme.spacing(3)};
|
|
justify-content: center;
|
|
`;
|
|
|
|
const SkeletonColumnLoader = ({ height }: { height: number }) => {
|
|
const theme = useTheme();
|
|
return (
|
|
<SkeletonTheme
|
|
baseColor={theme.background.tertiary}
|
|
highlightColor={theme.background.transparent.lighter}
|
|
borderRadius={80}
|
|
>
|
|
<Skeleton width={24} height={height} />
|
|
</SkeletonTheme>
|
|
);
|
|
};
|
|
|
|
export const SkeletonLoader = ({
|
|
withSubSections = false,
|
|
}: {
|
|
withSubSections?: boolean;
|
|
}) => {
|
|
const theme = useTheme();
|
|
const skeletonItems = Array.from({ length: 3 }).map((_, index) => ({
|
|
id: `skeleton-item-${index}`,
|
|
}));
|
|
|
|
return (
|
|
<SkeletonTheme
|
|
baseColor={theme.background.tertiary}
|
|
highlightColor={theme.background.transparent.lighter}
|
|
borderRadius={4}
|
|
>
|
|
<StyledSkeletonContainer>
|
|
<Skeleton width={440} height={16} />
|
|
{withSubSections &&
|
|
skeletonItems.map(({ id }, index) => (
|
|
<StyledSkeletonSubSection key={id}>
|
|
<SkeletonColumnLoader height={index === 1 ? 120 : 84} />
|
|
<StyledSkeletonSubSectionContent>
|
|
<Skeleton width={400} height={24} />
|
|
<Skeleton width={400} height={24} />
|
|
{index === 1 && <Skeleton width={400} height={24} />}
|
|
</StyledSkeletonSubSectionContent>
|
|
</StyledSkeletonSubSection>
|
|
))}
|
|
</StyledSkeletonContainer>
|
|
</SkeletonTheme>
|
|
);
|
|
};
|