/* @flow */ import { FieldTextStateless as TextField } from '@atlaskit/field-text'; import { makeStyles } from '@material-ui/core/styles'; import React, { useCallback, useState } from 'react'; import { useTranslation } from 'react-i18next'; import { useSelector } from 'react-redux'; import { getFieldValue } from '../../base/react'; import { isSpeakerStatsSearchDisabled } from '../functions'; const useStyles = makeStyles(() => { return { speakerStatsSearch: { position: 'absolute', right: '50px', top: '-5px' } }; }); /** * The type of the React {@code Component} props of {@link SpeakerStatsSearch}. */ type Props = { /** * The function to initiate the change in the speaker stats table. */ onSearch: Function, }; /** * React component for display an individual user's speaker stats. * * @returns {React$Element} */ function SpeakerStatsSearch({ onSearch }: Props) { const classes = useStyles(); const { t } = useTranslation(); const [ searchValue, setSearchValue ] = useState(''); const onChange = useCallback((evt: Event) => { const value = getFieldValue(evt); setSearchValue(value); onSearch && onSearch(value); }, []); const disableSpeakerStatsSearch = useSelector(isSpeakerStatsSearchDisabled); if (disableSpeakerStatsSearch) { return null; } return (
); } export default SpeakerStatsSearch;