| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
|
| 3 |
const { themeSlug } = window.extSharedData; |
| 4 |
const { launchCompleted } = window.extAssistData; |
| 5 |
|
| 6 |
export default { |
| 7 |
slug: 'domain-recommendation', |
| 8 |
title: __('Choose your domain', 'extendify-local'), |
| 9 |
innerTitle: __('Claim your domain', 'extendify-local'), |
| 10 |
description: __('Claim the perfect domain for your site.', 'extendify-local'), |
| 11 |
buttonLabels: { |
| 12 |
completed: __('Register this domain', 'extendify-local'), |
| 13 |
notCompleted: __('Register this domain', 'extendify-local'), |
| 14 |
}, |
| 15 |
type: 'domain-task', |
| 16 |
dependencies: { plugins: [] }, |
| 17 |
show: ({ showDomainTask }) => { |
| 18 |
// They need either extendable or launch completed |
| 19 |
if (themeSlug !== 'extendable' && !launchCompleted) return false; |
| 20 |
return showDomainTask; |
| 21 |
}, |
| 22 |
backgroundImage: |
| 23 |
'https://images.extendify-cdn.com/assist-tasks/domains-recommendations.webp', |
| 24 |
}; |
| 25 |
|