| import { Gridicon, Button } from '@automattic/components'; |
| import clsx from 'clsx'; |
| import PropTypes from 'prop-types'; |
| import React, { Component, Fragment, forwardRef } from 'react'; |
| import { navigate } from 'calypso/lib/navigate'; |
| import type { ReactNode, LegacyRef } from 'react'; |
|
|
| |
| const noop = () => {}; |
|
|
| interface MasterbarSubItemProps { |
| label: string | React.ReactNode; |
| url?: string; |
| onClick?: () => void; |
| className?: string; |
| } |
| interface MasterbarItemProps { |
| url?: string; |
| innerRef?: LegacyRef< HTMLButtonElement | HTMLAnchorElement >; |
| tipTarget?: string; |
| onClick?: () => void; |
| tooltip?: string; |
| icon?: ReactNode; |
| className?: string; |
| wrapperClassName?: string; |
| isActive?: boolean; |
| preloadSection?: () => void; |
| hasUnseen?: boolean; |
| children?: ReactNode; |
| alwaysShowContent?: boolean; |
| disabled?: boolean; |
| subItems?: Array< Array< MasterbarSubItemProps > >; |
| hasGlobalBorderStyle?: boolean; |
| as?: React.ComponentType; |
| variant?: string; |
| ariaLabel?: string; |
| } |
|
|
| class MasterbarItem extends Component< MasterbarItemProps > { |
| static propTypes = { |
| url: PropTypes.string, |
| tipTarget: PropTypes.string, |
| onClick: PropTypes.func, |
| tooltip: PropTypes.string, |
| icon: PropTypes.oneOfType( [ PropTypes.element, PropTypes.string ] ), |
| className: PropTypes.string, |
| isActive: PropTypes.bool, |
| preloadSection: PropTypes.func, |
| hasUnseen: PropTypes.bool, |
| alwaysShowContent: PropTypes.bool, |
| subItems: PropTypes.array, |
| hasGlobalBorderStyle: PropTypes.bool, |
| as: PropTypes.elementType, |
| variant: PropTypes.string, |
| ariaLabel: PropTypes.string, |
| }; |
|
|
| static defaultProps = { |
| icon: '', |
| onClick: noop, |
| hasUnseen: false, |
| url: '', |
| }; |
|
|
| state = { |
| isOpenForNonMouseFlow: false, |
| }; |
|
|
| wrapperRef = React.createRef< HTMLDivElement >(); |
|
|
| _preloaded = false; |
|
|
| componentDidMount() { |
| document.addEventListener( 'touchstart', this.closeMenuOnOutsideInteraction ); |
| document.addEventListener( 'keydown', this.closeMenuOnOutsideInteraction ); |
| document.addEventListener( 'click', this.closeMenuOnOutsideInteraction ); |
| return () => { |
| document.removeEventListener( 'touchstart', this.closeMenuOnOutsideInteraction ); |
| document.removeEventListener( 'keydown', this.closeMenuOnOutsideInteraction ); |
| document.addEventListener( 'click', this.closeMenuOnOutsideInteraction ); |
| }; |
| } |
|
|
| preload = () => { |
| if ( ! this._preloaded && typeof this.props.preloadSection === 'function' ) { |
| this._preloaded = true; |
| this.props.preloadSection(); |
| } |
| }; |
|
|
| renderChildren() { |
| const { children, hasUnseen, icon } = this.props; |
|
|
| return ( |
| <Fragment> |
| { hasUnseen && ( |
| <span className="masterbar__item-bubble" aria-label="You have unseen content" /> |
| ) } |
| { !! icon && ( typeof icon !== 'string' ? icon : <Gridicon icon={ icon } size={ 24 } /> ) } |
| { children && <span className="masterbar__item-content">{ children }</span> } |
| </Fragment> |
| ); |
| } |
|
|
| renderSubItems() { |
| const { subItems } = this.props; |
| if ( ! subItems ) { |
| return null; |
| } |
| return <ul className="masterbar__item-subitems">{ this.renderSubItemGroups( subItems ) }</ul>; |
| } |
|
|
| renderSubItemGroups = ( subItemGroups: Array< Array< MasterbarSubItemProps > > ) => { |
| return subItemGroups |
| .map( ( subItems, groupIndex ) => |
| subItems.map( ( item, i ) => ( |
| <li |
| key={ `${ groupIndex }-${ i }` } |
| className={ clsx( 'masterbar__item-subitems-item', item.className, { |
| 'masterbar__item-subitems-item--odd': groupIndex % 2 === 1, |
| } ) } |
| > |
| { item.onClick && ( |
| <Button |
| className="is-link" |
| onClick={ item.onClick } |
| onTouchEnd={ ( ev: React.TouchEvent ) => |
| this.submenuButtonTouch( ev, item.onClick ) |
| } |
| onKeyDown={ ( ev: React.KeyboardEvent ) => |
| this.submenuButtonByKey( ev, item.onClick ) |
| } |
| > |
| { item.label } |
| </Button> |
| ) } |
| { ! item.onClick && item.url && ( |
| <a |
| href={ item.url } |
| onTouchEnd={ this.navigateSubAnchorTouch } |
| onKeyDown={ this.navigateSubAnchorByKey } |
| > |
| { item.label } |
| </a> |
| ) } |
| { ! item.onClick && ! item.url && <div>{ item.label }</div> } |
| </li> |
| ) ) |
| ) |
| .flat(); |
| }; |
|
|
| toggleMenuByTouch = ( event: React.TouchEvent | React.KeyboardEvent ) => { |
| |
| if ( ! this.props.subItems ) { |
| return; |
| } |
| |
| event.preventDefault(); |
| this.setState( { isOpenForNonMouseFlow: ! this.state.isOpenForNonMouseFlow } ); |
| }; |
|
|
| toggleMenuByKey = ( event: React.KeyboardEvent ) => { |
| if ( event.key === 'Enter' || event.key === ' ' ) { |
| this.toggleMenuByTouch( event ); |
| } |
| }; |
|
|
| navigateSubAnchorTouch = ( event: React.TouchEvent | React.KeyboardEvent ) => { |
| |
| |
| |
| event.preventDefault(); |
| const url = event.currentTarget.getAttribute( 'href' ); |
| if ( url ) { |
| navigate( url ); |
| } |
| this.setState( { isOpenForNonMouseFlow: false } ); |
| }; |
|
|
| navigateSubAnchorByKey = ( event: React.KeyboardEvent ) => { |
| if ( event.key === 'Enter' || event.key === ' ' ) { |
| this.navigateSubAnchorTouch( event ); |
| } |
| }; |
|
|
| submenuButtonTouch = ( |
| event: React.TouchEvent | React.KeyboardEvent, |
| onClick: ( () => void ) | undefined |
| ) => { |
| event.preventDefault(); |
| this.setState( { isOpenForNonMouseFlow: false } ); |
| onClick && onClick(); |
| }; |
|
|
| submenuButtonByKey = ( event: React.KeyboardEvent, onClick: ( () => void ) | undefined ) => { |
| if ( event.key === 'Enter' || event.key === ' ' ) { |
| this.submenuButtonTouch( event, onClick ); |
| } |
| }; |
|
|
| closeMenuOnOutsideInteraction = ( event: TouchEvent | KeyboardEvent | MouseEvent ) => { |
| |
| if ( ! this.props.subItems || ! this.state.isOpenForNonMouseFlow ) { |
| return; |
| } |
|
|
| |
| const isInWrapper = this.wrapperRef.current?.contains( event.target as Node ); |
| if ( ! isInWrapper ) { |
| this.setState( { isOpenForNonMouseFlow: false } ); |
| } |
| }; |
|
|
| render() { |
| const itemClasses = clsx( 'masterbar__item', this.props.className, { |
| 'is-active': this.props.isActive, |
| 'has-unseen': this.props.hasUnseen, |
| 'masterbar__item--always-show-content': this.props.alwaysShowContent, |
| 'has-subitems': this.props.subItems, |
| 'is-open': this.state.isOpenForNonMouseFlow, |
| 'has-global-border': this.props.hasGlobalBorderStyle, |
| } ); |
|
|
| const attributes = { |
| 'data-tip-target': this.props.tipTarget, |
| onClick: this.props.onClick, |
| title: this.props.tooltip, |
| className: itemClasses, |
| onTouchStart: this.preload, |
| onMouseEnter: this.preload, |
| disabled: this.props.disabled, |
| 'aria-label': this.props.ariaLabel, |
| }; |
|
|
| return ( |
| <div |
| className={ clsx( 'masterbar__item-wrapper', this.props.wrapperClassName ) } |
| ref={ this.wrapperRef } |
| > |
| <MenuItem |
| as={ this.props.as } |
| variant={ this.props.variant } |
| url={ this.props.url } |
| innerRef={ this.props.innerRef } |
| { ...attributes } |
| onKeyDown={ this.props.subItems && this.toggleMenuByKey } |
| onTouchEnd={ this.props.subItems && this.toggleMenuByTouch } |
| > |
| { this.renderChildren() } |
| </MenuItem> |
| { this.renderSubItems() } |
| </div> |
| ); |
| } |
| } |
|
|
| |
| export default forwardRef< HTMLButtonElement | HTMLAnchorElement, MasterbarItemProps >( |
| ( props, ref ) => <MasterbarItem innerRef={ ref } { ...props } /> |
| ); |
|
|
| type MenuItemProps< R > = { |
| url?: string; |
| innerRef?: R; |
| as?: React.ComponentType; |
| variant?: string; |
| } & React.HTMLAttributes< HTMLElement >; |
|
|
| function MenuItem< R >( { url, innerRef, as: Component, ...props }: MenuItemProps< R > ) { |
| if ( Component ) { |
| return ( |
| <Component |
| { ...props } |
| { ...( innerRef ? { ref: innerRef } : {} ) } |
| { ...( url ? { url } : {} ) } |
| /> |
| ); |
| } |
|
|
| return url ? ( |
| <a href={ url } ref={ innerRef as LegacyRef< HTMLAnchorElement > } { ...props } /> |
| ) : ( |
| <button ref={ innerRef as LegacyRef< HTMLButtonElement > } { ...props } /> |
| ); |
| } |
|
|