View Javadoc

1   /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.student.common.ui.client.configurable.mvc.binding;
17  
18  import java.util.Date;
19  
20  import org.kuali.student.common.ui.client.mvc.DataModel;
21  import org.kuali.student.common.ui.client.validator.ClientDateParser;
22  import org.kuali.student.core.assembly.data.QueryPath;
23  import org.kuali.student.core.assembly.data.Data.DataType;
24  
25  import com.google.gwt.core.client.GWT;
26  import com.google.gwt.user.client.ui.HasText;
27  
28  public class HasTextBinding extends ModelWidgetBindingSupport<HasText> {
29      public static HasTextBinding INSTANCE = new HasTextBinding();
30  
31      private ClientDateParser dateParser = new ClientDateParser();
32  
33      private HasTextBinding() {}
34  
35      @Override
36      public void setModelValue(HasText object, DataModel model, String path) {
37          try {
38              QueryPath qPath = QueryPath.parse(path);
39              DataType type = model.getType(qPath);
40              String newValue = object.getText().trim();
41  
42              try {
43                  switch (type) {
44                      case STRING:
45                          if (!nullsafeEquals(model.get(qPath), newValue)) {
46                              model.set(qPath, newValue);
47                              setDirtyFlag(model, qPath);
48                          }
49                          break;
50                      case INTEGER:
51                  		if(newValue != null && newValue.isEmpty()){
52                  			Integer value = null;
53                  			model.set(qPath, value);
54                  			setDirtyFlag(model, qPath);
55                  		}
56                  		else{
57                              int intValue = Integer.parseInt(newValue);
58                              if (!nullsafeEquals(model.get(qPath), intValue)) {
59                                  model.set(qPath, intValue);
60                                  setDirtyFlag(model, qPath);
61                              }
62                  		}
63                          break;
64                      case LONG:
65                          long longValue = Long.parseLong(newValue);
66                          if (!nullsafeEquals(model.get(qPath), longValue)) {
67                              model.set(qPath, longValue);
68                              setDirtyFlag(model, qPath);
69                          }
70                          break;
71                      case FLOAT:
72                          float floatValue = Float.parseFloat(newValue);
73                          if (!nullsafeEquals(model.get(qPath), floatValue)) {
74                              model.set(qPath, floatValue);
75                              setDirtyFlag(model, qPath);
76                          }
77                          break;
78                      case DOUBLE:
79                          double doubleValue = Double.parseDouble(newValue);
80                          if (!nullsafeEquals(model.get(qPath), doubleValue)) {
81                              model.set(qPath, doubleValue);
82                              setDirtyFlag(model, qPath);
83                          }
84                          break;
85                      case BOOLEAN:
86                          if (newValue.equalsIgnoreCase("true") || newValue.equalsIgnoreCase("false")) {
87                              boolean booleanValue = Boolean.parseBoolean(newValue);
88                              if (!nullsafeEquals(model.get(qPath), booleanValue)) {
89                                  model.set(qPath, booleanValue);
90                                  setDirtyFlag(model, qPath);
91                              }
92                          } else {
93                              throw new UnsupportedOperationException("BooleanTypes can only be set with true or false");
94                          }
95                          break;
96                      case DATE:
97                          Date dateValue = dateParser.parseDate(newValue);
98                          if (!nullsafeEquals(model.get(qPath), dateValue)) {
99                              model.set(qPath, dateValue);
100                             setDirtyFlag(model, qPath);
101                         }
102                         break;
103                 }
104             } catch (Exception e) {
105                 GWT.log("Unable to coerce type for " + path + ", falling back to String", e);
106                 model.set(qPath, newValue);
107             }
108         } catch (Exception e) {
109             GWT.log("Error setting model value for: " + path, e);
110         }
111     }
112 
113     @Override
114     public void setWidgetValue(HasText object, DataModel model, String path) {
115         try {
116             QueryPath qPath = QueryPath.parse(path);
117             
118             Object value = null;
119             if(model!=null){
120             	value = model.get(qPath);
121             }
122 
123             if (value != null && object != null) {
124                 if (value instanceof Date) {
125                     object.setText(dateParser.toString((Date) value));
126                 } else {
127                     object.setText(value.toString());
128                 }
129             } else if (value == null && object != null) {
130                 object.setText("");
131             }
132         } catch (Exception e) {
133             GWT.log("Error setting widget value for: " + path, e);
134         }
135     }
136 
137 }