File "edit.js"
Full Path: /home/romayxjt/public_html/wp-content/plugins/orderable/inc/modules/receipt-layouts/blocks/customer-name/src/edit.js
File size: 975 bytes
MIME-type: text/x-java
Charset: utf-8
import { useBlockProps, InspectorControls } from '@wordpress/block-editor';
import { PanelBody, ToggleControl } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
export default function Edit( { attributes, setAttributes } ) {
return (
<div { ...useBlockProps() }>
<InspectorControls>
<PanelBody title={ __( 'Content', 'orderable' ) }>
<ToggleControl
label={ __( 'Show label', 'orderable' ) }
checked={ attributes.showLabel }
onChange={ ( value ) =>
setAttributes( { showLabel: value } )
}
/>
<TextControl
label={ __( 'Label', 'orderable' ) }
value={ attributes.label }
onChange={ ( value ) =>
setAttributes( { label: value } )
}
/>
</PanelBody>
</InspectorControls>
<span className="wp-block-orderable-receipt-layouts__label">
{ attributes.showLabel && attributes.label }
</span>
{ __( 'Alan Mathison Turing', 'orderable' ) }
</div>
);
}