/** @format */ /** * External dependencies */ import { __ } from '@wordpress/i18n'; import { FormToggle } from '@wordpress/components'; import { Button, CheckboxControl } from 'newspack-components'; import { Component, Fragment } from '@wordpress/element'; import { compose } from '@wordpress/compose'; import interpolateComponents from 'interpolate-components'; import { withDispatch } from '@wordpress/data'; /** * Internal depdencies */ import { Card, H, Link } from '@woocommerce/components'; import SecurityIcon from './images/security'; import SalesTaxIcon from './images/local_atm'; import SpeedIcon from './images/flash_on'; import MobileAppIcon from './images/phone_android'; import './style.scss'; import withSelect from 'wc-api/with-select'; const benefits = [ { title: __( 'Security', 'woocommerce-admin' ), icon: , description: __( 'Jetpack automatically blocks brute force attacks to protect your store from unauthorized access.', 'woocommerce-admin' ), }, { title: __( 'Sales Tax', 'woocommerce-admin' ), icon: , description: __( 'With WooCommerce Services we ensure that the correct rate of tax is charged on all of your orders.', 'woocommerce-admin' ), }, { title: __( 'Speed', 'woocommerce-admin' ), icon: , description: __( 'Cache your images and static files on our own powerful global network of servers and speed up your site.', 'woocommerce-admin' ), }, { title: __( 'Mobile App', 'woocommerce-admin' ), icon: , description: __( 'Your store in your pocket. Manage orders, receive sales notifications, and more. Only with a Jetpack connection.', 'woocommerce-admin' ), }, ]; class Start extends Component { constructor() { super( ...arguments ); this.state = { allowTracking: true, }; this.onTrackingChange = this.onTrackingChange.bind( this ); this.startWizard = this.startWizard.bind( this ); this.skipWizard = this.skipWizard.bind( this ); } async updateTracking() { const { updateSettings } = this.props; const allowTracking = this.state.allowTracking ? 'yes' : 'no'; await updateSettings( { advanced: { woocommerce_allow_tracking: allowTracking } } ); } async skipWizard() { const { addNotice, isProfileItemsError, updateProfileItems, isSettingsError } = this.props; await updateProfileItems( { skipped: true } ); await this.updateTracking(); if ( isProfileItemsError || isSettingsError ) { addNotice( { status: 'error', message: __( 'There was a problem updating your preferences.', 'woocommerce-admin' ), } ); } } async startWizard() { const { addNotice, isSettingsError } = this.props; await this.updateTracking(); if ( ! isSettingsError ) { this.props.goToNextStep(); } else { addNotice( { status: 'error', message: __( 'There was a problem updating your preferences.', 'woocommerce-admin' ), } ); } } onTrackingChange() { this.setState( { allowTracking: ! this.state.allowTracking, } ); } renderBenefit( benefit ) { const { description, icon, title } = benefit; return (
{ icon }
{ title }

{ description }

); } render() { const { allowTracking } = this.state; const trackingLabel = interpolateComponents( { mixedString: __( 'Help improve WooCommerce with {{link}}usage tracking{{/link}}', 'woocommerce-admin' ), components: { link: ( ), }, } ); return ( { __( 'Start setting up your WooCommerce store', 'woocommerce-admin' ) }

{ interpolateComponents( { mixedString: __( 'Simplify and enhance the setup of your store with features and benefits offered by ' + '{{strong}}Jetpack & WooCommerce Services{{/strong}}.', 'woocommerce-admin' ), components: { strong: , }, } ) }

{ benefits.map( benefit => this.renderBenefit( benefit ) ) }

{ __( 'Proceed without Jetpack or WooCommerce Services', 'woocommerce-admin' ) }

); } } export default compose( withSelect( select => { const { getProfileItemsError, getSettings, getSettingsError, isGetSettingsRequesting } = select( 'wc-api' ); const isSettingsError = Boolean( getSettingsError( 'advanced' ) ); const isSettingsRequesting = isGetSettingsRequesting( 'advanced' ); const isProfileItemsError = Boolean( getProfileItemsError() ); return { getSettings, isSettingsError, isProfileItemsError, isSettingsRequesting }; } ), withDispatch( dispatch => { const { addNotice, updateProfileItems, updateSettings } = dispatch( 'wc-api' ); return { addNotice, updateProfileItems, updateSettings, }; } ) )( Start );