/** @format */ /** * External dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { Button } from 'newspack-components'; import { Component, Fragment } from '@wordpress/element'; import { compose } from '@wordpress/compose'; import { decodeEntities } from '@wordpress/html-entities'; import Gridicon from 'gridicons'; import { TabPanel, Tooltip } from '@wordpress/components'; import { withDispatch } from '@wordpress/data'; /** * WooCommerce dependencies */ import { Card, H } from '@woocommerce/components'; /** * Internal depdencies */ import withSelect from 'wc-api/with-select'; import './style.scss'; import { recordEvent } from 'lib/tracks'; class Theme extends Component { constructor() { super( ...arguments ); this.state = { activeTab: 'all', }; this.onChoose = this.onChoose.bind( this ); this.onSelectTab = this.onSelectTab.bind( this ); this.openDemo = this.openDemo.bind( this ); } async onChoose( theme ) { const { addNotice, goToNextStep, isError, updateProfileItems } = this.props; recordEvent( 'storeprofiler_store_theme_choose', { theme } ); await updateProfileItems( { theme } ); if ( ! isError ) { // @todo This should send profile information to woocommerce.com. goToNextStep(); } else { addNotice( { status: 'error', message: __( 'There was a problem selecting your store theme.', 'woocommerce-admin' ), } ); } } openDemo( theme ) { // @todo This should open a theme demo preview. recordEvent( 'storeprofiler_store_theme_live_demo', { theme } ); } renderTheme( theme ) { const { demo_url, has_woocommerce_support, image, slug, title } = theme; return ( { image && ( { ) }
{ title } { ! has_woocommerce_support && ( ) }

{ this.getThemeStatus( theme ) }

{ demo_url && ( ) }
); } getThemeStatus( theme ) { const { is_installed, price, slug } = theme; const { activeTheme } = wcSettings.onboarding; if ( activeTheme === slug ) { return __( 'Currently active theme', 'woocommerce-admin' ); } if ( is_installed ) { return __( 'Installed', 'woocommerce-admin' ); } else if ( this.getPriceValue( price ) <= 0 ) { return __( 'Free', 'woocommerce-admin' ); } return sprintf( __( '%s per year', 'woocommerce-admin' ), decodeEntities( price ) ); } onSelectTab( tab ) { recordEvent( 'storeprofiler_store_theme_navigate', { navigation: tab } ); this.setState( { activeTab: tab } ); } getPriceValue( string ) { return Number( decodeEntities( string ).replace( /[^0-9.-]+/g, '' ) ); } getThemes() { const { themes } = wcSettings.onboarding; const { activeTab } = this.state; switch ( activeTab ) { case 'paid': return themes.filter( theme => this.getPriceValue( theme.price ) > 0 ); case 'free': return themes.filter( theme => this.getPriceValue( theme.price ) <= 0 ); case 'all': default: return themes; } } render() { const themes = this.getThemes(); return ( { __( 'Choose a theme', 'woocommerce-admin' ) } { __( 'Your theme determines how your store appears to customers', 'woocommerce-admin' ) } { () => (
{ themes && themes.map( theme => this.renderTheme( theme ) ) }
) }
); } } export default compose( withSelect( select => { const { getProfileItemsError } = select( 'wc-api' ); const isError = Boolean( getProfileItemsError() ); return { isError }; } ), withDispatch( dispatch => { const { addNotice, updateProfileItems } = dispatch( 'wc-api' ); return { addNotice, updateProfileItems, }; } ) )( Theme );