Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
improve logic
Browse files Browse the repository at this point in the history
  • Loading branch information
gigitux committed May 8, 2023
1 parent 9964d30 commit b0bf67d
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 33 deletions.
14 changes: 3 additions & 11 deletions assets/js/blocks/classic-template/archive-product.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,18 +101,11 @@ const getButtonLabel = () =>
const onClickCallback = ( {
clientId,
attributes,
getBlocks,
blocks,
replaceBlock,
selectBlock,
}: {
clientId: string;
attributes: Record< string, unknown >;
getBlocks: () => BlockInstance[];
replaceBlock: ( clientId: string, blocks: BlockInstance[] ) => void;
selectBlock: ( clientId: string ) => void;
} ) => {
}: OnClickCallbackParameter ) => {
replaceBlock( clientId, getBlockifiedTemplate( attributes ) );
const blocks = getBlocks();

const groupBlock = blocks.find(
( block ) =>
Expand All @@ -131,12 +124,11 @@ const onClickCallback = ( {
const onClickCallbackWithTermDescription = ( {
clientId,
attributes,
getBlocks,
blocks,
replaceBlock,
selectBlock,
}: OnClickCallbackParameter ) => {
replaceBlock( clientId, getBlockifiedTemplate( attributes, true ) );
const blocks = getBlocks();

const groupBlock = blocks.find(
( block ) =>
Expand Down
73 changes: 65 additions & 8 deletions assets/js/blocks/classic-template/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* External dependencies
*/
import {
createBlock,
getBlockType,
registerBlockType,
unregisterBlockType,
Expand All @@ -20,7 +21,8 @@ import { Button, Placeholder, Popover } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
import { box, Icon } from '@wordpress/icons';
import { useDispatch, subscribe, useSelect, select } from '@wordpress/data';
import { useEffect, useState } from '@wordpress/element';
import { useEffect, useMemo, useState } from '@wordpress/element';
import { store as noticesStore } from '@wordpress/notices';

/**
* Internal dependencies
Expand Down Expand Up @@ -62,19 +64,33 @@ const conversionConfig: { [ key: string ]: BlockifiedTemplateConfig } = {
fallback: blockifiedFallbackConfig,
};

const pickBlockClientIds = ( blocks: Array< BlockInstance > ) =>
blocks.reduce< Array< string > >( ( acc, block ) => {
if ( block.name === 'core/template-part' ) {
return acc;
}

return [ ...acc, block.clientId ];
}, [] );

const Edit = ( {
clientId,
attributes,
setAttributes,
}: BlockEditProps< Attributes > ) => {
const { replaceBlock, selectBlock } = useDispatch( blockEditorStore );
const { replaceBlock, selectBlock, replaceBlocks } =
useDispatch( blockEditorStore );

const { getBlocks } = useSelect( ( sel ) => {
const { blocks } = useSelect( ( sel ) => {
return {
getBlocks: sel( blockEditorStore ).getBlocks,
blocks: sel( blockEditorStore ).getBlocks(),
};
}, [] );

const { createInfoNotice } = useDispatch( noticesStore );

const clientIds = useMemo( () => pickBlockClientIds( blocks ), [ blocks ] );

const blockProps = useBlockProps();
const templateDetails = getTemplateDetailsBySlug(
attributes.template,
Expand Down Expand Up @@ -124,15 +140,56 @@ const Edit = ( {
<div className="wp-block-woocommerce-classic-template__placeholder-migration-button-container">
<Button
isPrimary
onClick={ () =>
onClick={ () => {
onClickCallback( {
clientId,
getBlocks,
blocks,
attributes,
replaceBlock,
selectBlock,
} )
}
} );
createInfoNotice(
__(
'Template transformed into blocks!',
'woo-gutenberg-products-block'
),
{
actions: [
{
label: __(
'Undo',
'woo-gutenberg-products-block'
),
onClick: () => {
replaceBlocks(
clientIds,
createBlock(
'core/group',
{
layout: {
inherit:
true,
type: 'constrained',
},
},
[
createBlock(
'woocommerce/legacy-template',
{
template:
attributes.template,
}
),
]
)
);
},
},
],
type: 'snackbar',
}
);
} }
onMouseEnter={ () =>
setIsPopoverOpen( true )
}
Expand Down
3 changes: 1 addition & 2 deletions assets/js/blocks/classic-template/product-search-results.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,11 @@ const getDescription = ( templateTitle: string, canConvert: boolean ) => {
const onClickCallback = ( {
clientId,
attributes,
getBlocks,
blocks,
replaceBlock,
selectBlock,
}: OnClickCallbackParameter ) => {
replaceBlock( clientId, getBlockifiedTemplate( attributes ) );
const blocks = getBlocks();

const groupBlock = blocks.find(
( block ) =>
Expand Down
15 changes: 7 additions & 8 deletions assets/js/blocks/classic-template/single-product.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ import { BlockInstance, createBlock } from '@wordpress/blocks';
import { VARIATION_NAME as PRODUCT_TITLE_VARIATION_NAME } from '@woocommerce/blocks/product-query/variations/elements/product-title';
import { VARIATION_NAME as PRODUCT_SUMMARY_VARIATION_NAME } from '@woocommerce/blocks/product-query/variations/elements/product-summary';

/**
* Internal dependencies
*/
import { OnClickCallbackParameter } from './types';

const getBlockifiedTemplate = () =>
[
createBlock( 'woocommerce/breadcrumbs' ),
Expand Down Expand Up @@ -83,17 +88,11 @@ const getButtonLabel = () =>

const onClickCallback = ( {
clientId,
getBlocks,
blocks,
replaceBlock,
selectBlock,
}: {
clientId: string;
getBlocks: () => BlockInstance[];
replaceBlock: ( clientId: string, blocks: BlockInstance[] ) => void;
selectBlock: ( clientId: string ) => void;
} ) => {
}: OnClickCallbackParameter ) => {
replaceBlock( clientId, getBlockifiedTemplate() );
const blocks = getBlocks();

const groupBlock = blocks.find(
( block ) =>
Expand Down
2 changes: 1 addition & 1 deletion assets/js/blocks/classic-template/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type InheritedAttributes = {
export type OnClickCallbackParameter = {
clientId: string;
attributes: Record< string, unknown >;
getBlocks: () => BlockInstance[];
blocks: BlockInstance[];
replaceBlock: ( clientId: string, blocks: BlockInstance[] ) => void;
selectBlock: ( clientId: string ) => void;
};
Expand Down
6 changes: 3 additions & 3 deletions assets/js/templates/revert-button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ const pickBlockClientIds = ( blocks: Array< BlockInstance > ) =>
}, [] );

const RevertClassicTemplateButton = () => {
const { blocks, getEditedPostId } = useSelect( ( sel ) => {
const { blocks, editedPostId } = useSelect( ( sel ) => {
return {
blocks: sel( blockEditorStore ).getBlocks(),
getEditedPostId: sel( 'core/edit-site' ).getEditedPostId(),
editedPostId: sel( 'core/edit-site' ).getEditedPostId(),
};
}, [] );

Expand All @@ -53,7 +53,7 @@ const RevertClassicTemplateButton = () => {
rendered?: string;
row: string;
};
} >( 'postType', 'wp_template', getEditedPostId );
} >( 'postType', 'wp_template', editedPostId );

const isLegacyTemplateBlockAdded = useMemo(
() => hasLegacyTemplateBlock( blocks ),
Expand Down

0 comments on commit b0bf67d

Please sign in to comment.