import { ToolbarGroup, ToolbarButton, Dropdown, MenuItem, MenuGroup, SlotFillProvider, Popover, } from '@wordpress/components'; import { Icon, chevronDown } from '@wordpress/icons'; import clsx from 'clsx'; import { useTranslate } from 'i18n-calypso'; import { ReactNode, useCallback, useEffect, useRef, useState, useMemo } from 'react'; import './style.scss'; interface GroupedIndexStore { [ key: string ]: boolean; } export default function DropdownGroup( { children, className = '', hideRatio = 0.99, showRatio = 1, rootMargin = '0px', onClick = () => null, initialActiveIndex = -1, initialActiveIndexes, isMultiSelection, }: { children: ReactNode[]; className?: string; hideRatio?: number; showRatio?: number; rootMargin?: string; onClick?: ( index: number ) => void; initialActiveIndex?: number; initialActiveIndexes?: number[]; isMultiSelection?: boolean; } ) { const classes = clsx( 'responsive-toolbar-group__dropdown', className ); const defaultActiveIndexes = useMemo( () => { if ( isMultiSelection ) { return initialActiveIndexes || []; } return initialActiveIndex !== -1 ? [ initialActiveIndex ] : []; }, [ isMultiSelection, initialActiveIndex, initialActiveIndexes ] ); const containerRef = useRef< HTMLDivElement >( null ); const [ calculatedOnce, setCalculatedOnce ] = useState< boolean >( false ); const [ activeIndexes, setActiveIndexes ] = useState< Set< number > >( new Set( defaultActiveIndexes ) ); const [ groupedIndexes, setGroupedIndexes ] = useState< GroupedIndexStore >( {} ); const { current: shadowListItems } = useRef< HTMLButtonElement[] >( [] ); const translate = useTranslate(); const onSelect = ( index: number ) => { setActiveIndexes( ( currentActiveIndexes: Set< number > ) => { if ( ! isMultiSelection ) { return new Set( [ index ] ); } if ( ! currentActiveIndexes.has( index ) ) { currentActiveIndexes.add( index ); } else if ( currentActiveIndexes.size > 1 ) { currentActiveIndexes.delete( index ); } return currentActiveIndexes; } ); }; const assignRef = ( index: number, element: HTMLButtonElement ) => { shadowListItems[ index ] = element; }; const getChildrenToRender = () => Object.keys( groupedIndexes ).map( ( index ) => ( { index, grouped: groupedIndexes[ index ], child: children[ parseInt( index ) ], } ) ); const renderChildren = ( type = 'grouped' ) => { if ( type === 'all' ) { return children.map( ( child, index ) => ( assignRef( index, el ) } className="responsive-toolbar-group__button-item" > { child } ) ); } return getChildrenToRender() .filter( ( { grouped } ) => ! grouped ) .map( ( { index, child } ) => ( { onSelect( parseInt( index ) ); onClick( parseInt( index ) ); } } className="responsive-toolbar-group__button-item" > { child } ) ); }; const maybeRenderMore = ( always = false ) => { const containGroupedIndexes = !! Object.values( groupedIndexes ).find( ( index ) => index ); if ( containGroupedIndexes || always ) { return ( ( groupedIndexes[ index ] ) } onClick={ () => { onToggle(); } } > { translate( 'More' ) } ) } renderContent={ ( { onClose } ) => ( { getChildrenToRender() .filter( ( { grouped } ) => grouped ) .map( ( { index, child } ) => ( { onSelect( parseInt( index ) ); onClick( parseInt( index ) ); onClose(); } } className={ clsx( 'responsive-toolbar-group__menu-item', activeIndexes.has( parseInt( index ) ) ? 'is-selected' : '' ) } > { child } ) ) } ) } /> ); } return; }; // I have to optimize this callback so it doesn't do unnecesary updates const interceptionCallback = useCallback( ( index: number, entries: IntersectionObserverEntry[] ) => { const entry = entries[ 0 ]; if ( index === 0 ) { return; } if ( entry.intersectionRatio >= showRatio ) { // is last child becoming visible just showcase it. if ( index === children.length - 1 ) { setGroupedIndexes( ( state: GroupedIndexStore ) => ( { ...state, [ index ]: false, [ index - 1 ]: false, } ) ); } else { setGroupedIndexes( ( state: GroupedIndexStore ) => ( { ...state, [ index - 1 ]: false, } ) ); } } // always hide sets of two to give space to the "more" item. if ( entry.intersectionRatio <= hideRatio ) { setGroupedIndexes( ( state: GroupedIndexStore ) => ( { ...state, [ index ]: true, [ index - 1 ]: true, } ) ); } setCalculatedOnce( ( calculated ) => { if ( ! calculated ) { return true; } return calculated; } ); }, [ children, hideRatio, showRatio ] ); useEffect( () => { if ( ! containerRef.current ) { return; } const observers: IntersectionObserver[] = []; shadowListItems.forEach( ( listItem, index ) => { observers[ index ] = new IntersectionObserver( interceptionCallback.bind( DropdownGroup, index ), { root: containerRef.current, rootMargin, threshold: [ hideRatio, showRatio ], } ); observers[ index ].observe( listItem ); } ); return () => { observers.forEach( ( observer ) => observer.disconnect() ); }; }, [ shadowListItems, interceptionCallback, hideRatio, showRatio, rootMargin ] ); // Reset active on prop change from above useEffect( () => { setActiveIndexes( new Set( defaultActiveIndexes ) ); }, [ defaultActiveIndexes ] ); return (
{ renderChildren( 'all' ) } { maybeRenderMore( true ) } { renderChildren() } { maybeRenderMore() }
); }