Coming Up for Air

Yahoo! UI Meets JavaServer Faces

Thursday, May 25, 2006 |

In my ongoing efforts to learn the JSF framework as thoroughly as possible, I decided to write a component, but, with the myriad of high quality components available, what was left for me to do? :P At the suggestion of my brother, who has been watching a similar effort underway in the Wicket space, I’ve decided to wrap Yahoo’s UI library. The problem I ran into pretty quickly, though, was that the documentation wasn’t too clear as to what I needed to make it happen (though it’s quite likely I was having an obtuse moment or three). There are a plethora of resources that discuss what needs to be done, but all seemed either incomplete or too disjointed (see disclaimer above). So, to help ameliorate that, let’s walk through wrapping Yahoo’s calendar component as a JSF component, step by step. Before I go much further, though, I must note that I am by no means an expert in this, so it’s likely that you’re going to see some less than ideal examples. So, without further ado…​

When starting any project, it’s good idea to try to get a complete picture of what you’re going to need. In my efforts to wrap YAHOO.widget.Calendar, I found that I need to create following files:

1
2
3
4
5
6
7
8
src/main/
	com/steeplesoft/jsf/components/yui/calendar
		CalendarRenderer.java
		CalendarTag.java
		UICalendar.java
	META-INF
		faces-config.xml
		yuisf.tld

There are other files in my project, but these are the pertinent ones for now. With which file you start when writing components is probably largely a matter of personal taste, but we’ll start looking at things with yuisf.tld, as that will define how our tag looks to the outside world, giving us a good idea of what we’ll need to do in the rest of the files. Here’s what the TLD looks like:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<taglib xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
	version="2.1">
	<tlib-version>0.1</tlib-version>
	<jsp-version>1.2</jsp-version>
	<short-name>yuisf</short-name>
	<uri>http://steeplesoft.com/yuisf</uri>
	<display-name>YahooUIJsfTags</display-name>
	<description>
		Yahoo! User Interface JSF Tags This tag library contains tags which wrap
		several of the Yahoo! UI components.
	</description>
	<tag>
		<name>calendar</name>
		<tag-class>
			com.steeplesoft.jsf.components.yui.calendar.CalendarTag
		</tag-class>
		<body-content>JSP</body-content>
		<description>Display a JavaScript calendar</description>
		<attribute>
			<name>textField</name>
			<required>true</required>
			<rtexprvalue>false</rtexprvalue>
			<description>Text field that holds the date selected</description>
		</attribute>
	</tag>
</taglib>

Most of this should be fairly self-explanatory, so we’ll skip down to the tag element. The first thing we do is give the tag a name, calendar (surprise, surprise), which will be the name used in your JSP templates. Next, we define the class that will implement this tag, com.steeplesoft.jsf.components.yui.calendar.CalendarTag. Skipping a bit more, we see one attribute element. This is where we define what attributes a user can set on our tag. For this tag, we declare a textField attribute, which is required.

CalendarTag implements our tag. Since we don’t need any JSF 1.2-specific features, and we want the tag to be available to a wider audience, we’ll target 1.1, which means that our class will need to extend UIComponentTag. Let’s take a look at that class now:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.steeplesoft.jsf.components.yui.calendar;
import javax.faces.component.UIComponent;
import javax.faces.el.ValueBinding;
import javax.faces.webapp.UIComponentTag;
import com.sun.faces.util.Util;
public class CalendarTag extends UIComponentTag {
	private String textField=null;
	public String getComponentType() {
		return UICalendar.COMPONENT_TYPE;
	}
	public String getRendererType() {
		return UICalendar.RENDERER_TYPE;
	}
	protected void setProperties(UIComponent component) {
		super.setProperties(component);
		UICalendar calendar;
		try {
			calendar=(UICalendar)component;
		} catch (ClassCastException cce) {
			throw new IllegalStateException("Component " +
					component.toString() +
					" not expected type.  Expected: UICalendar.  Perhaps you're missing a tag?");
		}
		if (textField != null) {
			if (isValueReference(textField)) {
				ValueBinding vb = Util.getValueBinding(textField);
				calendar.setValueBinding("textField", vb);
			} else {
				calendar.setTextField(textField);
			}
		}
	}
	public String getTextField() {
		return textField;
	}
	public void setTextField(String textField) {
		this.textField = textField;
	}
}

There are three methods that we need to override: getComponentType(), getRendererType(), and setProperties(UIComponent component). In our implementation of the first two methods, we simply return a public static String from UICalendar, which we’ll see in a moment. These values will be used to help tie the component in just a moment. The third method is <a title: "quoth the Ryan Lubke">where the magic happens</a>. Since we want the component to be value binding aware, we set the textField attribute to rtexprvalue=false in yuisf.tld, and check to see if the value passed is a literal or value binding expression, and handle it appropriately. Is that overkill for this field? Most likely. ;) Note also, that we have accessors for each attribute exposed in the TLD."

UICalendar is the actual component. For no particularly compelling reason, I’ve chosen to extend javax.faces.component.UIPanel. Let’s take a look:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
package com.steeplesoft.jsf.components.yui.calendar;
import javax.faces.component.UIPanel;
public class UICalendar extends UIPanel {
	public static final String COMPONENT_TYPE =
			"com.steeplesoft.jsf.components.yui.calendar.Calendar";
	public static final String RENDERER_TYPE =
			"com.steeplesoft.jsf.components.yui.calendar.Calendar";
	protected String textField;
	public String getTextField() {
		return textField;
	}
	public void setTextField(String textField) {
		this.textField = textField;
	}
	public UICalendar() {
		setRendererType(RENDERER_TYPE);
	}
	public String getFamily() {
		return "YuiCalendar";
	}
}

This class doesn’t do much of anything of interest, but it’s important for a couple of reasons. Via the constuctor and getFamily, more pieces are put in place to tie all of our files together to make our new component. We also defined a property and accessors for our textField attribute, which will make working with the component in Java code a bit nicer. Note also that public static Strings defined at the top. We’ve already seen these referenced once in our tag class, and we’ll see in a moment the final place these values are referenced.

All of this work is for naught if JSF doesn’t know how to render the component. We’ll do that now, via CalendarRenderer:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.steeplesoft.jsf.components.yui.calendar;
import java.io.IOException;
import java.net.URL;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
import javax.faces.render.Renderer;
import com.steeplesoft.jsf.components.yui.utils.RendererHelper;
public class CalendarRenderer extends Renderer {
	private static final String CALENDAR_CSS_RENDERED_SCRIPT_KEY = "yui_calendar_css_rendered";
	private static final String CALENDAR_RENDERED_SCRIPT_KEY = "yui_calendar_js_rendered";
	public CalendarRenderer() {
		//
	}
	public void encodeEnd(FacesContext context, UIComponent component) throws IOException {
		if ((context == null) || (component == null)) {
			throw new NullPointerException();
		}
		ResponseWriter writer = context.getResponseWriter();
		if (!RendererHelper.hasBeenRendered(context, RendererHelper.YAHOO_RENDERED_SCRIPT_KEY)) {
			RendererHelper.writeScriptTag(writer, component, RendererHelper.RESOURCE_PREFIX +"/META-INF/yahoo.js");
		}
		if (!RendererHelper.hasBeenRendered(context, RendererHelper.DOM_RENDERED_SCRIPT_KEY)) {
			RendererHelper.writeScriptTag(writer, component, RendererHelper.RESOURCE_PREFIX +"/META-INF/dom.js");
		}
		if (!RendererHelper.hasBeenRendered(context, RendererHelper.EVENT_RENDERED_SCRIPT_KEY)) {
			RendererHelper.writeScriptTag(writer, component, RendererHelper.RESOURCE_PREFIX +"/META-INF/event.js");
		}
		if (!RendererHelper.hasBeenRendered(context, CALENDAR_RENDERED_SCRIPT_KEY)) {
			RendererHelper.writeScriptTag(writer, component, RendererHelper.RESOURCE_PREFIX +"/META-INF/calendar/calendar.js");
		}
		if (!RendererHelper.hasBeenRendered(context, RendererHelper.JS_UTIL_RENDERED_SCRIPT_KEY)) {
			RendererHelper.writeScriptTag(writer, component, RendererHelper.RESOURCE_PREFIX +"/META-INF/js-utils.js");
		}
		if (!RendererHelper.hasBeenRendered(context, CALENDAR_CSS_RENDERED_SCRIPT_KEY)) {
			RendererHelper.writeCssLinkTag(writer, component, RendererHelper.RESOURCE_PREFIX +"/META-INF/calendar/calendar.css");
		}
		writeCalendarMarkUp(context, writer, component);
	}
	protected void writeCalendarMarkUp (FacesContext context, ResponseWriter writer, UIComponent component) throws IOException {
		UIComponent textField = component.findComponent((String)component.getAttributes().get("textField"));
		URL sxURL = CalendarRenderer.class.getResource("/META-INF/calendar/CalendarTemplate.txt");
		String sxTemplate = RendererHelper.readInFragmentAsString(sxURL);
		sxTemplate = sxTemplate.replaceAll("%%%DIV_ID%%%", component.getId())
			.replaceAll("%%%TF_ID%%%", textField.getClientId(context))
			.replaceAll("%%%RESOURCE_PREFIX%%%", RendererHelper.RESOURCE_PREFIX);
		writer.write(sxTemplate);
	}
}

This class is the most interesting of all that we’ve done thus far, as this is where the user interface magic happens. It is via the renderer that the component is turned from Java source, TLDs, and view templating mark up into a real live HTML (in our case) widget. For those not familiar with the calendar component, here is what we want our output to look like:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<input id="j_id_id15:test" type: "text" name="j_id_id15:test" readonly="readonly" />
<script type: "text/javascript" src="resource.jsf?r=/META-INF/yahoo.js"></script>
<script type: "text/javascript" src="resource.jsf?r=/META-INF/dom.js"></script>
<script type: "text/javascript" src="resource.jsf?r=/META-INF/event.js"></script>
<script type: "text/javascript" src="resource.jsf?r=/META-INF/calendar/calendar.js"></script>
<script type: "text/javascript" src="resource.jsf?r=/META-INF/js-utils.js"></script>
<link type: "text/css" rel="stylesheet" href="resource.jsf?r=/META-INF/calendar/calendar.css" />
<img id="img_j_id_id18" alt="calendar" src="resource.jsf?r=/META-INF/calendar/calendar_icon.gif"
	onclick="show(this,'j_id_id18')" />
<div id="j_id_id18" style="visibility: hidden; display: inline;" /></div>
<script type: "text/javascript">
	function j_id_id18_calOnSelect() {
		var tf = document.getElementById("j_id_id15:test");
		tf.value = formatDate(j_id_id18_cal.getSelectedDates()[0]);
		var cal = document.getElementById("j_id_id18");
		cal.style.visibility = 'hidden';
	}
	j_id_id18_cal = new YAHOO.widget.Calendar("j_id_id18_cal","j_id_id18");
	j_id_id18_cal.onSelect = j_id_id18_calOnSelect;
	var pos = YAHOO.util.Dom.getXY("img_j_id_id18");
	var img_height = parseInt(YAHOO.util.Dom.getStyle("img_j_id_id18", "height"));
	elem = YAHOO.util.Dom.get("j_id_id18");
	elem.style.top  = pos[1] + img_height - 1 + "px";
	elem.style.left = pos[0] + "px";
	elem.style.position = 'absolute';
	j_id_id18_cal.render();
</script>

Wow! That’s some pretty ugly markup, but what you get out of that generated mess is, in my opinion, worth it, and the user will never see that (unless he’s crazy enough to view the page source). That mark up, by the way, is generated by this template snippet:

1
2
<h:inputText id="test" readonly="true"/>
<yuisf:calendar textField="test"/>

Let’s break things down a little bit. Since this tag does not support any children tags (plus the fact that it seemed like a good idea), we do all of our work in encodeEnd(). After a little error checking, we get a reference to the ResponseWriter used to output our HTML. The next several blocks of code handle sending the Yahoo! Javascript files to the browser (the mechanics of which are beyond the scope of this article, but feel free to browse the source). Care is taken to prevent sending the file more than once in the event that more than one calendar is on the page. The actual markup output occurs in writeCalendarMarkUp(). I’ll not muddy the waters by explaining exactly how it works, but suffice it to say that a template is loaded from the class path and markers in the template are replaced with values from the tag (big tip of the hat to Ed, whose code I shamelessly stole).

The final piece to tieing this together is faces-config.xml:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE faces-config PUBLIC
  "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config>
  <component>
    <description>
      Yahoo! UI Calendar
    </description>
    <display-name>Yahoo! UI Calendar</display-name>
    <component-type>com.steeplesoft.jsf.components.yui.calendar.Calendar</component-type>
    <component-class>com.steeplesoft.jsf.components.yui.calendar.UICalendar</component-class>
    <component-extension>
      <renderer-type>CalendarRenderer</renderer-type>
    </component-extension>
  </component>
  <render-kit>
    <description>
    	  Renderkit implementation for the Calendar component
    </description>
    <renderer>
      <component-family>YuiCalendar</component-family>
      <renderer-type>com.steeplesoft.jsf.components.yui.calendar.Calendar</renderer-type>
      <renderer-class>com.steeplesoft.jsf.components.yui.calendar.CalendarRenderer</renderer-class>
    </renderer>
  </render-kit>
</faces-config>

Here we define both a component and a render kit. Note that component-type is the same as UICalendar.COMPONENT_TYPE, and component-class is our UICalendar class. For the render kit, component-family is what UICalendar.getFamily() returns (if you had a group of components that used the same renderer, each class would return the same string for its family). The renderer-type is that same as UICalendar.RENDERER_TYPE, and, of course, renderer-class points to our Renderer child.

With all of that done, we need to package our new component. In the component jar, you’ll obviously need the compiled Java classes, but you’ll also need the META-INF directory in the root of your jar (which is why I chose to put it in the root of my source directory). You are now ready to put the resulting jar (and it’s dependencies) in your web application and start using the component. Simple, eh? :)

While this gets a functioning component (and a pretty cool one at that), it’s certainly not feature complete, nor is it an example of how one should write a component. Hopefully, though, it will get you started writing your own components as it did me.

So what’s the future of this component? The short answer is, I’m not completely sure. All I know is that it will be open sourced somewhere. Discussions about where the project will live are pending, but I hope to have that nailed down pretty soon. If nothing else, I’ll host them here. Watch this space for more information on that.

Search

    Quotes

    Sample quote

    Quote source

    About

    My name is Jason Lee. I am a software developer living in the middle of Oklahoma. I’ve been a professional developer since 1997, using a variety of languages, including Java, Javascript, PHP, Python, Delphi, and even a bit of C#. I currently work for Red Hat on the WildFly/EAP team, where, among other things, I maintain integrations for some MicroProfile specs, OpenTelemetry, Micrometer, Jakarta Faces, and Bean Validation. (Full resume here. LinkedIn profile)

    I am the president of the Oklahoma City JUG, and an occasional speaker at the JUG and a variety of technical conferences.

    On the personal side, I’m active in my church, and enjoy bass guitar, running, fishing, and a variety of martial arts. I’m also married to a beautiful woman, and have two boys, who, thankfully, look like their mother.

    My Links

    Publications