88 lines
2.3 KiB
TypeScript
88 lines
2.3 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { useMachine, useSelector } from '@xstate/react';
|
|
import { useEffect, useState } from '@wordpress/element';
|
|
import { Sender } from 'xstate';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { CustomizeStoreComponent } from '../types';
|
|
import { designWithAiStateMachineDefinition } from './state-machine';
|
|
import { findComponentMeta } from '~/utils/xstate/find-component';
|
|
import {
|
|
BusinessInfoDescription,
|
|
ApiCallLoader,
|
|
LookAndFeel,
|
|
ToneOfVoice,
|
|
} from './pages';
|
|
import { customizeStoreStateMachineEvents } from '..';
|
|
|
|
export type events = { type: 'THEME_SUGGESTED' };
|
|
export type DesignWithAiComponent =
|
|
| typeof BusinessInfoDescription
|
|
| typeof ApiCallLoader
|
|
| typeof LookAndFeel
|
|
| typeof ToneOfVoice;
|
|
export type DesignWithAiComponentMeta = {
|
|
component: DesignWithAiComponent;
|
|
};
|
|
|
|
export const DesignWithAiController = ( {}: {
|
|
sendEventToParent: Sender< customizeStoreStateMachineEvents >;
|
|
} ) => {
|
|
const [ state, send, service ] = useMachine(
|
|
designWithAiStateMachineDefinition,
|
|
{
|
|
devTools: process.env.NODE_ENV === 'development',
|
|
}
|
|
);
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps -- false positive due to function name match, this isn't from react std lib
|
|
const currentNodeMeta = useSelector( service, ( currentState ) =>
|
|
findComponentMeta< DesignWithAiComponentMeta >(
|
|
currentState?.meta ?? undefined
|
|
)
|
|
);
|
|
|
|
const [ CurrentComponent, setCurrentComponent ] =
|
|
useState< DesignWithAiComponent | null >( null );
|
|
useEffect( () => {
|
|
if ( currentNodeMeta?.component ) {
|
|
setCurrentComponent( () => currentNodeMeta?.component );
|
|
}
|
|
}, [ CurrentComponent, currentNodeMeta?.component ] );
|
|
|
|
const currentNodeCssLabel =
|
|
state.value instanceof Object
|
|
? Object.keys( state.value )[ 0 ]
|
|
: state.value;
|
|
|
|
return (
|
|
<>
|
|
<div
|
|
className={ `woocommerce-design-with-ai-__container woocommerce-design-with-ai-wizard__step-${ currentNodeCssLabel }` }
|
|
>
|
|
{ CurrentComponent ? (
|
|
<CurrentComponent
|
|
sendEvent={ send }
|
|
context={ state.context }
|
|
/>
|
|
) : (
|
|
<div />
|
|
) }
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
//loader should send event 'THEME_SUGGESTED' when it's done
|
|
export const DesignWithAi: CustomizeStoreComponent = ( { sendEvent } ) => {
|
|
return (
|
|
<>
|
|
<DesignWithAiController sendEventToParent={ sendEvent } />
|
|
</>
|
|
);
|
|
};
|