| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
|
| 3 |
const { themeSlug } = window.extSharedData; |
| 4 |
const { launchCompleted } = window.extAssistData; |
| 5 |
|
| 6 |
export default { |
| 7 |
slug: 'logo', |
| 8 |
title: __('Upload a logo', 'extendify-local'), |
| 9 |
description: __( |
| 10 |
'Ensure your website is on-brand by adding your logo.', |
| 11 |
'extendify-local', |
| 12 |
), |
| 13 |
buttonLabels: { |
| 14 |
completed: __('Replace', 'extendify-local'), |
| 15 |
notCompleted: __('Upload', 'extendify-local'), |
| 16 |
}, |
| 17 |
type: 'modal', |
| 18 |
dependencies: { plugins: [] }, |
| 19 |
show: () => { |
| 20 |
if (themeSlug === 'extendable') return true; |
| 21 |
if (launchCompleted) return true; |
| 22 |
return false; |
| 23 |
}, |
| 24 |
backgroundImage: |
| 25 |
'https://images.extendify-cdn.com/assist-tasks/upload-logo.webp', |
| 26 |
}; |
| 27 |
|