import PropTypes from 'prop-types'; import { useState } from 'react'; import useUsersQuery from 'calypso/data/users/use-users-query'; import SwitcherShell from './switcher-shell'; import './style.scss'; const AuthorSelector = ( { allowSingleUser = false, children, exclude, ignoreContext, onSelect, popoverPosition = 'bottom left', siteId, transformAuthor, } ) => { const [ search, setSearch ] = useState( '' ); const [ prevSiteId, setPrevSiteId ] = useState( null ); if ( siteId && siteId !== prevSiteId ) { setPrevSiteId( siteId ); if ( search !== '' ) { setSearch( '' ); } } const fetchOptions = { number: 50, authors_only: 1 }; const trimmedSearch = search.trim?.(); if ( trimmedSearch ) { fetchOptions.number = 20; // make search a little faster fetchOptions.search = `*${ trimmedSearch }*`; fetchOptions.search_columns = [ 'user_login', 'display_name' ]; } const { data, isLoading, fetchNextPage, hasNextPage, isFetchingNextPage } = useUsersQuery( siteId, fetchOptions ); const users = data?.users.filter( ( user ) => { if ( typeof exclude === 'function' ) { return ! exclude( user ); } if ( Array.isArray( exclude ) ) { return ! exclude.includes( user.ID ); } return true; } ) ?? []; const listKey = [ 'authors', siteId, search ].join( '-' ); return ( { children } ); }; AuthorSelector.propTypes = { allowSingleUser: PropTypes.bool, exclude: PropTypes.oneOfType( [ PropTypes.arrayOf( PropTypes.number ), PropTypes.func ] ), onSelect: PropTypes.func, popoverPosition: PropTypes.string, siteId: PropTypes.number.isRequired, transformAuthor: PropTypes.func, }; export default AuthorSelector;