Partially implemented possibility of adding help bubbles to Plugin boxes

This commit is contained in:
Rsl1122 2018-03-03 18:24:24 +02:00
parent 230e1f2ec3
commit a800d1cbf8
2 changed files with 11 additions and 1 deletions

View File

@ -26,6 +26,8 @@ public abstract class PluginData {
private String pluginIcon;
private String iconColor;
private String helpText;
public PluginData(ContainerSize size, String sourcePlugin) {
this.size = size;
this.sourcePlugin = sourcePlugin;
@ -43,6 +45,10 @@ public abstract class PluginData {
this.iconColor = iconColor;
}
public final String getHelpText() {
return helpText;
}
public final String parsePluginIcon() {
return pluginIcon != null ? Html.FA_COLORED_ICON.parse((iconColor != null ? iconColor : "black"), pluginIcon) : Html.FONT_AWESOME_ICON.parse("cube");
}
@ -55,6 +61,10 @@ public abstract class PluginData {
return sourcePlugin;
}
protected final void setHelpText(String html) {
helpText = Html.HELP_BUBBLE.parse(sourcePlugin, html);
}
@Override
public final boolean equals(Object o) {
if (this == o) return true;

View File

@ -55,7 +55,7 @@ public enum Html {
BODY("<div class=\"body\">${0}</div>"),
PANEL("<div class=\"panel panel-default\">${0}</div>"),
PANEL_BODY("<div class=\"panel-body\">${0}</div>"),
HELP_BUBBLE("<div class=\"col-xs-6 col-sm-6 col-lg-6\"><a href=\"javascript:void(0)\" class=\"help material-icons pull-right\" data-trigger=\"focus\" data-toggle=\"popover\" data-placement=\"left\" data-container=\"body\" data-html=\"true\" data-original-title=\"${0}\" data-content=\"${1}\">help_outline</a></div>"),
//
TABLE_END("</tbody></table>"),
TABLE("<table class=\"table table-striped\">"),