All files / src/sections/PayBuilder/components/loaders PreviewProductPlaceholder.tsx

100% Statements 4/4
100% Branches 0/0
100% Functions 2/2
100% Lines 4/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134        12x 171x                                                                                                                                                                                           12x 340x                                                                  
import FadeUpWrapper from "@components/animation/FadeUpWrapper";
import { Grid, Skeleton, Stack } from "@mui/material";
import { Box } from "@mui/material";
 
export const PreviewProductSkeletonLoader = () => {
  return (
    <Grid
      container
      justifyContent="center"
      alignItems="flex-start"
      sx={{
        gap: 2,
        padding: "20px 0",
      }}
    >
      <FadeUpWrapper x={0} delay={300}>
        <Box sx={{ display: "flex", gap: 2, width: "100%" }}>
          <Box
            sx={{
              display: "flex",
              gap: 2,
              flexDirection: "column",
              width: "48%",
              justifyContent: "center",
            }}
          >
            <Skeleton
              variant="text"
              sx={{ width: "40%", height: 32, borderRadius: "45px" }}
            />
            <Skeleton
              variant="text"
              sx={{ width: "90%", height: 14, borderRadius: "17.5px" }}
            />
            <Skeleton
              variant="text"
              sx={{ width: "90%", height: 14, borderRadius: "17.5px" }}
            />
          </Box>
          <Skeleton
            variant="rectangular"
            width="48%"
            height={302}
            sx={{ borderRadius: "17.5px" }}
          />
        </Box>
      </FadeUpWrapper>
 
      {/* Second row */}
      <FadeUpWrapper x={0} delay={500}>
        <Box sx={{ display: "flex", gap: 2, width: "100%" }}>
          <Box
            sx={{
              width: "48%",
              display: "flex",
              flexDirection: "column",
              gap: 2,
            }}
          >
            <Skeleton
              variant="rectangular"
              width="100%"
              height={104}
              sx={{ borderRadius: "12px" }}
            />
            <Skeleton
              variant="rectangular"
              width="100%"
              height={104}
              sx={{ borderRadius: "12px" }}
            />
          </Box>
          <Box
            sx={{
              width: "48%",
              display: "flex",
              flexDirection: "column",
              gap: 2,
            }}
          >
            <Skeleton
              variant="rectangular"
              width="100%"
              height={104}
              sx={{ borderRadius: "12px" }}
            />
            <Skeleton
              variant="rectangular"
              width="100%"
              height={104}
              sx={{ borderRadius: "12px" }}
            />
          </Box>
        </Box>
      </FadeUpWrapper>
    </Grid>
  );
};
 
export const StandardProductSkeleton = () => {
  return (
    <Stack>
      <Stack mb="32px" justifyContent="center" alignItems="center">
        <Skeleton
          variant="text"
          sx={{ width: "20%", height: "42px", borderRadius: "16px" }}
        />
      </Stack>
 
      <Skeleton
        variant="rectangular"
        sx={{ width: "100%", height: "302px", borderRadius: "16px" }}
      />
 
      <Stack mt="40px" justifyContent="center" alignItems="center">
        <Skeleton
          variant="text"
          sx={{ width: "30%", height: "40px", borderRadius: "16px" }}
        />
      </Stack>
      <Stack mt="16px" justifyContent="center" alignItems="center">
        <Skeleton
          variant="text"
          sx={{ width: "70%", height: "20px", borderRadius: "16px" }}
        />
        <Skeleton
          variant="text"
          sx={{ width: "40%", height: "20px", borderRadius: "16px" }}
        />
      </Stack>
    </Stack>
  );
};