fb4cdf489d0d5c6c9d54bb242cb253bcf38d1d20
[utils] / wicket / components / src / main / java / org / wamblee / wicket / jquery / JQueryHeaderContributor.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.wicket.jquery;
17
18 import org.apache.wicket.Application;
19 import org.apache.wicket.behavior.HeaderContributor;
20 import org.apache.wicket.markup.html.IHeaderContributor;
21 import org.apache.wicket.markup.html.IHeaderResponse;
22 import org.apache.wicket.markup.html.JavascriptPackageResource;
23
24 /**
25  * JQuery bahavior which adds the jquery javascript.
26  * 
27  * @author Erik Brakkee
28  */
29 public class JQueryHeaderContributor extends HeaderContributor {
30
31     static final String JQUERY_DEPLOYMENT = "jquery-1.4.2.min.js";
32     static final String JQUERY_DEVELOPMENT = "jquery-1.4.2.js";
33     static final String JQUERY_NOCONFLICT = "jquery-noconflict.js";
34
35     private static HeaderContributor JQUERY_CONTRIBUTOR;
36     private static HeaderContributor JQUERY_NOCONFLICT_CONTRIBUTOR =
37         JavascriptPackageResource.getHeaderContribution(
38             JQueryHeaderContributor.class, JQUERY_NOCONFLICT);
39
40     /**
41      * Constructs the behavior.
42      */
43     public JQueryHeaderContributor() {
44         super(getContributor());
45     }
46     
47     /**
48      * Resets the cached value of the header contribution. Used typically for test only.
49      */
50     public static void clear() { 
51         JQUERY_CONTRIBUTOR = null;
52     }
53
54     private static IHeaderContributor getContributor() {
55         if (JQUERY_CONTRIBUTOR == null) {
56             JQUERY_CONTRIBUTOR = JavascriptPackageResource.getHeaderContribution(
57                 JQueryHeaderContributor.class, getJQueryJavascript());
58         }
59         return new IHeaderContributor() {        
60             @Override
61             public void renderHead(IHeaderResponse aResponse) {
62                 JQUERY_CONTRIBUTOR.renderHead(aResponse);
63                 JQUERY_NOCONFLICT_CONTRIBUTOR.renderHead(aResponse);
64             }
65         };
66     }
67
68     private static String getJQueryJavascript() {
69         return Application.get().getConfigurationType().equals(
70             Application.DEVELOPMENT) ? JQUERY_DEVELOPMENT : JQUERY_DEPLOYMENT;
71     }
72 }