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 | 9x 48x | import { Row, Col, Strip } from "@canonical/react-components";
import { DefaultCard } from "@canonical/store-components";
 
import CardsLoader from "./CardsLoader";
 
import { formatCardData } from "../../utils";
 
import type { RecommendationData } from "../../types";
 
type Props = {
  isLoading: boolean;
  snaps: RecommendationData[];
  title: string;
  highlight?: boolean;
};
 
function RecommendationsSection({
  isLoading,
  snaps,
  title,
  highlight,
}: Props): JSX.Element {
  return (
    <>
      <div className="u-fixed-width">
        <h2>{title}</h2>
      </div>
 
      {isLoading && <CardsLoader />}
 
      {!isLoading && (
        <Strip shallow className="u-no-padding--bottom">
          <Row>
            {snaps.map((item: RecommendationData) => (
              <Col
                size={3}
                key={item.details.snap_id}
                style={{ marginBottom: "1.5rem" }}
              >
                <DefaultCard
                  data={formatCardData(item)}
                  highlighted={highlight}
                  highlightColor="#0f95a1"
                />
              </Col>
            ))}
          </Row>
        </Strip>
      )}
    </>
  );
}
 
export default RecommendationsSection;
  |