org.patternfly.component.togglegroup.ToggleGroupItem Maven / Gradle / Ivy
/*
* Copyright 2023 Red Hat
*
* 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
*
* https://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.patternfly.component.togglegroup;
import java.util.HashMap;
import java.util.Map;
import org.jboss.elemento.ButtonType;
import org.jboss.elemento.HTMLContainerBuilder;
import org.patternfly.component.SelectionMode;
import org.patternfly.component.WithIcon;
import org.patternfly.component.WithIdentifier;
import org.patternfly.component.WithText;
import org.patternfly.core.ComponentContext;
import org.patternfly.core.Dataset;
import org.patternfly.core.ElementDelegate;
import org.patternfly.handler.ComponentHandler;
import org.patternfly.style.Classes;
import org.patternfly.style.Modifiers.Disabled;
import elemental2.dom.Element;
import elemental2.dom.Event;
import elemental2.dom.HTMLButtonElement;
import elemental2.dom.HTMLDivElement;
import elemental2.dom.HTMLElement;
import static org.jboss.elemento.Elements.button;
import static org.jboss.elemento.Elements.div;
import static org.jboss.elemento.Elements.failSafeRemoveFromParent;
import static org.jboss.elemento.Elements.insertFirst;
import static org.jboss.elemento.Elements.removeChildrenFrom;
import static org.jboss.elemento.Elements.span;
import static org.jboss.elemento.EventType.click;
import static org.patternfly.core.Aria.pressed;
import static org.patternfly.style.Classes.component;
import static org.patternfly.style.Classes.icon;
import static org.patternfly.style.Classes.item;
import static org.patternfly.style.Classes.modifier;
import static org.patternfly.style.Classes.text;
import static org.patternfly.style.Classes.toggleGroup;
public class ToggleGroupItem extends ToggleGroupSubComponent implements
ComponentContext,
Disabled,
ElementDelegate,
WithIdentifier,
WithIcon,
WithText {
// ------------------------------------------------------ factory
public static ToggleGroupItem toggleGroupItem(String identifier) {
return new ToggleGroupItem(identifier, null);
}
public static ToggleGroupItem toggleGroupItem(String identifier, String text) {
return new ToggleGroupItem(identifier, text);
}
// ------------------------------------------------------ instance
static final String SUB_COMPONENT_NAME = "tgi";
private final String identifier;
private final Map data;
private final HTMLContainerBuilder button;
private HTMLElement textElement;
private HTMLElement iconContainer;
ToggleGroupItem(String identifier, String text) {
super(SUB_COMPONENT_NAME, div().css(component(toggleGroup, item))
.data(Dataset.identifier, identifier)
.element());
this.identifier = identifier;
this.data = new HashMap<>();
this.button = button(ButtonType.button).css(component(toggleGroup, Classes.button))
.aria(pressed, false)
.on(click, this::onClick);
element().appendChild(button.element());
text(text);
}
@Override
public HTMLElement delegate() {
return button.element();
}
// ------------------------------------------------------ builder
@Override
public ToggleGroupItem disabled(boolean disabled) {
button.element().disabled = disabled;
return this;
}
@Override
public ToggleGroupItem icon(Element icon) {
removeChildrenFrom(iconContainer);
failSafeIconContainer().appendChild(icon);
return this;
}
@Override
public ToggleGroupItem removeIcon() {
failSafeRemoveFromParent(iconContainer);
iconContainer = null;
return this;
}
@Override
public ToggleGroupItem text(String text) {
if (text == null) {
failSafeRemoveFromParent(textElement);
textElement = null;
} else {
failSafeTextElement().textContent = text;
}
return this;
}
@Override
public ToggleGroupItem store(String key, T value) {
data.put(key, value);
return this;
}
@Override
public ToggleGroupItem that() {
return this;
}
// ------------------------------------------------------ events
public ToggleGroupItem onClick(ComponentHandler clickHandler) {
button.on(click, e -> clickHandler.handle(e, this));
return this;
}
// ------------------------------------------------------ api
@Override
public String identifier() {
return identifier;
}
@Override
public boolean isDisabled() {
return button.element().disabled;
}
@Override
public String text() {
if (textElement != null) {
return textElement.textContent;
}
return null;
}
@Override
public boolean has(String key) {
return data.containsKey(key);
}
@SuppressWarnings("unchecked")
public T get(String key) {
if (data.containsKey(key)) {
return (T) data.get(key);
}
return null;
}
// ------------------------------------------------------ internal
void onClick(Event event) {
ToggleGroup toggleGroup = lookupComponent();
if (toggleGroup.selectionMode == SelectionMode.single) {
if (!isSelected()) {
toggleGroup.select(this);
}
} else if (toggleGroup.selectionMode == SelectionMode.multi) {
toggleGroup.select(this, !isSelected(), true);
}
}
void markSelected(boolean selected) {
button.aria(pressed, selected);
button.classList().toggle(modifier(Classes.selected), selected);
}
boolean isSelected() {
return Boolean.parseBoolean(button.element().getAttribute(pressed));
}
private HTMLElement failSafeTextElement() {
if (textElement == null) {
button.add(textElement = span().css(component(toggleGroup, text)).element());
}
return textElement;
}
private HTMLElement failSafeIconContainer() {
if (iconContainer == null) {
insertFirst(button.element(), iconContainer = span().css(component(toggleGroup, icon)).element());
}
return iconContainer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy