File size: 1,223 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import { isEqual } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import { fetchPlugins } from 'calypso/state/plugins/installed/actions';
import { isRequestingForSites } from 'calypso/state/plugins/installed/selectors';
class QueryJetpackPlugins extends Component {
static propTypes = {
siteIds: PropTypes.arrayOf(
PropTypes.oneOfType( [ PropTypes.string, PropTypes.number ] ).isRequired
).isRequired,
isRequestingForSites: PropTypes.bool,
fetchPlugins: PropTypes.func,
};
componentDidMount() {
if ( this.props.siteIds && ! this.props.isRequestingForSites ) {
this.props.fetchPlugins( this.props.siteIds );
}
}
componentDidUpdate( prevProps ) {
if ( isEqual( prevProps.siteIds, this.props.siteIds ) ) {
return;
}
this.refresh( this.props.isRequestingForSites, this.props.siteIds );
}
refresh( isRequesting, siteIds ) {
if ( ! isRequesting ) {
this.props.fetchPlugins( siteIds );
}
}
render() {
return null;
}
}
export default connect(
( state, props ) => {
return {
isRequestingForSites: isRequestingForSites( state, props.siteIds ),
};
},
{ fetchPlugins }
)( QueryJetpackPlugins );
|