org.dominokit.domino.ui.richtext.commands.HeadingCommand Maven / Gradle / Ivy
/*
* Copyright © 2019 Dominokit
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.dominokit.domino.ui.richtext.commands;
import static org.dominokit.domino.ui.utils.Domino.*;
import elemental2.dom.HTMLElement;
import org.dominokit.domino.ui.button.Button;
import org.dominokit.domino.ui.button.DropdownButton;
import org.dominokit.domino.ui.button.group.ButtonsGroup;
import org.dominokit.domino.ui.elements.DivElement;
import org.dominokit.domino.ui.icons.lib.Icons;
import org.dominokit.domino.ui.menu.CustomMenuItem;
import org.dominokit.domino.ui.menu.Menu;
import org.dominokit.domino.ui.menu.direction.DropDirection;
import org.dominokit.domino.ui.richtext.RichTextCommand;
import org.dominokit.domino.ui.utils.DominoDom;
/**
* Represents a UI component for setting the heading style of the selected text within a rich text
* editor.
*
* The HeadingCommand extends {@link RichTextCommand} and provides a mechanism to format the
* selected text within a rich text editable div element as a specific heading. It presents the user
* with a dropdown menu from which they can select a desired heading style (from H1 to H6).
*
*
Usage Example:
*
*
{@code
* DivElement editableDiv = DivElement.create();
* HeadingCommand headingCommand = HeadingCommand.create(editableDiv);
* }
*/
public class HeadingCommand extends RichTextCommand {
private Button mainButton;
private String heading = "";
private ButtonsGroup button;
/**
* Factory method to create a new instance of HeadingCommand.
*
* @param editableElement The div element where the rich text is edited.
* @return A new instance of HeadingCommand.
*/
public static HeadingCommand create(DivElement editableElement) {
return new HeadingCommand(editableElement);
}
/**
* Constructs a new HeadingCommand instance for the specified editable element.
*
* @param editableElement The div element where the rich text is edited.
*/
public HeadingCommand(DivElement editableElement) {
super(editableElement);
this.button =
ButtonsGroup.create(
mainButton =
Button.create(Icons.format_header_1()).addClickListener(evt -> execute()),
DropdownButton.create(
Button.create(Icons.chevron_down()),
Menu.create()
.setDropDirection(DropDirection.BOTTOM_LEFT)
.appendChild(
CustomMenuItem.create()
.appendChild(h(1).textContent(getLabels().heading1()))
.withValue(""))
.appendChild(
CustomMenuItem.create()
.appendChild(h(2).textContent(getLabels().heading2()))
.withValue(""))
.appendChild(
CustomMenuItem.create()
.appendChild(h(3).textContent(getLabels().heading3()))
.withValue(""))
.appendChild(
CustomMenuItem.create()
.appendChild(h(4).textContent(getLabels().heading4()))
.withValue(""))
.appendChild(
CustomMenuItem.create()
.appendChild(h(5).textContent(getLabels().heading5()))
.withValue(""))
.appendChild(
CustomMenuItem.create()
.appendChild(h(6).textContent(getLabels().heading6()))
.withValue(""))
.addSelectionListener(
(source, selection) -> {
this.heading = selection.get(0).getValue();
switch (heading) {
case "":
mainButton.setIcon(Icons.format_header_1());
break;
case "":
mainButton.setIcon(Icons.format_header_2());
break;
case "":
mainButton.setIcon(Icons.format_header_3());
break;
case "":
mainButton.setIcon(Icons.format_header_4());
break;
case "":
mainButton.setIcon(Icons.format_header_5());
break;
case "":
mainButton.setIcon(Icons.format_header_6());
break;
}
execute();
})))
.setTooltip(getLabels().heading());
init(this);
}
/**
* @dominokit-site-ignore {@inheritDoc}
*
Returns the main HTMLElement of this command, which is the heading button group.
* @return The HTMLElement of the heading button group.
*/
@Override
public HTMLElement element() {
return button.element();
}
/**
* Executes the command, setting the heading style for the currently selected text within the
* editable div element.
*/
@Override
protected void execute() {
getSelectedRange()
.ifPresent(
range -> {
DominoDom.document.execCommand("formatBlock", false, heading);
});
}
}