File size: 700 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import PropTypes from 'prop-types';
import { useEffect } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { getCurrentUserLocale } from 'calypso/state/current-user/selectors';
import { fetchJITM } from 'calypso/state/jitm/actions';
export default function QueryJITM( { siteId, messagePath, searchQuery } ) {
const locale = useSelector( getCurrentUserLocale );
const dispatch = useDispatch();
useEffect( () => {
dispatch( fetchJITM( siteId, messagePath, searchQuery, locale ) );
}, [ dispatch, siteId, messagePath, searchQuery, locale ] );
return null;
}
QueryJITM.propTypes = {
siteId: PropTypes.number.isRequired,
messagePath: PropTypes.string.isRequired,
};
|