PrimeFaces Themes
PrimeFaces Themes
PrimeFaces Themes
PrimeFaces:
Themes (Skins)
Originals of Slides and Source Code for Examples:
http://www.coreservlets.com/JSF-Tutorial/primefaces/
Overview of Themes
All PrimeFaces components follow themes
Font families, font sizes, colors, borders, icons, etc.
PrimeFaces provides many pre-built themes
37 themes as of PrimeFaces release 3.4. This includes the RichFaces
and Trinidad themes, for easy migration.
Installing a theme is simple
Download the JAR. Set a context-param in web.xml.
You can customize themes (with effort)
Use ThemeRoller. Edit several files. Save JAR.
You can change themes at runtime
Use p:themeSwitcher
Call PrimeFaces.changeTheme('theme-name') in JavaScript
CSS class names documented
So you can write standard HTML that follows theme
6
2013 Marty Hall
8
Installing a Theme: Details
Browse themes and choose name
http://www.primefaces.org/themes.html
Click on magnifying glass at bottom, then browse to
various showcase sections to see components displayed
in that theme.
http://apps.jsf2.com/primefaces-themes/themes3.jsf
Choose theme from dropdown at top, and see many
components all at once.
12
Project Layout in Eclipse
Downloaded from http://repository.primefaces.org/org/primefaces/themes/bluesky/1.0.8/
(start at http://repository.primefaces.org/org/primefaces/themes/ and browse from there).
JARs for the other themes are also installed because later examples will let user
interactively choose among all available themes.
Results
14 Result after moving the slider and spinner, clicking one radio button, then clicking Growl button.
Main Page: Facelets
<p:accordionPanel>
<p:tab title="Sample Elements">
<p:tabView>
<p:tab title="Main Tab">
<h:panelGrid columns="4">
<ui:include src="/snippets/calendar.xhtml"/>
<ui:include src="/snippets/table-and-panel.xhtml"/>
<ui:include src="/snippets/form-elements.xhtml"/>
<ui:include src="/snippets/popups.xhtml"/>
</h:panelGrid>
</p:tab>
<p:tab title="More"> All four of these content sections contain elements that were
<ui:include src="/snippets/filler.xhtml"/> covered in earlier parts of this PrimeFaces tutorial. And, none
of them have any real server-side behavior. So, if you have
</p:tab> already gone through earlier parts of this tutorial, you probably
... want to skip or skim the next few slides in this sub-section that
show the code for the four content regions.
</p:tabView>
</p:tab>
<p:tab title="More Content">
<ui:include src="/snippets/filler.xhtml"/>
</p:tab>
...
</p:accordionPanel>
15
Calendar: Facelets
<h:panelGrid>
<h3 align="center">Calendar</h3>
<h:form>
<p:calendar mode="inline"/>
</h:form>
</h:panelGrid>
This and the other three content sections are each wrapped inside ui:composition so that they can be inserted with ui:include.
16
Table and Panel: Facelets
<h:panelGrid>
<h3 align="center">Table and Panel</h3>
<p:panelGrid columns="2">
<f:facet name="header">Major Stocks</f:facet>
coreservlets
<h:outputText value="#{financeBean.coreservlets}"/>
Prime
<h:outputText value="#{financeBean.prime}"/>
</p:panelGrid>
<br/>
<p:panel header="Weather">
Weather info...
</p:panel>
</h:panelGrid>
17
Popups: GrowlBean
@ManagedBean
public class GrowlBean {
public String makeMessages() {
FacesContext context = FacesContext.getCurrentInstance();
FacesMessage message1 =
new FacesMessage("Something happened");
// Default severity is INFO
context.addMessage(null, message1);
FacesMessage message2 =
new FacesMessage("You were naughty");
message2.setSeverity(FacesMessage.SEVERITY_ERROR);
context.addMessage(null, message2);
return(null);
}
}
20
2013 Marty Hall
p:themeSwitcher
Changing Theme at
Runtime
Customized Java EE Training: http://courses.coreservlets.com/
Java, JSF 2, PrimeFaces, Servlets, JSP, Ajax, jQuery, Spring, Hibernate, RESTful Web Services, Hadoop, Android.
Developed and taught by well-known author and developer. At public venues or onsite at your location.
Idea
Install JARs for several themes
I installed JARs for all 36 non-default themes
aristo is built in
Use p:themeSwitcher
Syntax is almost identical to that of h:selectOneMenu
except no bean property for the user selection (handled by
JavaScript on the client). Very simple to use.
f:selectItems refers to the themes.
String[] Should contain the theme names in lower case
List<String> again, theme names in lower case
Map<String,String> the keys are arbitrary display values
and the values are the theme names in lower case
SelectItem[] or List<SelectItem> Display part of each
SelectItem is arbitrary, values are theme names
22
Issue: Theme Switcher Fires on
Change (like h:selectOneMenu)
Problem
Themes changed only when menu selection changes
So, if top entry is a theme that does not match the current
theme, there is no way to select it without changing to
another theme in between.
Solution 1
Put dummy value (e.g., Choose Theme) as top
value of menu. If value is empty string, p:themeSwitcher
will ignore it if selected. This means that any initial
selection of a theme will be a change.
This point was also discussed in general JSF2 tutorial
when discussing h:selectOneMenu.
Solution 2
23
Put current theme first in the list. (Next section)
Example: Facelets
<div align="center"> Dummy value so that any theme name
selected will be a change.
<h:form>
<p:themeSwitcher>
<f:selectItem itemLabel="--Choose Theme--"
itemValue=""/>
<f:selectItems value="#{themeChoices.themes}"/>
</p:themeSwitcher>
</h:form>
</div> Returns an array of the theme names.
<ui:include src="/snippets/theme-body.xhtml"/>
24
Example: Bean
@ManagedBean
public class ThemeChoices {
public static final String[] POSSIBLE_THEMES =
{ "afterdark", "afternoon", "afterwork", "aristo",
"black-tie", "blitzer", "bluesky", "casablanca",
"cruze", "cupertino", "dark-hive", "dot-luv",
"eggplant", "excite-bike", "flick", "glass-x",
"home", "hot-sneaks", "humanity", "le-frog",
"midnight", "mint-choc", "overcast", "pepper-grinder",
"redmond", "rocket", "sam", "smoothness",
"south-street", "start", "sunny", "swanky-purse",
"trontastic", "twitter bootstrap", "ui-darkness",
"ui-lightness", "vader" };
25
Example: Results
Looking up
the Default Theme
Idea
Default theme is stored as a context-param
Using the ExternalContext, there is a standard way of
reading a context-param.
Last example required a dummy value at the
top of the p:themeSwitcher list
But, if you know the current theme and put it first in the
list, you can skip the dummy value.
Note that p:themeSwitcher has no associated bean
property (other than the list of choices), so you cannot
have the bean property getter return a value matching an
entry in the list as with h:selectOneMenu. Thus, with
p:themeSwitcher, the top value is always the one initially
shown.
28
Example: Facelets
<div align="center">
<h:form>
No dummy value.
<h:panelGrid columns="2">
Choose a theme:
<p:themeSwitcher>
<f:selectItems value="#{smartThemeChoices.themes}" />
</p:themeSwitcher>
</h:panelGrid>
</h:form>
</div> Returns a List of the theme
names, with default theme first.
<ui:include src="/snippets/theme-body.xhtml"/>
29
Example: Bean
@ManagedBean
public class SmartThemeChoices {
public List<String> getThemes() {
List<String> themes = new LinkedList<String>();
for(String theme: ThemeChoices.POSSIBLE_THEMES) {
themes.add(theme);
}
String currentTheme = ThemeUtils.currentTheme();
themes.remove(currentTheme);
themes.add(0, currentTheme);
return(themes);
}
}
30
Example: Helper Class
public class ThemeUtils {
public static final String DEFAULT_THEME = "aristo";
31
Example: Results
(When First Loaded)
32
2013 Marty Hall
Changing Theme at
Runtime (without
p:themeSwitcher)
Customized Java EE Training: http://courses.coreservlets.com/
Java, JSF 2, PrimeFaces, Servlets, JSP, Ajax, jQuery, Spring, Hibernate, RESTful Web Services, Hadoop, Android.
Developed and taught by well-known author and developer. At public venues or onsite at your location.
Idea
How p:themeSwitcher works
It calls PrimeFaces.changeTheme, which uses jQuery to
find the link tag that loads the themes CSS file, and
changes the href attribute.
Although not documented, this is a PrimeFaces function
that is in core.js, and is unlikely to change in future
releases.
So, no need to reproduce functionality
Just call PrimeFaces.changeTheme('theme-name')
Caveat 1: the appropriate JAR must be in WEB-INF/lib
Caveat 2: this does not change the default; it is a pure
client-side change. So, next time page is reloaded, it will
revert to previous theme. But this is the same behavior as
with p:themeSwitcher. You could easily use a View
34
Parameter to make this persistent.
Example:
Runtime Theme Changes
<div align="center">
<h:form>
<h:panelGrid columns="4">
<p:commandButton value="Light Theme"
onclick="PrimeFaces.changeTheme('glass-x')"/>
<p:commandButton value="Med-Light Theme"
onclick="PrimeFaces.changeTheme('sunny')"/>
<p:commandButton value="Med-Dark Theme"
onclick="PrimeFaces.changeTheme('overcast')"/>
<p:commandButton value="Dark Theme"
onclick="PrimeFaces.changeTheme('midnight')"/>
</h:panelGrid>
</h:form>
</div>
<ui:include src="/snippets/theme-body.xhtml"/>
35
Results
36
2013 Marty Hall
Best Practices
for Using Themes
39
More classes and detail: http://docs.jquery.com/UI/Theming/API#The_jQuery_UI_CSS_Framework
40
CSS Classes: Samples
41
43
44
Theme Gotcha: None of the
Themes Fit Your Needs
Problem
None of the 37 builtin themes is exactly what you want
Solution
Roll your own. But dont start from scratch. Choose the
theme that is nearest to what you want, then use
ThemeRoller to tweak it.
http://jqueryui.com/themeroller/
The output of ThemeRoller has to be edited in several
ways to be compatible with PrimeFaces, but this is
moderately well documented in Section 7.2 of
PrimeFaces Users Guide, and is much easier than editing
CSS by hand.
45
Wrap-Up
Questions?
JSF 2, PrimeFaces, Java 7, Ajax, jQuery, Hadoop, RESTful Web Services, Android, Spring, Hibernate, Servlets, JSP, GWT, and other Java EE training.
Also see JSF 2 tutorial and PrimeFaces tutorial.