(no commit message)
[utils] / wicket / components / src / main / java / org / wamblee / wicket / behavior / OnClickConfirmationBehavior.java
1 /*
2  * Copyright 2005-2011 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.behavior;
17
18 import org.apache.wicket.AttributeModifier;
19 import org.apache.wicket.model.IModel;
20 import org.apache.wicket.model.Model;
21
22 /**
23  * Attribute modifier to add onclick confirmation to buttons. 
24  * 
25  * @author Erik Brakkee
26  */
27 public class OnClickConfirmationBehavior extends AttributeModifier {
28
29     private static final String ATTRIBUTE = "onclick";
30
31     /**
32      * Constructs the behavior.
33      * @param aMsg Confirmation message.
34      */
35     public OnClickConfirmationBehavior(String aMsg) {
36         this(new Model(aMsg));
37     }
38     
39     /**
40      * Constructs the behavior.
41      * @param aMsgModel Confirmation message. 
42      */
43     public OnClickConfirmationBehavior(IModel<?> aMsgModel) {
44         super(ATTRIBUTE, true, aMsgModel);
45     }
46
47     @Override
48     protected String newValue(String aCurrentValue, String aReplacementValue) {
49         String value = "var conf = confirm('" + aReplacementValue + "'); " +
50             "if (!conf) return false; ";
51         if (aCurrentValue != null) {
52             return value + aCurrentValue;
53         }
54         return value;
55     }
56
57 }