File size: 765 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import PropTypes from 'prop-types';
import { useEffect } from 'react';
import { useDispatch } from 'react-redux';
import { requestCountryStates } from 'calypso/state/country-states/actions';
import { isCountryStatesFetching } from 'calypso/state/country-states/selectors';

const request = ( countryCode ) => ( dispatch, getState ) => {
	if ( ! isCountryStatesFetching( getState(), countryCode ) ) {
		dispatch( requestCountryStates( countryCode ) );
	}
};

function QueryCountryStates( { countryCode } ) {
	const dispatch = useDispatch();

	useEffect( () => {
		dispatch( request( countryCode ) );
	}, [ dispatch, countryCode ] );

	return null;
}

QueryCountryStates.propTypes = {
	countryCode: PropTypes.string.isRequired,
};

export default QueryCountryStates;