2019-10-11 12:55:35 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { __ } from '@wordpress/i18n';
|
2019-10-21 03:11:21 +00:00
|
|
|
import { applyFilters } from '@wordpress/hooks';
|
2019-10-11 12:55:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* WooCommerce dependencies
|
|
|
|
*/
|
2019-11-22 17:07:26 +00:00
|
|
|
import { getAdminLink, getSetting } from '@woocommerce/wc-admin-settings';
|
|
|
|
import { updateQueryString } from '@woocommerce/navigation';
|
2019-10-11 12:55:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import Appearance from './tasks/appearance';
|
|
|
|
import Connect from './tasks/connect';
|
2019-12-31 08:50:45 +00:00
|
|
|
import { getProductIdsForCart } from 'dashboard/utils';
|
2019-10-11 12:55:35 +00:00
|
|
|
import Products from './tasks/products';
|
|
|
|
import Shipping from './tasks/shipping';
|
|
|
|
import Tax from './tasks/tax';
|
|
|
|
import Payments from './tasks/payments';
|
|
|
|
|
2020-02-14 02:23:21 +00:00
|
|
|
export function getAllTasks( {
|
|
|
|
profileItems,
|
2020-06-10 23:49:27 +00:00
|
|
|
taskListPayments,
|
2020-02-14 02:23:21 +00:00
|
|
|
query,
|
|
|
|
toggleCartModal,
|
2020-05-25 00:26:08 +00:00
|
|
|
installedPlugins,
|
2020-02-14 02:23:21 +00:00
|
|
|
} ) {
|
2019-10-11 12:55:35 +00:00
|
|
|
const {
|
|
|
|
hasPhysicalProducts,
|
|
|
|
hasProducts,
|
2020-01-09 02:05:03 +00:00
|
|
|
isAppearanceComplete,
|
2019-10-11 12:55:35 +00:00
|
|
|
isTaxComplete,
|
|
|
|
shippingZonesCount,
|
|
|
|
} = getSetting( 'onboarding', {
|
|
|
|
hasPhysicalProducts: false,
|
|
|
|
hasProducts: false,
|
2020-01-09 02:05:03 +00:00
|
|
|
isAppearanceComplete: false,
|
2019-10-11 12:55:35 +00:00
|
|
|
isTaxComplete: false,
|
|
|
|
shippingZonesCount: 0,
|
|
|
|
} );
|
|
|
|
|
2020-05-25 00:26:08 +00:00
|
|
|
const productIds = getProductIdsForCart(
|
|
|
|
profileItems,
|
|
|
|
true,
|
|
|
|
installedPlugins
|
|
|
|
);
|
|
|
|
const remainingProductIds = getProductIdsForCart(
|
|
|
|
profileItems,
|
|
|
|
false,
|
|
|
|
installedPlugins
|
|
|
|
);
|
2019-12-31 08:50:45 +00:00
|
|
|
|
2020-06-10 23:49:27 +00:00
|
|
|
const paymentsCompleted = Boolean(
|
|
|
|
taskListPayments && taskListPayments.completed
|
2019-10-11 12:55:35 +00:00
|
|
|
);
|
2020-06-10 23:49:27 +00:00
|
|
|
const paymentsSkipped = Boolean(
|
|
|
|
taskListPayments && taskListPayments.skipped
|
2020-05-04 11:33:11 +00:00
|
|
|
);
|
2019-10-11 12:55:35 +00:00
|
|
|
|
2019-10-21 03:11:21 +00:00
|
|
|
const tasks = [
|
2020-05-27 16:08:39 +00:00
|
|
|
{
|
|
|
|
key: 'store_details',
|
|
|
|
title: __( 'Store details', 'woocommerce-admin' ),
|
|
|
|
container: null,
|
|
|
|
onClick: () => {
|
|
|
|
window.location = getAdminLink(
|
|
|
|
'admin.php?page=wc-admin&reset_profiler=1'
|
|
|
|
);
|
|
|
|
},
|
|
|
|
completed: profileItems.completed,
|
|
|
|
visible: true,
|
|
|
|
time: __( '4 minutes', 'woocommerce-admin' ),
|
|
|
|
},
|
2019-12-31 08:50:45 +00:00
|
|
|
{
|
|
|
|
key: 'purchase',
|
|
|
|
title: __( 'Purchase & install extensions', 'woocommerce-admin' ),
|
|
|
|
container: null,
|
2020-02-14 02:23:21 +00:00
|
|
|
onClick: () =>
|
|
|
|
remainingProductIds.length ? toggleCartModal() : null,
|
2019-12-31 08:50:45 +00:00
|
|
|
visible: productIds.length,
|
2020-06-15 22:38:36 +00:00
|
|
|
completed: productIds.length && ! remainingProductIds.length,
|
2020-05-27 16:08:39 +00:00
|
|
|
time: __( '2 minutes', 'woocommerce-admin' ),
|
2019-12-31 08:50:45 +00:00
|
|
|
},
|
2019-10-11 12:55:35 +00:00
|
|
|
{
|
|
|
|
key: 'connect',
|
2020-02-14 02:23:21 +00:00
|
|
|
title: __(
|
|
|
|
'Connect your store to WooCommerce.com',
|
|
|
|
'woocommerce-admin'
|
|
|
|
),
|
2019-10-11 12:55:35 +00:00
|
|
|
container: <Connect query={ query } />,
|
2020-02-14 02:23:21 +00:00
|
|
|
visible:
|
|
|
|
profileItems.items_purchased && ! profileItems.wccom_connected,
|
2019-10-11 12:55:35 +00:00
|
|
|
completed: profileItems.wccom_connected,
|
2020-05-27 16:08:39 +00:00
|
|
|
time: __( '1 minute', 'woocommerce-admin' ),
|
2019-10-11 12:55:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'products',
|
2020-05-27 16:08:39 +00:00
|
|
|
title: __( 'Add my products', 'woocommerce-admin' ),
|
2019-10-11 12:55:35 +00:00
|
|
|
container: <Products />,
|
|
|
|
completed: hasProducts,
|
|
|
|
visible: true,
|
2020-05-27 16:08:39 +00:00
|
|
|
time: __( '1 minute per product', 'woocommerce-admin' ),
|
2019-10-11 12:55:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'appearance',
|
2020-05-27 16:08:39 +00:00
|
|
|
title: __( 'Personalize my store', 'woocommerce-admin' ),
|
2019-10-11 12:55:35 +00:00
|
|
|
container: <Appearance />,
|
2020-01-09 02:05:03 +00:00
|
|
|
completed: isAppearanceComplete,
|
2019-10-11 12:55:35 +00:00
|
|
|
visible: true,
|
2020-05-27 16:08:39 +00:00
|
|
|
time: __( '2 minutes', 'woocommerce-admin' ),
|
2019-10-11 12:55:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'shipping',
|
|
|
|
title: __( 'Set up shipping', 'woocommerce-admin' ),
|
|
|
|
container: <Shipping />,
|
|
|
|
completed: shippingZonesCount > 0,
|
2019-10-17 14:39:59 +00:00
|
|
|
visible:
|
2020-02-14 02:23:21 +00:00
|
|
|
( profileItems.product_types &&
|
|
|
|
profileItems.product_types.includes( 'physical' ) ) ||
|
2019-10-17 14:39:59 +00:00
|
|
|
hasPhysicalProducts,
|
2020-05-27 16:08:39 +00:00
|
|
|
time: __( '1 minute', 'woocommerce-admin' ),
|
2019-10-11 12:55:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'tax',
|
|
|
|
title: __( 'Set up tax', 'woocommerce-admin' ),
|
|
|
|
container: <Tax />,
|
|
|
|
completed: isTaxComplete,
|
|
|
|
visible: true,
|
2020-05-27 16:08:39 +00:00
|
|
|
time: __( '1 minute', 'woocommerce-admin' ),
|
2019-10-11 12:55:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'payments',
|
|
|
|
title: __( 'Set up payments', 'woocommerce-admin' ),
|
|
|
|
container: <Payments />,
|
2020-05-04 11:33:11 +00:00
|
|
|
completed: paymentsCompleted || paymentsSkipped,
|
2019-10-29 18:03:07 +00:00
|
|
|
onClick: () => {
|
2020-05-04 11:33:11 +00:00
|
|
|
if ( paymentsCompleted || paymentsSkipped ) {
|
2020-02-14 02:23:21 +00:00
|
|
|
window.location = getAdminLink(
|
|
|
|
'admin.php?page=wc-settings&tab=checkout'
|
|
|
|
);
|
2019-10-29 18:03:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
updateQueryString( { task: 'payments' } );
|
|
|
|
},
|
2019-10-11 12:55:35 +00:00
|
|
|
visible: true,
|
2020-05-27 16:08:39 +00:00
|
|
|
time: __( '2 minutes', 'woocommerce-admin' ),
|
2019-10-11 12:55:35 +00:00
|
|
|
},
|
|
|
|
];
|
2019-10-21 03:11:21 +00:00
|
|
|
|
2020-02-14 02:23:21 +00:00
|
|
|
return applyFilters(
|
|
|
|
'woocommerce_admin_onboarding_task_list',
|
|
|
|
tasks,
|
|
|
|
query
|
|
|
|
);
|
2019-10-11 12:55:35 +00:00
|
|
|
}
|