Delegating Rendering to a Renderer
Both
MapComponentandAreaComponentdelegate all of their rendering to a separate renderer. The section Performing Encoding explains howMapRendererperforms the encoding forMapComponent. This section explains in detail the process of delegating rendering to a renderer usingAreaRenderer, which performs the rendering forAreaComponent.To delegate rendering, you perform these tasks:
- Create the
Rendererclass- Register the renderer with a render kit (explained in Registering a Custom Renderer with a Render Kit, page 468)
- Identify the renderer type in the component's tag handler
Creating the Renderer Class
When delegating rendering to a renderer, you can delegate all encoding and decoding to the renderer, or you can choose to do part of it in the component class. The
AreaComponentclass delegates encoding to theAreaRendererclass.To perform the rendering for
AreaComponent, AreaRenderer must implement anencodeEndmethod. TheencodeEndmethod ofAreaRendererretrieves the shape, coordinates, and alternative text values stored in theImageAreabean that is bound toAreaComponent. Suppose that theareatag currently being rendered has avalueattribute value of"fraA". The following line fromencodeEndgets the value of the attribute"fraA"from the FacesContext instance.The attribute value is the
ImageAreabean instance, which contains the shape, coordinates, and alt values associated with thefraAAreaComponentinstance. Configuring Model Data describes how the application stores these values.After retrieving the
ImageAreaobject, it renders the values forshape,coords, andaltby simply calling the associated accessor methods and passing the returned values to theResponseWriterinstance, as shown by these lines of code, which write out the shape and coordinates:writer.startElement("area", area); writer.writeAttribute("alt", iarea.getAlt(), "alt"); writer.writeAttribute("coords", iarea.getCoords(), "coords"); writer.writeAttribute("shape", iarea.getShape(), "shape");The
encodeEndmethod also renders the JavaScript for theonmouseout,onmouseover, andonclickattributes. The page author need only provide the path to the images that are to be loaded during anonmouseoveroronmouseoutaction:<bookstore:area id="France" value="#{fraA}" onmouseover="/template/world_france.jpg" onmouseout="/template/world.jpg" targetImage="mapImage" />The
AreaRendererclass takes care of generating the JavaScript for these actions, as shown in the following code fromencodeEnd. The JavaScript thatAreaRenderergenerates for theonclickaction sets the value of the hidden field to the value of the current area's component ID and submits the page.sb = new StringBuffer("document.forms[0]['"). append(targetImageId).append("'].src='"); sb.append(getURI(context, (String) area.getAttributes().get("onmouseout"))); sb.append("'"); writer.writeAttribute("onmouseout", sb.toString(), "onmouseout"); sb = new StringBuffer("document.forms[0]['"). append(targetImageId).append("'].src='"); sb.append(getURI(context, (String) area.getAttributes().get("onmouseover"))); sb.append("'"); writer.writeAttribute("onmouseover", sb.toString(), "onmouseover"); sb = new StringBuffer("document.forms[0]['"); sb.append(getName(context, area)); sb.append("'].value='"); sb.append(iarea.getAlt()); sb.append("'; document.forms[0].submit()"); writer.writeAttribute("onclick", sb.toString(), "value"); writer.endElement("area");By submitting the page, this code causes the JavaServer Faces life cycle to return back to the restore view phase. This phase saves any state information--including the value of the hidden field--so that a new request component tree is constructed. This value is retrieved by the
decodemethod of theMapComponentclass. Thisdecodemethod is called by the JavaServer Faces implementation during the apply request values phase, which follows the restore view phase.In addition to the
encodeEndmethod,AreaRenderercontains an empty constructor. This is used to create an instance ofAreaRendererso that it can be added to the render kit.Identifying the Renderer Type
During the render response phase, the JavaServer Faces implementation calls the
getRendererTypemethod of the component's tag handler to determine which renderer to invoke, if there is one.The
getRendererTypemethod ofAreaTagmust return the type associated withAreaRenderer. You identify this type when you registerAreaRendererwith the render kit, as described in Registering a Custom Renderer with a Render Kit (page 468). Here is thegetRendererTypemethod from theAreaTagclass:Creating the Component Tag Handler explains more about the
getRendererTypemethod.