Coverage Report - org.kuali.student.common.ui.client.configurable.mvc.binding.RichTextBinding
 
Classes in this File Line Coverage Branch Coverage Complexity
RichTextBinding
0%
0/28
0%
0/8
2.333
 
 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 org.kuali.student.common.ui.client.mvc.DataModel;
 19  
 import org.kuali.student.common.ui.client.widgets.RichTextEditor;
 20  
 import org.kuali.student.core.assembly.data.QueryPath;
 21  
 
 22  0
 public class RichTextBinding extends ModelWidgetBindingSupport<RichTextEditor> {
 23  0
     public static RichTextBinding INSTANCE = new RichTextBinding();
 24  
 
 25  0
     private RichTextBinding() {}
 26  
 
 27  
     @Override
 28  
     public void setModelValue(RichTextEditor object, DataModel model, String path) {
 29  0
         String richTextRoot = path + QueryPath.getPathSeparator();
 30  
 
 31  0
         QueryPath qPath = QueryPath.parse(richTextRoot + "plain");
 32  
 
 33  0
         String oldValue = model.get(qPath);
 34  0
         String newValue = object.getText();
 35  
 
 36  0
         if (!nullsafeEquals(oldValue, newValue)) {
 37  0
             model.set(qPath, newValue);
 38  0
             setDirtyFlag(model, qPath);
 39  
         }
 40  
 
 41  0
         qPath = QueryPath.parse(richTextRoot + "formatted");
 42  
 
 43  0
         oldValue = model.get(qPath);
 44  0
         newValue = object.getHTML();
 45  
 
 46  0
         if (!nullsafeEquals(oldValue, newValue)) {
 47  0
             model.set(qPath, newValue);
 48  0
             setDirtyFlag(model, qPath);
 49  
         }
 50  
 
 51  
         // TODO: Should these defaults be set in server assembly defaults?
 52  
         // Commenting type and state as it is not required for rich text
 53  
         // qPath = QueryPath.parse(richTextRoot + "type");
 54  
         // model.set(qPath, "kuali.not.applicable");
 55  
         //        
 56  
         // qPath = QueryPath.parse(richTextRoot + "state");
 57  
         // model.set(qPath, "(n/a)");
 58  0
     }
 59  
 
 60  
     @Override
 61  
     public void setWidgetValue(RichTextEditor object, DataModel model, String path) {
 62  0
         String richTextRoot = path + QueryPath.getPathSeparator();
 63  
 
 64  0
         QueryPath qPath = QueryPath.parse(richTextRoot + "plain");
 65  0
         String formatted = model.get(qPath);
 66  
 
 67  0
         qPath = QueryPath.parse(richTextRoot + "formatted");
 68  0
         String plain = model.get(qPath);
 69  
 
 70  0
         if (formatted != null) {
 71  0
             object.setHTML(formatted);
 72  0
         } else if (plain != null) {
 73  0
             object.setText(plain);
 74  
         } else {
 75  0
             object.setHTML("");
 76  
         }
 77  0
     }
 78  
 
 79  
 }