🛠 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.

    1. const editor = new Editor({
    2. el: document.querySelector('#editor'),
    3. toolbarItems: [
    4. ['heading', 'bold'],
    5. ['ul', 'ol', 'task'],
    6. ['code', 'codeblock'],
    7. ],
    8. });

    The above example code is executed as shown below.

    image

    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.

    1. const container = document.createElement('div');
    2. // ...
    3. const button = createApplyButton(i18n.get('OK'));
    4. // ...
    5. eventEmitter.emit('command', 'color', { selectedColor });
    6. eventEmitter.emit('closePopup');
    7. });
    8. container.appendChild(button);
    9. const colorPickerToolber = {
    10. name: 'color',
    11. tooltip: 'Text color',
    12. className: 'some class',
    13. popup: {
    14. className: 'some class',
    15. body: container,
    16. style: { width: 'auto' },
    17. },
    18. };

    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.

    image

    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.

    image

    If you want to change the state of a customized toolbar element like the example above, you need to configure the state option.

    1. const editor = new Editor({
    2. el: document.querySelector('#editor'),
    3. toolbarItems: [
    4. [{
    5. tooltip: 'myItem',
    6. command: 'bold',
    7. text: '@',
    8. className: 'toastui-editor-toolbar-icons',
    9. style: { backgroundImage: 'none', color: 'red' },
    10. // If it is located on the `strong` node, the `active` CSS class is added to this toolbar element.
    11. state: 'strong',
    12. }]
    13. ],
    14. // ...
    15. });

    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: Heading
    • strong: Bold
    • emph: Italic
    • strike: Strike
    • thematicBreak: Horizontal Line
    • blockQuote: Quotes
    • bulletList: Bullet List
    • orderedList: Ordered List
    • taskList: Task List
    • table: Table
    • codeBlock: 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