/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { useState } from '@wordpress/element'; import { CheckboxControl } from '@woocommerce/blocks-checkout'; import { Textarea } from '@woocommerce/base-components/textarea'; /** * Internal dependencies */ import './style.scss'; interface CheckoutOrderNotesProps { disabled: boolean; onChange: ( orderNotes: string ) => void; placeholder: string; value: string; } const CheckoutOrderNotes = ( { disabled, onChange, placeholder, value, }: CheckoutOrderNotesProps ): JSX.Element => { const [ withOrderNotes, setWithOrderNotes ] = useState( false ); // Store order notes when the textarea is hidden. This allows us to recover // text entered previously by the user when the checkbox is re-enabled // while keeping the context clean if the checkbox is disabled. const [ hiddenOrderNotesText, setHiddenOrderNotesText ] = useState( '' ); return (