/** @format */ /** * External dependencies */ import { __, _x, sprintf } from '@wordpress/i18n'; import { Component, Fragment } from '@wordpress/element'; import { compose } from '@wordpress/compose'; import { Button, FormToggle } from '@wordpress/components'; import { withDispatch } from '@wordpress/data'; import { keys, get, pickBy } from 'lodash'; /** * WooCommerce dependencies */ import { formatValue } from 'lib/number-format'; import { getSetting, CURRENCY as currency } from '@woocommerce/wc-admin-settings'; /** * Internal dependencies */ import { H, Card, SelectControl, Form } from '@woocommerce/components'; import withSelect from 'wc-api/with-select'; import { recordEvent } from 'lib/tracks'; import { formatCurrency } from 'lib/currency-format'; import Plugins from 'dashboard/task-list/tasks/steps/plugins'; import { pluginNames } from 'wc-api/onboarding/constants'; const wcAdminAssetUrl = getSetting( 'wcAdminAssetUrl', '' ); class BusinessDetails extends Component { constructor( props ) { super(); const profileItems = get( props, 'profileItems', {} ); const businessExtensions = get( profileItems, 'business_extensions', false ); this.initialValues = { other_platform: profileItems.other_platform || '', product_count: profileItems.product_count || '', selling_venues: profileItems.selling_venues || '', revenue: profileItems.revenue || '', 'facebook-for-woocommerce': businessExtensions ? businessExtensions.includes( 'facebook-for-woocommerce' ) : true, 'mailchimp-for-woocommerce': businessExtensions ? businessExtensions.includes( 'mailchimp-for-woocommerce' ) : true, }; this.state = { installExtensions: false, isInstallingExtensions: false, extensionInstallError: false, }; this.extensions = [ 'facebook-for-woocommerce', 'mailchimp-for-woocommerce' ]; this.onContinue = this.onContinue.bind( this ); this.validate = this.validate.bind( this ); } async onContinue( values ) { const { createNotice, goToNextStep, isError, updateProfileItems } = this.props; const { other_platform, product_count, revenue, selling_venues } = values; const businessExtensions = this.getBusinessExtensions( values ); recordEvent( 'storeprofiler_store_business_details_continue', { product_number: product_count, already_selling: 'no' !== selling_venues, currency: currency.code, revenue, used_platform: other_platform, install_facebook: values[ 'facebook-for-woocommerce' ], install_mailchimp: values[ 'mailchimp-for-woocommerce' ], } ); const _updates = { other_platform, product_count, revenue, selling_venues, business_extensions: businessExtensions, }; // Remove possible empty values like `revenue` and `other_platform`. const updates = {}; Object.keys( _updates ).forEach( key => { if ( _updates[ key ] !== '' ) { updates[ key ] = _updates[ key ]; } } ); await updateProfileItems( updates ); if ( ! isError ) { if ( 0 === businessExtensions.length ) { goToNextStep(); return; } this.setState( { installExtensions: true, isInstallingExtensions: true, } ); } else { createNotice( 'error', __( 'There was a problem updating your business details.', 'woocommerce-admin' ) ); } } validate( values ) { const errors = {}; Object.keys( values ).map( name => { if ( 'other_platform' === name ) { if ( ! values.other_platform.length && [ 'other', 'brick-mortar-other' ].includes( values.selling_venues ) ) { errors.other_platform = __( 'This field is required', 'woocommerce-admin' ); } } else if ( 'revenue' === name ) { if ( ! values.revenue.length && [ 'other', 'brick-mortar', 'brick-mortar-other' ].includes( values.selling_venues ) ) { errors.revenue = __( 'This field is required', 'woocommerce-admin' ); } } else if ( ! this.extensions.includes( name ) && ! values[ name ].length ) { errors[ name ] = __( 'This field is required', 'woocommerce-admin' ); } } ); return errors; } getBusinessExtensions( values ) { return keys( pickBy( values ) ).filter( name => this.extensions.includes( name ) ); } getNumberRangeString( min, max = false ) { if ( ! max ) { return sprintf( _x( '%s+', 'store product count or revenue', 'woocommerce-admin' ), formatValue( 'number', min ) ); } return sprintf( _x( '%1$s - %2$s', 'store product count or revenue range', 'woocommerce-admin' ), formatValue( 'number', min ), formatValue( 'number', max ) ); } renderBusinessExtensionHelpText( values ) { const { isInstallingExtensions } = this.state; const extensions = this.getBusinessExtensions( values ); if ( 0 === extensions.length ) { return null; } const extensionsList = extensions .map( extension => { return pluginNames[ extension ]; } ) .join( ', ' ); if ( isInstallingExtensions ) { return
{ sprintf( __( 'Installing the following plugins: %s' ), extensionsList ) }
; } return ({ sprintf( __( 'The following plugins will be installed for free: %s' ), extensionsList ) }
); } renderBusinessExtensions( values, getInputProps ) { const { installExtensions } = this.state; const { goToNextStep } = this.props; const extensionsToInstall = this.getBusinessExtensions( values ); const extensionBenefits = [ { slug: 'facebook-for-woocommerce', title: __( 'Market on Facebook', 'woocommerce-admin' ), icon: 'onboarding/facebook.png', description: __( 'Grow your business by targeting the right people and driving sales with Facebook.', 'woocommerce-admin' ), }, { slug: 'mailchimp-for-woocommerce', title: __( 'Contact customers with Mailchimp', 'woocommerce-admin' ), icon: 'onboarding/mailchimp.png', description: __( 'Send targeted campaigns, recover abandoned carts and much more with Mailchimp.', 'woocommerce-admin' ), }, ]; return ({ benefit.description }