67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { renderFrontend } from '@woocommerce/base-utils';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import MiniCartBlock from './block';
|
|
import './style.scss';
|
|
|
|
const renderMiniCartFrontend = () => {
|
|
// Check if button is focused. In that case, we want to refocus it after we
|
|
// replace it with the React equivalent.
|
|
let focusedMiniCartBlock: HTMLElement | null = null;
|
|
/* eslint-disable @wordpress/no-global-active-element */
|
|
if (
|
|
document.activeElement &&
|
|
document.activeElement.classList.contains(
|
|
'wc-block-mini-cart__button'
|
|
) &&
|
|
document.activeElement.parentNode instanceof HTMLElement
|
|
) {
|
|
focusedMiniCartBlock = document.activeElement.parentNode;
|
|
}
|
|
/* eslint-enable @wordpress/no-global-active-element */
|
|
|
|
renderFrontend( {
|
|
selector: '.wc-block-mini-cart',
|
|
Block: MiniCartBlock,
|
|
getProps: ( el ) => {
|
|
let colorClassNames = '';
|
|
const button = el.querySelector( '.wc-block-mini-cart__button' );
|
|
if ( button !== null ) {
|
|
colorClassNames = button.classList
|
|
.toString()
|
|
.replace( 'wc-block-mini-cart__button', '' );
|
|
}
|
|
return {
|
|
isDataOutdated: el.dataset.isDataOutdated,
|
|
isInitiallyOpen: el.dataset.isInitiallyOpen === 'true',
|
|
colorClassNames,
|
|
style: el.dataset.style ? JSON.parse( el.dataset.style ) : {},
|
|
addToCartBehaviour: el.dataset.addToCartBehaviour || 'none',
|
|
contents:
|
|
el.querySelector( '.wc-block-mini-cart__template-part' )
|
|
?.innerHTML ?? '',
|
|
};
|
|
},
|
|
} );
|
|
|
|
// Refocus previously focused button if drawer is not open.
|
|
if (
|
|
focusedMiniCartBlock instanceof HTMLElement &&
|
|
! focusedMiniCartBlock.dataset.isInitiallyOpen
|
|
) {
|
|
const innerButton = focusedMiniCartBlock.querySelector(
|
|
'.wc-block-mini-cart__button'
|
|
);
|
|
if ( innerButton instanceof HTMLElement ) {
|
|
innerButton.focus();
|
|
}
|
|
}
|
|
};
|
|
|
|
renderMiniCartFrontend();
|