A FormTokenField is a field similar to the tags and categories fields in the interim editor chrome,
or the “to” field in Mail on OS X. Tokens can be entered by typing them or selecting them from a list of suggested tokens.
Up to one hundred suggestions that match what the user has typed so far will be shown from which the user can pick from (auto-complete). Tokens are separated by the “,” character. Suggestions can be selected with the up or down arrows and added with the tab or enter key.
The value property is handled in a manner similar to controlled form components.
See Forms in the React Documentation for more information.
import { FormTokenField } from '@wordpress/components';
LinksPermalink to this section
PropsPermalink to this section
| Name | Default | Description |
|---|---|---|
label | __( 'Add item' ) |
|
suggestions | [] |
An array of strings to present to the user as suggested tokens. |
maxSuggestions | 100 |
The maximum number of suggestions to display at a time. |
value | [] |
An array of strings or objects to display as tokens in the field.
If objects are present in the array, they must have a property of |
displayTransform | ( value: string ) => value |
Function to call to transform tokens for display. (In the editor, this is needed to decode HTML entities embedded in tags
|
saveTransform | ( token ) => token.trim() |
Function to call to transform tokens for saving. The default is to trim the token value. This function is also applied when matching suggestions against the current value so that matching works correctly with leading or trailing spaces. (In the editor, this is needed to remove leading and trailing spaces from tag names, like wp-admin does. Otherwise the REST API won’t save them.) |
onChange | () => {} |
Function to call when the tokens have changed. An array of new tokens is passed to the callback. |
onInputChange | () => {} |
Function to call when the users types in the input field. It can be used to trigger autocomplete requests. |
onFocus | undefined |
Function to call when the TokenField has been focused on. The event is passed to the callback. Useful for analytics. |
isBorderless | false |
When true, renders tokens as without a background. |
maxLength |
If passed, | |
disabled | false |
When true, tokens are not able to be added or removed. |
placeholder |
If passed, the | |
tokenizeOnSpace | false |
If true, will add a token when |
messages | {
added: __( 'Item added.' ),
removed: __( 'Item removed.' ),
remove: __( 'Remove item' ),
__experimentalInvalid: __( 'Invalid item' ),
} |
Allows customizing the messages presented by screen readers in different occasions:
|
__experimentalExpandOnFocus | false |
If true, the suggestions list will be always expanded when the input field has the focus. |
__experimentalValidateInput | () => true |
If passed, all introduced values will be validated before being added as tokens. |
__experimentalShowHowTo |
Use the | |
__next36pxDefaultSize | false |
Deprecated. Use |
__next40pxDefaultSize |
Start opting into the larger default height that will become the default size in a future version. | |
__experimentalAutoSelectFirstMatch | false |
If true, the select the first matching suggestion when the user presses the Enter key (or space when tokenizeOnSpace is true). |
__experimentalRenderItem |
Custom renderer for suggestions. | |
__nextHasNoMarginBottom | false |
Start opting into the new margin-free styles that will become the default in a future version. |
tokenizeOnBlur | false |
If true, add any incompleteTokenValue as a new token when the field loses focus. |
help |
Additional description for the control. Only use for meaningful description or instructions for the control. An
element containing the description will be programmatically associated to
the Defaults to a how-to message (e.g. Separate with commas or the Enter key.); pass an empty string to hide it. | |
autoCapitalize |
| |
className |
| |
autoComplete |
|
ExamplesPermalink to this section
DefaultPermalink to this section
const Default = () => {
const [ selectedContinents, setSelectedContinents ] = useState<
ComponentProps< typeof FormTokenField >[ 'value' ]
>( [] );
return (
<FormTokenField
label="Type a continent"
suggestions={continents}
value={ selectedContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) } />
);
};
AsyncPermalink to this section
const Async = () => {
const [ selectedContinents, setSelectedContinents ] = useState<
ComponentProps< typeof FormTokenField >[ 'value' ]
>( [] );
const [ availableContinents, setAvailableContinents ] = useState<
string[]
>( [] );
const searchContinents = ( input: string ) => {
const timeout = setTimeout( () => {
const available = ( suggestions || [] ).filter( ( continent ) =>
continent.toLowerCase().includes( input.toLowerCase() )
);
setAvailableContinents( available );
}, 1000 );
return () => clearTimeout( timeout );
};
return (
<FormTokenField
label="Type a continent"
value={ selectedContinents }
suggestions={ availableContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) }
onInputChange={ searchContinents } />
);
};
Dropdown SelectorPermalink to this section
const DropdownSelector = () => {
const [ selectedContinents, setSelectedContinents ] = useState<
ComponentProps< typeof FormTokenField >[ 'value' ]
>( [] );
return (
<FormTokenField
__experimentalExpandOnFocus
__experimentalAutoSelectFirstMatch
value={ selectedContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) } />
);
};
With Custom Rendered ItemsPermalink to this section
The rendered content of each token can be customized by passing a
render function to the displayTransform prop.
Similarly, each suggestion can be customized by passing a
render function to the __experimentalRenderItem prop. (This is still an
experimental feature and is subject to change.)
const WithCustomRenderedItems = () => {
const [ selectedContinents, setSelectedContinents ] = useState<
ComponentProps< typeof FormTokenField >[ 'value' ]
>( [] );
return (
<FormTokenField
displayTransform={( token ) => `📍 ${ token }`}
__experimentalRenderItem={( { item } ) => (
<div>{ `${ item } — a nice place to visit` }</div>
)}
__experimentalExpandOnFocus
value={ selectedContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) } />
);
};
Validate New TokensPermalink to this section
Only values for which the __experimentalValidateInput function returns
true will be tokenized. (This is still an experimental feature and is
subject to change.)
In this example, the user can only add tokens that are already in the list.
const ValidateNewTokens = () => {
const [ selectedContinents, setSelectedContinents ] = useState<
ComponentProps< typeof FormTokenField >[ 'value' ]
>( [] );
return (
<FormTokenField
__experimentalValidateInput={( input: string ) =>
continents.includes( input )}
__experimentalExpandOnFocus
value={ selectedContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) } />
);
};