56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { compose } from '@wordpress/compose';
|
|
import { Suspense, lazy } from '@wordpress/element';
|
|
import { identity } from 'lodash';
|
|
|
|
/**
|
|
* WooCommerce dependencies
|
|
*/
|
|
import { getSetting } from '@woocommerce/wc-admin-settings';
|
|
import { Spinner } from '@woocommerce/components';
|
|
import {
|
|
ONBOARDING_STORE_NAME,
|
|
withOnboardingHydration,
|
|
} from '@woocommerce/data';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import withSelect from 'wc-api/with-select';
|
|
import { isOnboardingEnabled } from 'dashboard/utils';
|
|
|
|
const ProfileWizard = lazy( () =>
|
|
import( /* webpackChunkName: "profile-wizard" */ '../profile-wizard' )
|
|
);
|
|
import Layout from './layout';
|
|
|
|
const Homescreen = ( { profileItems, query } ) => {
|
|
if ( isOnboardingEnabled() && ! profileItems.completed ) {
|
|
return (
|
|
<Suspense fallback={ <Spinner /> }>
|
|
<ProfileWizard query={ query } />
|
|
</Suspense>
|
|
);
|
|
}
|
|
|
|
return <Layout query={ query } />;
|
|
};
|
|
|
|
export default compose(
|
|
getSetting( 'onboarding', {} ).profile
|
|
? withOnboardingHydration( getSetting( 'onboarding', {} ).profile )
|
|
: identity,
|
|
withSelect( ( select ) => {
|
|
if ( ! isOnboardingEnabled() ) {
|
|
return;
|
|
}
|
|
|
|
const { getProfileItems } = select( ONBOARDING_STORE_NAME );
|
|
const profileItems = getProfileItems();
|
|
|
|
return { profileItems };
|
|
} )
|
|
)( Homescreen );
|