Current File : /home/kelaby89/ap.cleaning/wp-content/plugins/extendify/src/Assist/tasks/setup-woocommerce-store.js |
import { __ } from '@wordpress/i18n';
const { themeSlug } = window.extSharedData;
const { launchCompleted } = window.extAssistData;
export default {
slug: 'setup-woocommerce-store',
title: __('Set up your eCommerce store', 'extendify-local'),
description: __(
'Set up WooCommerce to start selling on your website.',
'extendify-local',
),
link: 'admin.php?page=wc-admin&path=%2Fsetup-wizard',
buttonLabels: {
notCompleted: __('Set up', 'extendify-local'),
completed: __('Revisit', 'extendify-local'),
},
type: 'internalLink',
dependencies: { goals: ['products', 'services'], plugins: ['woocommerce'] },
show: ({ plugins, goals, activePlugins, userGoals }) => {
// They need either extendable or launch completed
if (themeSlug !== 'extendable' && !launchCompleted) return false;
if (!plugins.length && !goals.length) return true;
return activePlugins
.concat(userGoals)
.some((item) => plugins.concat(goals).includes(item));
},
backgroundImage:
'https://images.extendify-cdn.com/assist-tasks/woocommerce.webp',
};