318 lines
9.3 KiB
JavaScript
318 lines
9.3 KiB
JavaScript
/** @format */
|
||
/**
|
||
* External dependencies
|
||
*/
|
||
import { __ } from '@wordpress/i18n';
|
||
import apiFetch from '@wordpress/api-fetch';
|
||
import { Button, ImageUpload, TextControl } from 'newspack-components';
|
||
import { Component, Fragment } from '@wordpress/element';
|
||
import { compose } from '@wordpress/compose';
|
||
import { difference, filter } from 'lodash';
|
||
import { withDispatch } from '@wordpress/data';
|
||
|
||
/**
|
||
* WooCommerce dependencies
|
||
*/
|
||
import { Card, Stepper } from '@woocommerce/components';
|
||
import { getHistory, getNewPath } from '@woocommerce/navigation';
|
||
|
||
/**
|
||
* Internal dependencies
|
||
*/
|
||
import { WC_ADMIN_NAMESPACE } from 'wc-api/constants';
|
||
import withSelect from 'wc-api/with-select';
|
||
|
||
class Appearance extends Component {
|
||
constructor( props ) {
|
||
super( props );
|
||
|
||
this.stepVisibility = {
|
||
homepage: ! wcSettings.onboarding.hasHomepage,
|
||
import: ! wcSettings.onboarding.hasProducts,
|
||
};
|
||
|
||
this.state = {
|
||
isPending: false,
|
||
logo: null,
|
||
stepIndex: 0,
|
||
storeNoticeText: props.options.woocommerce_demo_store_notice || '',
|
||
};
|
||
|
||
this.completeStep = this.completeStep.bind( this );
|
||
this.createHomepage = this.createHomepage.bind( this );
|
||
this.importProducts = this.importProducts.bind( this );
|
||
this.updateLogo = this.updateLogo.bind( this );
|
||
this.updateNotice = this.updateNotice.bind( this );
|
||
}
|
||
|
||
async componentDidUpdate( prevProps ) {
|
||
const { stepIndex } = this.state;
|
||
const { createNotice, errors, hasErrors, isRequesting, options, themeMods } = this.props;
|
||
const step = this.getSteps()[ stepIndex ].key;
|
||
const isRequestSuccessful = ! isRequesting && prevProps.isRequesting && ! hasErrors;
|
||
|
||
if ( themeMods && prevProps.themeMods.custom_logo !== themeMods.custom_logo ) {
|
||
await wp.media.attachment( themeMods.custom_logo ).fetch();
|
||
const logoUrl = wp.media.attachment( themeMods.custom_logo ).get( 'url' );
|
||
/* eslint-disable react/no-did-update-set-state */
|
||
this.setState( { logo: { id: themeMods.custom_logo, url: logoUrl } } );
|
||
/* eslint-enable react/no-did-update-set-state */
|
||
}
|
||
|
||
if (
|
||
options.woocommerce_demo_store_notice &&
|
||
prevProps.options.woocommerce_demo_store_notice !== options.woocommerce_demo_store_notice
|
||
) {
|
||
/* eslint-disable react/no-did-update-set-state */
|
||
this.setState( { storeNoticeText: options.woocommerce_demo_store_notice } );
|
||
/* eslint-enable react/no-did-update-set-state */
|
||
}
|
||
|
||
if ( 'logo' === step && isRequestSuccessful ) {
|
||
createNotice( 'success', __( 'Store logo updated sucessfully.', 'woocommerce-admin' ) );
|
||
this.completeStep();
|
||
wcSettings.onboarding.customLogo = themeMods.custom_logo ? true : false;
|
||
}
|
||
|
||
if ( 'notice' === step && isRequestSuccessful ) {
|
||
createNotice( 'success', __( 'Store notice updated sucessfully.', 'woocommerce-admin' ) );
|
||
this.completeStep();
|
||
}
|
||
|
||
const newErrors = difference( errors, prevProps.errors );
|
||
newErrors.map( error => createNotice( 'error', error ) );
|
||
}
|
||
|
||
completeStep() {
|
||
const { stepIndex } = this.state;
|
||
const nextStep = this.getSteps()[ stepIndex + 1 ];
|
||
|
||
if ( nextStep ) {
|
||
this.setState( { stepIndex: stepIndex + 1 } );
|
||
} else {
|
||
getHistory().push( getNewPath( {}, '/', {} ) );
|
||
}
|
||
}
|
||
|
||
importProducts() {
|
||
const { createNotice } = this.props;
|
||
this.setState( { isPending: true } );
|
||
|
||
apiFetch( {
|
||
path: `${ WC_ADMIN_NAMESPACE }/onboarding/tasks/import_sample_products`,
|
||
method: 'POST',
|
||
} )
|
||
.then( result => {
|
||
if ( result.failed && result.failed.length ) {
|
||
createNotice(
|
||
'error',
|
||
__( 'There was an error importing some of the demo products.', 'woocommerce-admin' )
|
||
);
|
||
} else {
|
||
createNotice(
|
||
'success',
|
||
__( 'All demo products have been imported.', 'woocommerce-admin' )
|
||
);
|
||
wcSettings.onboarding.hasProducts = true;
|
||
}
|
||
|
||
this.setState( { isPending: false } );
|
||
this.completeStep();
|
||
} )
|
||
.catch( error => {
|
||
createNotice( 'error', error.message );
|
||
this.setState( { isPending: false } );
|
||
} );
|
||
}
|
||
|
||
createHomepage() {
|
||
const { createNotice } = this.props;
|
||
this.setState( { isPending: true } );
|
||
|
||
apiFetch( { path: '/wc-admin/v1/onboarding/tasks/create_homepage', method: 'POST' } )
|
||
.then( response => {
|
||
createNotice( response.status, response.message );
|
||
|
||
this.setState( { isPending: false } );
|
||
if ( response.edit_post_link ) {
|
||
window.location = `${ response.edit_post_link }&wc_onboarding_active_task=homepage`;
|
||
}
|
||
} )
|
||
.catch( error => {
|
||
createNotice( 'error', error.message );
|
||
this.setState( { isPending: false } );
|
||
} );
|
||
}
|
||
|
||
updateLogo() {
|
||
const { options, themeMods, updateOptions } = this.props;
|
||
const { logo } = this.state;
|
||
const updateThemeMods = logo ? { ...themeMods, custom_logo: logo.id } : themeMods;
|
||
|
||
updateOptions( {
|
||
[ `theme_mods_${ options.stylesheet }` ]: updateThemeMods,
|
||
} );
|
||
}
|
||
|
||
updateNotice() {
|
||
const { updateOptions } = this.props;
|
||
const { storeNoticeText } = this.state;
|
||
|
||
updateOptions( {
|
||
woocommerce_demo_store: storeNoticeText.length ? 'yes' : 'no',
|
||
woocommerce_demo_store_notice: storeNoticeText,
|
||
} );
|
||
}
|
||
|
||
getSteps() {
|
||
const { isPending, logo, storeNoticeText } = this.state;
|
||
const { isRequesting } = this.props;
|
||
|
||
const steps = [
|
||
{
|
||
key: 'import',
|
||
label: __( 'Import demo products', 'woocommerce-admin' ),
|
||
description: __(
|
||
'We’ll add some products that it will make it easier to see what your store looks like.',
|
||
'woocommerce-admin'
|
||
),
|
||
content: (
|
||
<Fragment>
|
||
<Button onClick={ this.importProducts } isBusy={ isPending } isPrimary>
|
||
{ __( 'Import products', 'woocommerce-admin' ) }
|
||
</Button>
|
||
<Button onClick={ () => this.completeStep() }>
|
||
{ __( 'Skip', 'woocommerce-admin' ) }
|
||
</Button>
|
||
</Fragment>
|
||
),
|
||
visible: this.stepVisibility.import,
|
||
},
|
||
{
|
||
key: 'homepage',
|
||
label: __( 'Create a custom homepage', 'woocommerce-admin' ),
|
||
description: __(
|
||
'Create a new homepage and customize it to suit your needs',
|
||
'woocommerce-admin'
|
||
),
|
||
content: (
|
||
<Fragment>
|
||
<Button isPrimary onClick={ this.createHomepage }>
|
||
{ __( 'Create homepage', 'woocommerce-admin' ) }
|
||
</Button>
|
||
<Button onClick={ () => this.completeStep() }>
|
||
{ __( 'Skip', 'woocommerce-admin' ) }
|
||
</Button>
|
||
</Fragment>
|
||
),
|
||
visible: this.stepVisibility.homepage,
|
||
},
|
||
{
|
||
key: 'logo',
|
||
label: __( 'Upload a logo', 'woocommerce-admin' ),
|
||
description: __( 'Ensure your store is on-brand by adding your logo', 'woocommerce-admin' ),
|
||
content: (
|
||
<Fragment>
|
||
<ImageUpload image={ logo } onChange={ image => this.setState( { logo: image } ) } />
|
||
<Button onClick={ this.updateLogo } isBusy={ isRequesting } isPrimary>
|
||
{ __( 'Proceed', 'woocommerce-admin' ) }
|
||
</Button>
|
||
<Button onClick={ () => this.completeStep() }>
|
||
{ __( 'Skip', 'woocommerce-admin' ) }
|
||
</Button>
|
||
</Fragment>
|
||
),
|
||
visible: true,
|
||
},
|
||
{
|
||
key: 'notice',
|
||
label: __( 'Set a store notice', 'woocommerce-admin' ),
|
||
description: __(
|
||
'Optionally display a prominent notice across all pages of your store',
|
||
'woocommerce-admin'
|
||
),
|
||
content: (
|
||
<Fragment>
|
||
<TextControl
|
||
label={ __( 'Store notice text', 'woocommerce-admin' ) }
|
||
placeholder={ __( 'Store notice text', 'woocommerce-admin' ) }
|
||
value={ storeNoticeText }
|
||
onChange={ value => this.setState( { storeNoticeText: value } ) }
|
||
/>
|
||
<Button onClick={ this.updateNotice } isPrimary>
|
||
{ __( 'Complete task', 'woocommerce-admin' ) }
|
||
</Button>
|
||
</Fragment>
|
||
),
|
||
visible: true,
|
||
},
|
||
];
|
||
|
||
return filter( steps, step => step.visible );
|
||
}
|
||
|
||
render() {
|
||
const { isPending, stepIndex } = this.state;
|
||
const { isRequesting, hasErrors } = this.props;
|
||
|
||
return (
|
||
<div className="woocommerce-task-appearance">
|
||
<Card className="is-narrow">
|
||
<Stepper
|
||
isPending={ ( isRequesting && ! hasErrors ) || isPending }
|
||
isVertical
|
||
currentStep={ this.getSteps()[ stepIndex ].key }
|
||
steps={ this.getSteps() }
|
||
/>
|
||
</Card>
|
||
</div>
|
||
);
|
||
}
|
||
}
|
||
|
||
export default compose(
|
||
withSelect( select => {
|
||
const { getOptions, getOptionsError, isUpdateOptionsRequesting } = select( 'wc-api' );
|
||
|
||
const options = getOptions( [
|
||
'woocommerce_demo_store',
|
||
'woocommerce_demo_store_notice',
|
||
'stylesheet',
|
||
] );
|
||
const themeModsName = `theme_mods_${ options.stylesheet }`;
|
||
const themeOptions = options.stylesheet ? getOptions( [ themeModsName ] ) : null;
|
||
const themeMods =
|
||
themeOptions && themeOptions[ themeModsName ] ? themeOptions[ themeModsName ] : {};
|
||
|
||
const errors = [];
|
||
const uploadLogoError = getOptionsError( [ themeModsName ] );
|
||
const storeNoticeError = getOptionsError( [
|
||
'woocommerce_demo_store',
|
||
'woocommerce_demo_store_notice',
|
||
] );
|
||
if ( uploadLogoError ) {
|
||
errors.push( uploadLogoError.message );
|
||
}
|
||
if ( storeNoticeError ) {
|
||
errors.push( storeNoticeError.message );
|
||
}
|
||
const hasErrors = Boolean( errors.length );
|
||
const isRequesting =
|
||
Boolean( isUpdateOptionsRequesting( [ themeModsName ] ) ) ||
|
||
Boolean(
|
||
isUpdateOptionsRequesting( [ 'woocommerce_demo_store', 'woocommerce_demo_store_notice' ] )
|
||
);
|
||
|
||
return { errors, getOptionsError, hasErrors, isRequesting, options, themeMods };
|
||
} ),
|
||
withDispatch( dispatch => {
|
||
const { createNotice } = dispatch( 'core/notices' );
|
||
const { updateOptions } = dispatch( 'wc-api' );
|
||
|
||
return {
|
||
createNotice,
|
||
updateOptions,
|
||
};
|
||
} )
|
||
)( Appearance );
|