/** @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'; import ThemeUploader from './uploader'; class Theme extends Component { constructor() { super( ...arguments ); this.state = { activeTab: 'all', uploadedThemes: [], }; this.handleUploadComplete = this.handleUploadComplete.bind( this ); this.onChoose = this.onChoose.bind( this ); this.onSelectTab = this.onSelectTab.bind( this ); this.openDemo = this.openDemo.bind( this ); } async onChoose( theme ) { const { createNotice, 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 { createNotice( 'error', __( '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 { activeTab, uploadedThemes } = this.state; const { themes } = wcSettings.onboarding; themes.concat( uploadedThemes ); const allThemes = [ ...themes, ...uploadedThemes ]; switch ( activeTab ) { case 'paid': return allThemes.filter( theme => this.getPriceValue( theme.price ) > 0 ); case 'free': return allThemes.filter( theme => this.getPriceValue( theme.price ) <= 0 ); case 'all': default: return allThemes; } } handleUploadComplete( upload ) { if ( 'success' === upload.status && upload.theme_data ) { this.setState( { uploadedThemes: [ ...this.state.uploadedThemes, upload.theme_data ], } ); } } 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 { updateProfileItems } = dispatch( 'wc-api' ); const { createNotice } = dispatch( 'core/notices' ); return { createNotice, updateProfileItems, }; } ) )( Theme );