blob: 5a9147c39c31878b4973bc2c630b2f42bb51e3b5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.myfaces.tobago.renderkit.css;
import org.apache.myfaces.tobago.renderkit.html.HtmlElements;
import org.apache.myfaces.tobago.webapp.TobagoResponseWriter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.EnumMap;
import java.util.regex.Pattern;
/**
* @deprecated since Tobago 3.1.0. May be subject of change in later versions!
*/
@Deprecated
public class FontAwesomeIconEncoder implements IconEncoder {
private static final Logger LOG = LoggerFactory.getLogger(FontAwesomeIconEncoder.class);
public static final CssItem FA = new FontAwesomeCssItem("fa");
private static final Pattern PATTERN = Pattern.compile("^(fa(-[a-z]+)+)$");
private static final EnumMap<Icons, CssItem> ICONS;
static {
ICONS = new EnumMap<Icons, CssItem>(Icons.class);
for (Icons icon : Icons.values()) {
ICONS.put(icon, new FontAwesomeCssItem("fa-" + icon.name().toLowerCase().replaceAll("_", "-")));
}
}
@Override
public void encode(final TobagoResponseWriter writer, final Icons icon, final Style style, final CssItem... cssItems)
throws IOException {
writer.startElement(HtmlElements.I);
writer.writeStyleAttribute(style);
writer.writeClassAttribute(FA, generateClass(icon), cssItems);
writer.endElement(HtmlElements.I);
}
public static CssItem generateClass(final Icons icon) {
if (icon == null) {
return null;
}
CssItem result = ICONS.get(icon);
if (result == null) {
LOG.warn("Missing icon: '" + icon + "'");
}
return result;
}
public static CssItem generateClass(final String name) {
return new CssItem() {
@Override
public String getName() {
if (PATTERN.matcher(name).matches()) {
return name;
} else {
LOG.warn("Unknown Icon: '" + name + "'");
return null;
}
}
};
}
private static final class FontAwesomeCssItem implements CssItem {
private String name;
FontAwesomeCssItem(String name) {
this.name = name;
}
@Override
public String getName() {
return name;
}
}
}