File size: 911 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 |
import { useEffect } from 'react';
import { useDispatch } from 'calypso/state';
import { fetchJetpackSitesFeatures } from 'calypso/state/sites/features/actions';
import isRequestingJetpackSitesFeatures from 'calypso/state/sites/selectors/is-requesting-jetpack-sites-features';
const requestFeatures = () => ( dispatch: any, getState: any ) => {
if ( ! isRequestingJetpackSitesFeatures( getState() ) ) {
dispatch( fetchJetpackSitesFeatures() );
}
};
/**
* Makes an API request to fetch all features on all Jetpack sites for the current user.
* This is the same data as QuerySiteFeatures, but this retrieves it for all Jetpack sites in
* a single request whereas QuerySiteFeatures would have to make one request per site.
*/
export default function QueryJetpackSitesFeatures() {
const dispatch = useDispatch();
useEffect( () => {
dispatch( requestFeatures() );
}, [ dispatch ] );
return null;
}
|