woocommerce/plugins/woocommerce-admin/client/dashboard/task-list/index.js

161 lines
4.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** @format */
/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { Component, Fragment } from '@wordpress/element';
import { filter, noop } from 'lodash';
import { compose } from '@wordpress/compose';
/**
* WooCommerce dependencies
*/
import { Card, List } from '@woocommerce/components';
import { updateQueryString } from '@woocommerce/navigation';
/**
* Internal depdencies
*/
import './style.scss';
import Connect from './tasks/connect';
import Products from './tasks/products';
import withSelect from 'wc-api/with-select';
class TaskDashboard extends Component {
componentDidMount() {
document.body.classList.add( 'woocommerce-task-dashboard__body' );
}
componentWillUnmount() {
document.body.classList.remove( 'woocommerce-task-dashboard__body' );
}
getTasks() {
const { tasks } = wcSettings.onboarding;
const { profileItems, query } = this.props;
return [
{
key: 'connect',
title: __( 'Connect your store to WooCommerce.com', 'woocommerce-admin' ),
description: __(
'Install and manage your extensions directly from your Dashboard',
'wooocommerce-admin'
),
before: <i className="material-icons-outlined">extension</i>,
after: <i className="material-icons-outlined">chevron_right</i>,
onClick: () => updateQueryString( { task: 'connect' } ),
container: <Connect query={ query } />,
visible: profileItems.items_purchased && ! profileItems.wccom_connected,
},
{
key: 'products',
title: __( 'Add your first product', 'woocommerce-admin' ),
description: __(
'Add products manually, import from a sheet or migrate from another platform',
'wooocommerce-admin'
),
before: tasks.products ? (
<i className="material-icons-outlined">check_circle</i>
) : (
<i className="material-icons-outlined">add_box</i>
),
after: <i className="material-icons-outlined">chevron_right</i>,
onClick: () => updateQueryString( { task: 'products' } ),
container: <Products />,
className: tasks.products ? 'is-complete' : null,
visible: true,
},
{
key: 'personalize-store',
title: __( 'Personalize your store', 'woocommerce-admin' ),
description: __( 'Create a custom homepage and upload your logo', 'wooocommerce-admin' ),
before: <i className="material-icons-outlined">palette</i>,
after: <i className="material-icons-outlined">chevron_right</i>,
onClick: noop,
visible: true,
},
{
key: 'shipping',
title: __( 'Set up shipping', 'woocommerce-admin' ),
description: __(
'Configure some basic shipping rates to get started',
'wooocommerce-admin'
),
before: <i className="material-icons-outlined">local_shipping</i>,
after: <i className="material-icons-outlined">chevron_right</i>,
onClick: noop,
visible: true,
},
{
key: 'tax',
title: __( 'Set up tax', 'woocommerce-admin' ),
description: __(
'Choose how to configure tax rates - manually or automatically',
'wooocommerce-admin'
),
before: <i className="material-icons-outlined">account_balance</i>,
after: <i className="material-icons-outlined">chevron_right</i>,
onClick: noop,
visible: true,
},
{
key: 'payments',
title: __( 'Set up payments', 'woocommerce-admin' ),
description: __(
'Select which payment providers youd like to use and configure them',
'wooocommerce-admin'
),
before: <i className="material-icons-outlined">payment</i>,
after: <i className="material-icons-outlined">chevron_right</i>,
onClick: noop,
visible: true,
},
];
}
getCurrentTask() {
const { task } = this.props.query;
const currentTask = this.getTasks().find( s => s.key === task );
if ( ! currentTask ) {
return null;
}
return currentTask;
}
render() {
const currentTask = this.getCurrentTask();
const tasks = filter( this.getTasks(), task => task.visible );
return (
<Fragment>
<div className="woocommerce-task-dashboard__container">
{ currentTask ? (
currentTask.container
) : (
<Card
title={ __( 'Set up your store and start selling', 'woocommerce-admin' ) }
description={ __(
'Below youll find a list of the most important steps to get your store up and running.',
'woocommerce-admin'
) }
>
<List items={ tasks } />
</Card>
) }
</div>
</Fragment>
);
}
}
export default compose(
withSelect( select => {
const { getProfileItems } = select( 'wc-api' );
const profileItems = getProfileItems();
return { profileItems };
} )
)( TaskDashboard );