/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { Button, TabbableContainer, Modal } from '@wordpress/components';
import { useState } from '@wordpress/element';
import { useDispatch, useSelect } from '@wordpress/data';
import { createBlock, BlockInstance } from '@wordpress/blocks';
import { store as noticesStore } from '@wordpress/notices';
import { store as coreStore } from '@wordpress/core-data';
import { store as blockEditorStore } from '@wordpress/block-editor';
import { recordEvent } from '@woocommerce/tracks';
import { findBlock } from '@woocommerce/utils';
/**
* Internal dependencies
*/
import { useCombinedIncompatibilityNotice } from '../incompatible-extension-notice/use-combined-incompatibility-notice';
import { ModalContent } from './modal-content';
import './editor.scss';
interface SwitchToClassicShortcodeButtonProps {
block: 'woocommerce/cart' | 'woocommerce/checkout';
clientId: string;
type: 'incompatible' | 'generic';
}
export function SwitchToClassicShortcodeButton( {
block,
clientId,
type,
}: SwitchToClassicShortcodeButtonProps ): JSX.Element {
const { createInfoNotice } = useDispatch( noticesStore );
const { replaceBlock, selectBlock } = useDispatch( blockEditorStore );
const [ isOpen, setOpen ] = useState( false );
const openModal = () => setOpen( true );
const closeModal = () => setOpen( false );
const { undo } = useDispatch( coreStore );
// Skipping the first two values in the array.
const [ , , incompatibleExtensions, incompatibleExtensionsCount ] =
useCombinedIncompatibilityNotice( block );
const isCart = block === 'woocommerce/cart';
const switchButtonLabel = isCart
? __( 'Switch to classic cart', 'woocommerce' )
: __( 'Switch to classic checkout', 'woocommerce' );
const snackbarLabel = isCart
? __( 'Switched to classic cart.', 'woocommerce' )
: __( 'Switched to classic checkout.', 'woocommerce' );
const notice =
type === 'incompatible' ? 'incompatible_notice' : 'generic_notice';
const shortcode = isCart ? 'cart' : 'checkout';
const eventValue = {
shortcode,
notice,
incompatible_extensions_count: incompatibleExtensionsCount,
incompatible_extensions_names: JSON.stringify( incompatibleExtensions ),
};
const { getBlocks } = useSelect( ( select ) => {
return {
getBlocks: select( blockEditorStore ).getBlocks,
};
}, [] );
const selectClassicShortcodeBlock = () => {
const classicShortcodeBlock = findBlock( {
blocks: getBlocks(),
findCondition: ( foundBlock: BlockInstance ) =>
foundBlock.name === 'woocommerce/classic-shortcode',
} );
if ( classicShortcodeBlock ) {
selectBlock( classicShortcodeBlock.clientId );
}
};
const handleSwitchToClassicShortcodeClick = () => {
recordEvent( 'switch_to_classic_shortcode_click', eventValue );
openModal();
};
const handleUndoClick = () => {
undo();
recordEvent( 'switch_to_classic_shortcode_undo', eventValue );
};
const handleSwitchClick = () => {
replaceBlock(
clientId,
createBlock( 'woocommerce/classic-shortcode', {
shortcode,
} )
);
recordEvent( 'switch_to_classic_shortcode_confirm', eventValue );
selectClassicShortcodeBlock();
createInfoNotice( snackbarLabel, {
actions: [
{
label: __( 'Undo', 'woocommerce' ),
onClick: handleUndoClick,
},
],
type: 'snackbar',
} );
closeModal();
};
const handleCancelClick = () => {
recordEvent( 'switch_to_classic_shortcode_cancel', eventValue );
closeModal();
};
return (
<>
{ isOpen && (
{ ' ' }
) }
>
);
}