Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ScriptUtils |
|
| 14.0;14 |
1 | /** | |
2 | * Copyright 2005-2011 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php | |
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.kuali.rice.krad.uif.util; | |
17 | ||
18 | import org.apache.commons.lang.StringUtils; | |
19 | import org.kuali.rice.core.api.util.type.TypeUtils; | |
20 | ||
21 | import java.util.List; | |
22 | import java.util.Map; | |
23 | import java.util.Set; | |
24 | ||
25 | /** | |
26 | * Utility class for generating JavaScript | |
27 | * | |
28 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
29 | */ | |
30 | 0 | public class ScriptUtils { |
31 | ||
32 | /** | |
33 | * Translates an Object to a String for representing the given Object as | |
34 | * a JavaScript value | |
35 | * | |
36 | * <p> | |
37 | * Handles null, List, Map, and Set collections, along with non quoting for numeric and | |
38 | * boolean types. Complex types are treated as a String value using toString | |
39 | * </p> | |
40 | * | |
41 | * @param value - Object instance to translate | |
42 | * @return String JS value | |
43 | */ | |
44 | public static String translateValue(Object value) { | |
45 | 0 | String jsValue = ""; |
46 | ||
47 | 0 | if (value == null) { |
48 | 0 | jsValue = "null"; |
49 | 0 | return jsValue; |
50 | } | |
51 | ||
52 | 0 | if (value instanceof List) { |
53 | 0 | jsValue = "["; |
54 | ||
55 | 0 | List<Object> list = (List<Object>) value; |
56 | 0 | for (Object listItem : list) { |
57 | 0 | jsValue += translateValue(listItem); |
58 | 0 | jsValue += ","; |
59 | } | |
60 | 0 | jsValue = StringUtils.removeEnd(jsValue, ","); |
61 | ||
62 | 0 | jsValue += "]"; |
63 | 0 | } else if (value instanceof Set) { |
64 | 0 | jsValue = "["; |
65 | ||
66 | 0 | Set<Object> set = (Set<Object>) value; |
67 | 0 | for (Object setItem : set) { |
68 | 0 | jsValue += translateValue(setItem); |
69 | 0 | jsValue += ","; |
70 | } | |
71 | 0 | jsValue = StringUtils.removeEnd(jsValue, ","); |
72 | ||
73 | 0 | jsValue += "]"; |
74 | 0 | } else if (value instanceof Map) { |
75 | 0 | jsValue = "{"; |
76 | ||
77 | 0 | Map<Object, Object> map = (Map<Object, Object>) value; |
78 | 0 | for (Map.Entry<Object, Object> mapEntry : map.entrySet()) { |
79 | 0 | jsValue += mapEntry.getKey().toString() + ":"; |
80 | 0 | jsValue += translateValue(mapEntry.getValue()); |
81 | 0 | jsValue += ","; |
82 | } | |
83 | 0 | jsValue = StringUtils.removeEnd(jsValue, ","); |
84 | ||
85 | 0 | jsValue += "}"; |
86 | 0 | } else { |
87 | 0 | boolean quoteValue = true; |
88 | ||
89 | 0 | Class<?> valueClass = value.getClass(); |
90 | 0 | if (TypeUtils.isBooleanClass(valueClass) || TypeUtils.isDecimalClass(valueClass) || TypeUtils |
91 | .isIntegralClass(valueClass)) { | |
92 | 0 | quoteValue = false; |
93 | } | |
94 | ||
95 | 0 | if (quoteValue) { |
96 | 0 | jsValue = "\""; |
97 | } | |
98 | ||
99 | // TODO: should this go through property editors? | |
100 | 0 | jsValue += value.toString(); |
101 | ||
102 | 0 | if (quoteValue) { |
103 | 0 | jsValue += "\""; |
104 | } | |
105 | } | |
106 | ||
107 | 0 | return jsValue; |
108 | } | |
109 | } |