import React from 'react'; import { __ } from '@wordpress/i18n'; import { Suspense } from '@wordpress/element'; import { Spinner } from '@wordpress/components'; import { InlineSelect } from '@neve-wp/components'; import { mapSimpleOptions, isRenderDebugOn } from '../../common/utils'; import DebugRender from '../shared/DebugRender'; /** * Type for LayoutSelect */ type LayoutSelectArgs = { selectedValue: string; onChange: ( nextValue: string ) => void; layouts: Record< string, string >; }; /** * LayoutSelect Component * * @param {LayoutSelectArgs} args * @class */ export const LayoutSelect = React.memo( ( { selectedValue, onChange, layouts }: LayoutSelectArgs ) => { const layoutOptions = mapSimpleOptions( layouts ); return ( }>
{ isRenderDebugOn && } { 'global' === selectedValue && ( { __( 'The Global option has been deprecated. Please choose another option!', 'neve-pro-addon' ) } ) }
); } );