The RichTextWithLimit component is a special version of RichText that allows for specifying a character limit.
If the limit is reached, further input gets rejected.
For a minimum working setup, all you need to do is specify a character limit for the RichTextWithLimit component, and supply any props you would normally do for RichText.
import { RichTextWithLimit } from '@humanmade/block-editor-components';
function BlockEdit( props ) {
const { attributes, setAttributes } = props;
const { deck } = attributes;
return (
<RichTextWithLimit
limit={ 120 }
value={ deck }
onChange={ ( deck ) => setAttributes( { deck } ) }
/>
);
}Additionally, you can pass anything as props that the nested RichText component accepts.
import { RichTextWithLimit } from '@humanmade/block-editor-components';
function BlockEdit( props ) {
const { attributes, setAttributes } = props;
const { deck } = attributes;
return (
<RichTextWithLimit
allowedFormats={ [] }
className="deck"
limit={ 120 }
placeholder="Enter deck..."
value={ deck }
onChange={ ( deck ) => setAttributes( { deck } ) }
/>
);
}Please note that the RichTextWithLimit component does not come with styles for valid or invalid state.
Instead, the nested RichText component is being passed the custom limit-text class.
Additionally, if in an invalid state (i.e., the user tried to enter text beyond the specified limit), the component also has the invalid class.
If you wanted to visually indicate the user reaching the specified limit, you could do this like so:
.limit-text.invalid {
outline: 1px solid red;
}Please note that this would also target any invalid PlainTextWithLimit components.
If you only want to target rich text inputs, use .rich-text.limit-text.invalid instead.
The RichTextWithLimit component does not have any custom props other than limit, but you can pass anything that is supported by the nested RichText component.
The maximum number of characters allowed.
Passing 0 will disable the character restriction, which only really makes sense on a dynamic basis.
| Type | Required | Default |
|---|---|---|
number |
yes | 0 |
The RichTextWithLimit component requires the following dependencies, which are expected to be available:
@wordpress/block-editor@wordpress/dom