woocommerce/plugins/woocommerce-admin/client/profile-wizard/steps/business-details/index.js

74 lines
1.8 KiB
JavaScript
Raw Normal View History

/**
* 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 (
<div className="woocommerce-admin__business-details__spinner">
<Spinner />
</div>
);
}
const initialValues = {
businessDetailsTab: {
number_employees: profileItems.number_employees || '',
other_platform: profileItems.other_platform || '',
other_platform_name: profileItems.other_platform_name || '',
product_count: profileItems.product_count || '',
selling_venues: profileItems.selling_venues || '',
revenue: profileItems.revenue || '',
setup_client: profileItems.setup_client || false,
},
freeFeaturesTab: freeFeaturesTabValues,
};
return (
<BusinessFeaturesList { ...props } initialValues={ initialValues } />
);
};