import React, { useMemo, useRef, useEffect } from 'react'; import { __ } from '@wordpress/i18n'; import { useWizardStore } from '@/store/reports/useWizardStore'; import { useTheme } from '@/hooks/useTheme'; import { AdminWysiwygField } from '@/components/Fields/Wysiwyg/WysiwygField'; import WysiwygPreview from '@/components/Common/WysiwygPreview'; import { BlockComponentProps } from '@/store/reports/types'; import useSettingsData from '@/hooks/useSettingsData'; import { useAttachmentUrl } from '@/hooks/useAttachmentUrl'; const FOOTER_BLOCK_SETTING = { id: 'email_footer' }; const getDefaultFooterHtml = () => `
${ __( 'Write a short introduction about the statistics and what you have accomplished for your client this week or month.', 'burst-statistics' ) }
${ __( 'If you have questions, please send us an email or give us a call!', 'burst-statistics' ) }
${ __( 'Your Name', 'burst-statistics' ) }
${ __( 'Your Job Title', 'burst-statistics' ) }
${ __( 'Email', 'burst-statistics' ) }
${ __( 'info@agency.com', 'burst-statistics' ) }
${ __( 'Phone', 'burst-statistics' ) }
${ __( '123-456-7890', 'burst-statistics' ) }