File size: 1,333 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 |
import PropTypes from 'prop-types';
import { Fragment } from 'react';
import { connect } from 'react-redux';
import QueryTheme from 'calypso/components/data/query-theme';
import { isWpcomTheme, isWporgTheme } from 'calypso/state/themes/selectors';
import { knownConflictingThemes } from 'calypso/state/themes/selectors/get-canonical-theme';
const QueryCanonicalTheme = ( { siteId, themeId, isWpcom, isWporg } ) => {
// Conflicting themes are themes we always search Jetpack+Atomic sites for information about.
// Usually, it's only searched if we can't find info on both Wpcom and Wporg.
const isConflictingTheme = knownConflictingThemes.has( themeId );
return (
<Fragment>
<QueryTheme themeId={ themeId } siteId="wpcom" />
{ ! isWpcom && <QueryTheme themeId={ themeId } siteId="wporg" /> }
{ ( ( ! isWpcom && ! isWporg ) || isConflictingTheme ) && siteId && (
<QueryTheme themeId={ themeId } siteId={ siteId } />
) }
</Fragment>
);
};
QueryCanonicalTheme.propTypes = {
siteId: PropTypes.number,
themeId: PropTypes.string.isRequired,
// Connected propTypes
isWpcom: PropTypes.bool.isRequired,
isWporg: PropTypes.bool.isRequired,
};
export default connect( ( state, { themeId } ) => ( {
isWpcom: isWpcomTheme( state, themeId ),
isWporg: isWporgTheme( state, themeId ),
} ) )( QueryCanonicalTheme );
|