Remove code related to template themes

[MAILPOET-6335]
This commit is contained in:
Rostislav Wolny
2024-12-10 17:16:47 +01:00
committed by Aschepikov
parent 1e1bec4ce0
commit ebe7151269
7 changed files with 6 additions and 203 deletions

View File

@ -1,55 +0,0 @@
import { useCallback } from '@wordpress/element';
import { useSelect, dispatch } from '@wordpress/data';
import { store as coreStore } from '@wordpress/core-data';
import { store as editorStore } from '@wordpress/editor';
import { EmailTheme, storeName } from '../store';
export function useEmailTheme() {
const { templateTheme, templateId } = useSelect( ( select ) => {
const currentPostType = select( editorStore ).getCurrentPostType();
let templateThemeData: EmailTheme = {};
let tId = null;
let tContent = '';
// Edit email post mode
if ( currentPostType === 'mailpoet_email' ) {
const template = select( storeName ).getEditedPostTemplate();
templateThemeData = template?.mailpoet_email_theme || {};
tId = template?.id;
tContent = template?.content;
} else {
// @ts-expect-error TS2322: Type 'string' has no properties in common with type 'EmailTheme'.
templateThemeData =
select( editorStore ).getCurrentPostAttribute(
// @ts-expect-error Expected 0 arguments, but got 1.
'mailpoet_email_theme'
) || {};
}
return {
templateTheme: templateThemeData,
templateId: tId,
templateContent: tContent,
};
}, [] );
const updateTemplateTheme = useCallback(
( newTheme ) => {
if ( ! templateId ) {
return;
}
void dispatch( coreStore ).editEntityRecord(
'postType',
'wp_template',
templateId as string,
{
mailpoet_email_theme: newTheme,
}
);
},
[ templateId ]
);
return {
templateTheme,
updateTemplateTheme,
};
}