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
import { FormTokenField } from '@wordpress/components';
Props
| Name | Type | Default | Required | Description |
|---|---|---|---|---|
label | string | |||
suggestions | string[] | An array of strings to present to the user as suggested tokens. | ||
maxSuggestions | number | The maximum number of suggestions to display at a time. @default 100 | ||
value | ( string | TokenItem )[] | 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 | ( token: string ) => string | Function to call to transform tokens for display. (In the editor, this is needed to decode HTML entities embedded in tags
| ||
saveTransform | ( token: string ) => string | 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.) @default ( token: string ) => token.trim() | ||
onChange | ( tokens: ( string | TokenItem )[] ) => void | Function to call when the tokens have changed. An array of new tokens is passed to the callback. | ||
onInputChange | ( input: string ) => void | Function to call when the users types in the input field. It can be used to trigger autocomplete requests. | ||
onFocus | ( event: FocusEvent ) => void | Function to call when the TokenField has been focused on. The event is passed to the callback. Useful for analytics. | ||
isBorderless | boolean | When true, renders tokens as without a background. | ||
maxLength | number | If passed, | ||
disabled | boolean | When true, tokens are not able to be added or removed. | ||
placeholder | string | If passed, the | ||
tokenizeOnSpace | boolean | If true, will add a token when | ||
messages | {
/**
* The user added a new token.
*/
added: string;
/**
* The user removed an existing token.
*/
removed: string;
/**
* The user focused the button to remove the token.
*/
remove: string;
/**
* The user tried to add a token that didn't pass the validation.
*/
__experimentalInvalid: string;
} | Allows customizing the messages presented by screen readers in different occasions:
| ||
__experimentalExpandOnFocus | boolean | If true, the suggestions list will be always expanded when the input field has the focus. | ||
__experimentalValidateInput | ( token: string ) => boolean | If passed, all introduced values will be validated before being added as tokens. @default () => true | ||
__next40pxDefaultSize | boolean | Start opting into the larger default height that will become the default size in a future version. @default false | ||
__experimentalAutoSelectFirstMatch | boolean | If true, the select the first matching suggestion when the user presses the Enter key (or space when tokenizeOnSpace is true). @default false | ||
__experimentalRenderItem | ( args: { item: string } ) => ReactNode | Custom renderer for suggestions. | ||
tokenizeOnBlur | boolean | If true, add any incompleteTokenValue as a new token when the field loses focus. @default false | ||
help | ReactNode | 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. |
Examples
Default
const Default = () => {
const [ selectedContinents, setSelectedContinents ] = useState<
ComponentProps< typeof FormTokenField >[ 'value' ]
>( [] );
return (
<FormTokenField
__next40pxDefaultSize
label="Type a continent"
suggestions={continents}
value={ selectedContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) } />
);
};
Async
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
__next40pxDefaultSize
label="Type a continent"
value={ selectedContinents }
suggestions={ availableContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) }
onInputChange={ searchContinents } />
);
};
Dropdown Selector
const DropdownSelector = () => {
const [ selectedContinents, setSelectedContinents ] = useState<
ComponentProps< typeof FormTokenField >[ 'value' ]
>( [] );
return (
<FormTokenField
__next40pxDefaultSize
__experimentalExpandOnFocus
__experimentalAutoSelectFirstMatch
value={ selectedContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) } />
);
};
With Custom Rendered Items
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
__next40pxDefaultSize
displayTransform={( token ) => `📍 ${ token }`}
__experimentalRenderItem={( { item } ) => (
<div>{ `${ item } — a nice place to visit` }</div>
)}
__experimentalExpandOnFocus
value={ selectedContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) } />
);
};
Validate New Tokens
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
__next40pxDefaultSize
__experimentalValidateInput={( input: string ) =>
continents.includes( input )}
__experimentalExpandOnFocus
value={ selectedContinents }
onChange={ ( tokens ) => setSelectedContinents( tokens ) } />
);
};