org.bklab.flow.components.mix.Badge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-vaadin-flow Show documentation
Show all versions of fluent-vaadin-flow Show documentation
Broderick Labs for fluent vaadin flow. Inherits common Vaadin components.
/*
* Copyright (c) 2008 - 2020. - Broderick Labs.
* Author: Broderick Johansson
* E-mail: [email protected]
* Modify date:2020-07-02 09:33:44
* _____________________________
* Project name: fluent-vaadin-flow
* Class name:org.bklab.flow.components.mix.Badge
* Copyright (c) 2008 - 2020. - Broderick Labs.
*/
package org.bklab.flow.components.mix;
import com.vaadin.flow.component.html.Span;
import org.bklab.flow.util.lumo.UIUtils;
import org.bklab.flow.util.css.lumo.BadgeColor;
import org.bklab.flow.util.css.lumo.BadgeShape;
import org.bklab.flow.util.css.lumo.BadgeSize;
import java.util.StringJoiner;
import static org.bklab.flow.util.css.lumo.BadgeShape.PILL;
public class Badge extends Span {
public Badge(String text) {
this(text, BadgeColor.NORMAL);
}
public Badge(String text, BadgeColor color) {
super(text);
UIUtils.setTheme(color.getThemeName(), this);
}
public Badge(String text, BadgeColor color, BadgeSize size, BadgeShape shape) {
super(text);
StringJoiner joiner = new StringJoiner(" ");
joiner.add(color.getThemeName());
if (shape.equals(PILL)) {
joiner.add(shape.getThemeName());
}
if (size.equals(BadgeSize.S)) {
joiner.add(size.getThemeName());
}
UIUtils.setTheme(joiner.toString(), this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy