🛠 Toolbar
The editor provides a total of 16 toolbar items, including bold, italic, and strike. Unless otherwise specified, the default toolbar option is shown below.
As you can see in the example code, the toolbar option in the editor is defined in 2D array format. First, each toolbar group is defined as an array, and the toolbar items within the group are designated as items of the array. Each item is rendered in a group in the order in which it is defined, and the toolbar group is rendered separated by the |
symbol.
If you want to change the configuration of the default toolbar, you can change it by setting the toolbarItems
option.
const editor = new Editor({
el: document.querySelector('#editor'),
toolbarItems: [
['heading', 'bold'],
['ul', 'ol', 'task'],
['code', 'codeblock'],
],
});
The above example code is executed as shown below.
The example seen above is actually just a combination of the basic toolbar items. Then what should user do if they want to create and add a toolbar button? In this case, two main types of options can be customized.
First, there is a way to customize the toolbar button UI provided by the editor. This method is that overriding only the icon, tooltip, or popup operation of the button embedded in the editor. This option consists of the following interfaces:
When you click the button, you might want to show the popup. In this case, you can use the popup
option that you saw above. The interface of the popup
option is shown below.
Name | Type | Description |
---|---|---|
body |
HTMLElement | Defines the popup DOM node to be rendered. |
className |
string | Optional value, defines the class to be applied to the popup. |
style |
Object | Optional value, defines the style to be applied to the popup. |
The popup node is automatically diplayed on the screen when clicked on the toolbar, and disappears automatically when clicked on another area.
Let’s take a look at the color picker plugin code of the editor.
const container = document.createElement('div');
// ...
const button = createApplyButton(i18n.get('OK'));
// ...
eventEmitter.emit('command', 'color', { selectedColor });
eventEmitter.emit('closePopup');
});
container.appendChild(button);
const colorPickerToolber = {
name: 'color',
tooltip: 'Text color',
className: 'some class',
popup: {
className: 'some class',
body: container,
style: { width: 'auto' },
},
};
In the example code, the popup element is in a variable container
. This element has a button element, and when clicked, it executes the color
command and closes the itself. The popup that user defined can be communicated with editor using eventEmitter
. In order to execute the command, you can trigger command
event, and if you want to close the popup, you can trigger closePopup
event.
The defined color picker toolbar item works well with popup as shown below.
If you want to create a toolbar item without using the default button UI as described above, you need to configure the el
option as shown below.
If you run the example code above, it will work as follows.
In the editor, you can activate which node is based on the current cursor’s position by changing the style of the toolbar element. For example, if the cursor is located on a strong
node that displays bold text, an element of the bold
toolbar item is activated as follows.
If you want to change the state of a customized toolbar element like the example above, you need to configure the state
option.
const editor = new Editor({
el: document.querySelector('#editor'),
toolbarItems: [
[{
tooltip: 'myItem',
command: 'bold',
text: '@',
className: 'toastui-editor-toolbar-icons',
style: { backgroundImage: 'none', color: 'red' },
// If it is located on the `strong` node, the `active` CSS class is added to this toolbar element.
state: 'strong',
}]
],
// ...
});
If the toolbar button is activated according to state
, the active
CSS class will be added and you can specify the style that you want using this class.
The state of the toolbar element can only be changed by using the state value below.
heading
: Headingstrong
: Boldemph
: Italicstrike
: StrikethematicBreak
: Horizontal LineblockQuote
: QuotesbulletList
: Bullet ListorderedList
: Ordered ListtaskList
: Task Listtable
: TablecodeBlock
: Code Block
If a toolbar element is created with the el
option without using the default button UI, the state can be changed by configuring the onUpdated
option. Because there is a limit to directly manipulating toolbar elements that are customized, it is going to provide the onUpdated
callback options.
You can see the example here