/** * External dependencies */ import { useSelect } from '@wordpress/data'; import { useMemo } from '@wordpress/element'; import { Spinner } from '@woocommerce/components'; import { ONBOARDING_STORE_NAME, SETTINGS_STORE_NAME } from '@woocommerce/data'; /** * Internal dependencies */ import { BusinessFeaturesList, PERSIST_FREE_FEATURES_DATA_STORAGE_KEY, } from './flows/selective-bundle'; import './style.scss'; export const BusinessDetailsStep = ( props ) => { const { profileItems, isLoading } = useSelect( ( select ) => { return { isLoading: ! select( ONBOARDING_STORE_NAME ).hasFinishedResolution( 'getProfileItems' ) || ! select( SETTINGS_STORE_NAME ).hasFinishedResolution( 'getSettings', [ 'general' ] ), profileItems: select( ONBOARDING_STORE_NAME ).getProfileItems(), }; } ); const freeFeaturesTabValues = useMemo( () => { try { const values = JSON.parse( window.localStorage.getItem( PERSIST_FREE_FEATURES_DATA_STORAGE_KEY ) ); if ( values ) { return values; } } catch ( _e ) { // Skip errors } return { install_extensions: true }; }, [] ); if ( isLoading ) { return (