/** * External dependencies */ import { getNewPath } from '@woocommerce/navigation'; /** * Internal dependencies */ import { attachIframeListeners, onIframeLoad } from '../utils'; const redirectToAssemblerHub = async () => { const assemblerUrl = getNewPath( {}, '/customize-store/assembler-hub', {} ); const iframe = document.createElement( 'iframe' ); iframe.classList.add( 'cys-fullscreen-iframe' ); iframe.src = assemblerUrl; const showIframe = () => { if ( iframe.style.opacity === '1' ) { // iframe is already visible return; } const loader = document.getElementsByClassName( 'woocommerce-onboarding-loader' ); if ( loader[ 0 ] ) { ( loader[ 0 ] as HTMLElement ).style.display = 'none'; } iframe.style.opacity = '1'; }; iframe.onload = () => { // Hide loading UI attachIframeListeners( iframe ); onIframeLoad( showIframe ); // Ceiling wait time set to 60 seconds setTimeout( showIframe, 60 * 1000 ); window.history?.pushState( {}, '', assemblerUrl ); }; document.body.appendChild( iframe ); }; export const actions = { redirectToAssemblerHub, };