54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import classnames from 'classnames';
|
|
import { withInstanceId } from '@woocommerce/base-hocs/with-instance-id';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import RadioControlOption from './option';
|
|
import './editor.scss';
|
|
import './style.scss';
|
|
|
|
const RadioControl = ( {
|
|
className,
|
|
instanceId,
|
|
id,
|
|
selected,
|
|
onChange,
|
|
options = [],
|
|
} ) => {
|
|
const radioControlId = id || instanceId;
|
|
|
|
return (
|
|
options.length && (
|
|
<div
|
|
className={ classnames(
|
|
'wc-block-components-radio-control',
|
|
className
|
|
) }
|
|
>
|
|
{ options.map( ( option ) => (
|
|
<RadioControlOption
|
|
key={ option.value }
|
|
name={ `radio-control-${ radioControlId }` }
|
|
checked={ option.value === selected }
|
|
option={ option }
|
|
onChange={ ( value ) => {
|
|
onChange( value );
|
|
if ( typeof option.onChange === 'function' ) {
|
|
option.onChange( value );
|
|
}
|
|
} }
|
|
/>
|
|
) ) }
|
|
</div>
|
|
)
|
|
);
|
|
};
|
|
|
|
export default withInstanceId( RadioControl );
|
|
export { RadioControlOption };
|
|
export { default as RadioControlOptionLayout } from './option-layout';
|