Autocompleter
Overview
An autocompleter displays suggestions while the user is typing. Suggestions are shown when the trigger character is entered after a space or at the start of a new line (such as ' :'
). Pressing the Escape key will close the autocompleter.
How to create custom autocompleters
The method for adding a custom autocompleter is in the UI Registry part of the editor API editor.ui.registry
:
-
editor.ui.registry.addAutocompleter(name, options)
The two arguments this method take are:
-
name
— A unique name for the autocompleter. -
options
— An object containing the custom autocompleter configuration.
Options
Name | Value | Requirement | Description |
---|---|---|---|
trigger |
|
Required |
The string to trigger the autocompleter. NOTE: This feature is only available for TinyMCE 6.2 and later. |
fetch |
|
Required |
A function that is passed the current matched text pattern, the maximum number of expected results and any additional fetch options. The function should return a Promise containing matching results. |
onAction |
|
Required |
A function invoked when a fetched item is selected. |
columns |
number or |
Optional |
default: auto - The number of columns to show. If set to |
matches |
|
Optional |
default: |
maxResults |
number |
Optional |
default: 10 - The maximum number of results that should be fetched. |
minChars |
number |
Optional |
default: 1 - The minimum number of characters that must be typed before the autocompleter will trigger (excluding the trigger char). |
highlight |
array |
Optional |
When using CardMenuItem, use the highlight option to specify which CardText items to highlight the matched text pattern on. |
If two or more autocompleters use the same trigger character, then the fetched results will be merged together before being displayed. |
Usage of fetch
The fetch
function is called when the trigger char
is pressed and the matches
predicate (condition function) returns true
. The fetch
function is passed the matched text pattern and returns a Promise containing matching results, specified as either AutocompleteItems or CardMenuItems. This allows for asynchronous fetching of the items. The fetchOptions
parameter passed to the fetch
function is by default an empty object, however using the reload API, additional options can be passed to fetch a different set of results.
There are two types of items:
AutocompleteItem
This is the standard item for the autocompleter. If no type is specified, autocompleter items are assumed to be of type AutocompleteItem
.
Name | Value | Requirement | Description |
---|---|---|---|
value |
string |
optional |
Value of the item. This will be passed to the |
text |
string |
optional |
Text to display for the item. |
icon |
string |
optional |
Name of the icon to be displayed. Must be a either single unicode character or an icon from: the icon pack, a custom icon pack, or an icon added using the |
{
type: 'autocompleteitem',
value: 'John Doe',
text: 'John Doe',
icon: 'my_icon'
}
CardMenuItem
The CardMenuItem
allows customization of layout and content. This is done by constructing an array of subcomponent specifications which will determine the structure of the final item. A classical example of this would be the need to display a "user" item containing a profile picture, a user name, and a description.
Name | Value | Requirement | Description |
---|---|---|---|
items |
array |
required |
An array of CardItems |
value |
string |
optional |
Value of the item. This will be passed to the |
label |
string |
optional |
Label of the item. Will be used for accessibility purposes. |
{
type: 'cardmenuitem',
value: 'John Doe',
label: 'John Doe',
items: [ ] // array of card items
}
CardItems
CardItems
are subcomponents for the CardMenuItem
. Use these to construct your custom item and display relevant information to the user.
There are three types of card items:
CardContainer
A CardContainer
is a layout component used to apply a layout to an array of card items.
Name | Value | Requirement | Description |
---|---|---|---|
items |
array |
required |
An array of CardItems |
direction |
|
optional |
default: |
align |
|
optional |
default: |
valign |
|
optional |
default: |
{
type: 'cardcontainer',
direction: 'horizontal',
align: 'left',
valign: 'middle',
items: [ ... ]
}
CardText
CardText
is a component for displaying text.
Name | Value | Requirement | Description |
---|---|---|---|
text |
string |
required |
Text to display |
name |
string |
optional |
Identifier used to reference specific CardText items. The autocompleter will use this for the text-highlight functionality. |
classes |
array |
optional |
Array of classes to apply. Note: restrict usage to styles that won’t affect the layout, such as |
{
type: 'cardtext',
text: 'John Doe',
name: 'my_autocompleter_cardtext',
classes: ['my-cardtext-class']
}
CardImage
CardImage
is a component for displaying an image.
Name | Value | Requirement | Description |
---|---|---|---|
src |
string |
required |
Image source to use |
alt |
string |
required |
Image alt text |
classes |
array |
optional |
Array of classes to apply. Note: restrict usage to styles that won’t affect the layout, such as |
{
type: 'cardimage',
src: 'profile-picture.jpeg',
alt: 'My alt text',
classes: ['my-cardimage-class']
}
API
Name | Value | Description |
---|---|---|
hide |
|
Hides the autocompleter menu. |
reload |
|
Hides the autocompleter menu and fetches new menu items. The |
Interactive examples
The following examples show how to create a special characters autocompleters.
Example: standard Autocompleter
This example uses the standard autocompleter item and will show when user types the colon (:
) character and at least one additional character.
-
TinyMCE
-
HTML
-
JS
-
Edit on CodePen
<textarea id="autocompleter-autocompleteitem">
<p>Type <b>:</b> below and then keep typing to reduce further matches. For example, typing <b>:amp</b> should show the ampersand item in the menu. Pressing esc should close the autocomplete menu.</p>
<p></p>
</textarea>
const specialChars = [
{ text: 'exclamation mark', value: '!' },
{ text: 'at', value: '@' },
{ text: 'hash', value: '#' },
{ text: 'dollars', value: '$' },
{ text: 'percent sign', value: '%' },
{ text: 'caret', value: '^' },
{ text: 'ampersand', value: '&' },
{ text: 'asterisk', value: '*' }
];
tinymce.init({
selector: 'textarea#autocompleter-autocompleteitem',
height: 250,
setup: (editor) => {
const onAction = (autocompleteApi, rng, value) => {
editor.selection.setRng(rng);
editor.insertContent(value);
autocompleteApi.hide();
};
const getMatchedChars = (pattern) => {
return specialChars.filter((char) => char.text.indexOf(pattern) !== -1);
};
/* An autocompleter that allows you to insert special characters */
editor.ui.registry.addAutocompleter('specialchars', {
trigger: ':',
minChars: 1,
columns: 'auto',
onAction: onAction,
fetch: (pattern) => {
return new Promise((resolve) => {
const results = getMatchedChars(pattern).map((char) => ({
type: 'autocompleteitem',
value: char.value,
text: char.text,
icon: char.value
}));
resolve(results);
});
}
});
}
});
Example: using CardMenuItems
in the Autocompleter
This example uses CardMenuItems and will show when a user types a hyphen (-
) character and at least one additional character.