import React from 'react'; import PropTypes from 'prop-types'; import styled from 'styled-components'; import { Link } from 'react-router-dom'; import { remcalc, unitcalc } from '@ui/shared/functions'; import { colors } from '@ui/shared/constants'; import Container from '@ui/components/container'; import Row from '@ui/components/row'; import Column from '@ui/components/column'; import { H2 } from '@ui/components/base-elements'; const StyledDiv = styled.div` border-bottom: solid ${remcalc(1)} ${colors.base.grey}; padding: ${unitcalc(4.5)} 0 ${unitcalc(4.5)} 0; margin-bottom: ${remcalc(18)}; `; const StyledH2 = styled(H2)` color: ${colors.base.primary}; margin: 0; `; const BreadcrumbLink = styled(Link)` text-decoration: none; color: ${colors.base.primary}; `; const BreadcrumbSpan = styled.span` color: ${colors.base.text}; `; function getBreadcrumbLinks(links) { if(links.length) { return links.reduce((breadcrumb, link, index) => { if(breadcrumb.length) { breadcrumb.push( / ); } breadcrumb.push( {link.name} ); return breadcrumb; }, []); } return null; } const Breadcrumb = ({ links = [] }) => ( { getBreadcrumbLinks(links) } ); Breadcrumb.propTypes = { links: PropTypes.arrayOf( PropTypes.shape({ name: PropTypes.string, pathname: PropTypes.string })) }; export default Breadcrumb;