File size: 762 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 { requestJetpackSettings } from 'calypso/state/jetpack/settings/actions';
import isRequestingJetpackSettings from 'calypso/state/selectors/is-requesting-jetpack-settings';

const request = ( siteId ) => ( dispatch, getState ) => {
	if ( ! isRequestingJetpackSettings( getState(), siteId ) ) {
		dispatch( requestJetpackSettings( siteId ) );
	}
};

function QueryJetpackSettings( { siteId } ) {
	const dispatch = useDispatch();

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

	return null;
}

QueryJetpackSettings.propTypes = {
	siteId: PropTypes.number.isRequired,
};

export default QueryJetpackSettings;