woocommerce/plugins/woocommerce-admin/client/customize-store/design-with-ai/components/choice/choice.tsx

72 lines
1.4 KiB
TypeScript
Raw Normal View History

CYS - Add LookAndFeel and ToneOfVoice pages (#39979) * Add ProgressBar component to @woocommerce/components * Add changelog * Remove html.wp-toolbar in fullscreen mode * Add base style * Add Tell us a bit more about your business page * Fix merge conflict issues * Send BUSINESS_INFO_DESCRIPTION_COMPLETE event when continue button is clicked * Remove duplicated style import * Add changefile(s) from automation for the following project(s): @woocommerce/components, woocommerce * Lint fix * Add 'Look and Feel' and 'Tone of voice' pages'; * Use correct classname * Minor changes * Textearea color should be gray-900 after the user enter text * guide font weight should be 500 * Fix layout shift when a choice is selected * Fix choices width for tone of voice page * Use context value for the default * Revert button margin top * Fix default selection * Add X button * Decrease the margin by 20px to accommodate the height of the close button * Add close action * Include @woocommerce/ai package * Add AI service * Use AI service * Parse JSON from in function * Fix assignLookAndTone event type * Update plugins/woocommerce-admin/client/customize-store/design-with-ai/components/choice/choice.scss Co-authored-by: Chi-Hsuan Huang <chihsuan.tw@gmail.com> * Update plugins/woocommerce-admin/client/customize-store/design-with-ai/services.ts Co-authored-by: Chi-Hsuan Huang <chihsuan.tw@gmail.com> * Log when AI API endpoint request fails * Add spinner when user clicks the continue button * streamlined unnecessary isRequesting context and forwarded close event * pnpm-lock changes from trunk * lint fixes * ai package test passWithNoTests * changelog * reset pnpm-lock to trunk * Dev: update pnpm-lock.yaml and jest preset config (#40045) * Update pnpm-lock.yaml * Update jest-preset config to fix unexpected token error --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Chi-Hsuan Huang <chihsuan.tw@gmail.com> Co-authored-by: rjchow <me@rjchow.com>
2023-09-06 06:21:09 +00:00
/**
* External dependencies
*/
import classNames from 'classnames';
/**
* Internal dependencies
*/
import './choice.scss';
type Props = {
className?: string;
selected: boolean;
title: string;
subtitle?: string;
name: string;
value: string;
onChange: ( value: string ) => void;
};
export const Choice = ( {
className,
selected,
title,
subtitle,
name,
value,
onChange,
}: Props ) => {
const changeHandler = () => {
onChange( value );
};
const inputId = 'woocommerce-' + value.replace( /_/g, '-' );
return (
<div
role="radio"
className={ classNames(
'woocommerce-cys-choice-container',
className
) }
onClick={ changeHandler }
onKeyDown={ ( e ) => {
if ( e.key === 'Enter' ) {
changeHandler();
}
} }
data-selected={ selected ? selected : null }
tabIndex={ 0 }
>
<div className="woocommerce-cys-choice">
<input
className="woocommerce-cys-choice-input"
id={ inputId }
name={ name }
type="radio"
value={ value }
checked={ !! selected }
onChange={ changeHandler }
data-selected={ selected ? selected : null }
// Stop the input from being focused when the parent div is clicked
tabIndex={ -1 }
></input>
<label htmlFor={ inputId } className="choice__title">
{ title }
</label>
{ subtitle && <p className="choice__subtitle">{ subtitle }</p> }
</div>
</div>
);
};