| import { Gridicon } from '@automattic/components'; |
| import styled from '@emotion/styled'; |
| import { useTranslate } from 'i18n-calypso'; |
| import { Key } from 'react'; |
| import InfoPopover from 'calypso/components/info-popover'; |
|
|
| const flexAligned = { |
| display: 'flex', |
| alignItems: 'center', |
| }; |
|
|
| const StyledUl = styled.ul` |
| ${ flexAligned }; |
| list-style-type: none; |
| margin: 0; |
| `; |
|
|
| const StyledLi = styled.li` |
| ${ flexAligned }; |
| font-size: 13px; |
| font-weight: 400; |
| --color-link: var( --studio-gray-50 ); |
| |
| a { |
| text-decoration: none; |
| } |
| |
| & .info-popover { |
| align-self: flex-start; |
| } |
| |
| :last-of-type:not( :first-of-type ) { |
| --color-link: var( --studio-gray-80 ); |
| font-weight: 500; |
| } |
| `; |
|
|
| const StyledBackLink = styled.a` |
| ${ flexAligned }; |
| font-size: 13px; |
| &, |
| &:link, |
| &:visited, |
| &:hover, |
| &:active { |
| color: var( --studio-gray-80 ); |
| } |
| > svg { |
| margin-right: 5px; |
| } |
| `; |
|
|
| const StyledRootLabel = styled.span` |
| ${ flexAligned }; |
| font-size: 1rem; |
| font-weight: 600; |
| color: var( --studio-gray-80 ); |
| `; |
|
|
| const StyledItem = styled.div` |
| display: flex; |
| `; |
|
|
| const StyledGridicon = styled( Gridicon )` |
| margin: 0 16px; |
| color: var( --color-neutral-10 ); |
| `; |
|
|
| const HelpBubble = styled( InfoPopover )` |
| margin-left: 7px; |
| display: flex; |
| align-items: center; |
| & .gridicon { |
| color: var( --studio-gray-30 ); |
| } |
| &:focus { |
| outline: thin dotted; |
| } |
| `; |
|
|
| const StyledIcon = styled.div` |
| margin-right: 10px; |
| `; |
|
|
| const renderHelpBubble = ( item: Item ) => { |
| if ( ! item.helpBubble ) { |
| return null; |
| } |
|
|
| return ( |
| <HelpBubble icon="help-outline" position="right"> |
| { item.helpBubble } |
| </HelpBubble> |
| ); |
| }; |
|
|
| export type Item = { |
| id?: string; |
| label: string; |
| href?: string; |
| helpBubble?: React.ReactElement; |
| icon?: React.ReactElement; |
| onClick?: () => void; |
| className?: string; |
| }; |
| interface Props { |
| items: Item[]; |
| mobileItem?: Item; |
| compact?: boolean; |
| hideWhenOnlyOneLevel?: boolean; |
| } |
|
|
| const Breadcrumb: React.FunctionComponent< Props > = ( props ) => { |
| const translate = useTranslate(); |
| const { items = [], mobileItem, compact = false, hideWhenOnlyOneLevel } = props; |
|
|
| if ( items.length === 0 ) { |
| return null; |
| } |
|
|
| if ( items.length === 1 ) { |
| if ( hideWhenOnlyOneLevel ) { |
| return null; |
| } |
| const [ item ] = items; |
| return ( |
| <StyledItem> |
| { item.icon && <StyledIcon>{ item.icon }</StyledIcon> } |
| <StyledRootLabel>{ item.label }</StyledRootLabel> |
| { renderHelpBubble( item ) } |
| </StyledItem> |
| ); |
| } |
|
|
| if ( compact ) { |
| const urlBack = mobileItem?.href ?? items[ items.length - 2 ].href; |
| const onClick = mobileItem?.onClick ?? items[ items.length - 2 ].onClick; |
| const label = mobileItem?.label ?? translate( 'Back' ); |
| return ( |
| <StyledBackLink className="breadcrumbs-back" href={ urlBack } onClick={ onClick }> |
| <Gridicon icon="chevron-left" size={ 18 } /> |
| { label } |
| </StyledBackLink> |
| ); |
| } |
|
|
| return ( |
| <StyledUl className="breadcrumbs"> |
| { items.map( ( item: Item, index: Key ) => ( |
| <StyledLi key={ index } className={ item.className }> |
| { item.icon && <StyledIcon>{ item.icon }</StyledIcon> } |
| { index !== 0 && <StyledGridicon icon="chevron-right" size={ 14 } /> } |
| { item.href && index !== items.length - 1 ? ( |
| <a href={ item.href } onClick={ item.onClick }> |
| { item.label } |
| </a> |
| ) : ( |
| <span>{ item.label }</span> |
| ) } |
| { renderHelpBubble( item ) } |
| </StyledLi> |
| ) ) } |
| </StyledUl> |
| ); |
| }; |
|
|
| export default Breadcrumb; |
|
|