1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.container;
17
18 import java.io.Serializable;
19 import java.util.ArrayList;
20 import java.util.Collection;
21 import java.util.HashMap;
22 import java.util.List;
23 import java.util.Map;
24
25 import org.apache.commons.collections.ListUtils;
26 import org.apache.commons.lang.StringUtils;
27 import org.apache.commons.logging.Log;
28 import org.apache.commons.logging.LogFactory;
29 import org.kuali.rice.core.api.mo.common.active.Inactivatable;
30 import org.kuali.rice.krad.uif.UifConstants;
31 import org.kuali.rice.krad.uif.UifParameters;
32 import org.kuali.rice.krad.uif.UifPropertyPaths;
33 import org.kuali.rice.krad.uif.component.Component;
34 import org.kuali.rice.krad.uif.container.collections.LineBuilderContext;
35 import org.kuali.rice.krad.uif.element.Action;
36 import org.kuali.rice.krad.uif.lifecycle.ViewLifecycle;
37 import org.kuali.rice.krad.uif.lifecycle.ViewLifecycleUtils;
38 import org.kuali.rice.krad.uif.util.ComponentUtils;
39 import org.kuali.rice.krad.uif.util.ContextUtils;
40 import org.kuali.rice.krad.uif.util.ObjectPropertyUtils;
41 import org.kuali.rice.krad.uif.util.ScriptUtils;
42 import org.kuali.rice.krad.uif.view.ExpressionEvaluator;
43 import org.kuali.rice.krad.uif.view.FormView;
44 import org.kuali.rice.krad.uif.view.View;
45 import org.kuali.rice.krad.uif.view.ViewModel;
46 import org.kuali.rice.krad.util.KRADUtils;
47 import org.kuali.rice.krad.web.form.UifFormBase;
48
49
50
51
52
53
54
55
56 public class CollectionGroupBuilder implements Serializable {
57 private static final long serialVersionUID = -4762031957079895244L;
58 private static Log LOG = LogFactory.getLog(CollectionGroupBuilder.class);
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78 public void build(View view, Object model, CollectionGroup collectionGroup) {
79
80 if (collectionGroup.isRenderAddLine() && !Boolean.TRUE.equals(collectionGroup.getReadOnly()) &&
81 !collectionGroup.isRenderAddBlankLineButton()) {
82 buildAddLine(view, model, collectionGroup);
83 }
84
85
86 if (collectionGroup.isRenderAddBlankLineButton() && (collectionGroup.getAddBlankLineAction() != null)) {
87 collectionGroup.getAddBlankLineAction().setRefreshId(collectionGroup.getId());
88 }
89
90
91 List<Object> modelCollection = ObjectPropertyUtils.getPropertyValue(model,
92 collectionGroup.getBindingInfo().getBindingPath());
93
94 if (modelCollection == null) {
95 return;
96 }
97
98
99 List<Integer> showIndexes = performCollectionFiltering(view, model, collectionGroup, modelCollection);
100
101 if (collectionGroup.getDisplayCollectionSize() != -1 && showIndexes.size() > collectionGroup
102 .getDisplayCollectionSize()) {
103
104 List<Integer> newShowIndexes = new ArrayList<Integer>();
105 Integer counter = 0;
106
107 for (int index = 0; index < showIndexes.size(); index++) {
108 newShowIndexes.add(showIndexes.get(index));
109
110 counter++;
111
112 if (counter == collectionGroup.getDisplayCollectionSize()) {
113 break;
114 }
115 }
116
117 showIndexes = newShowIndexes;
118 }
119
120
121 List<IndexedElement> filteredIndexedElements = buildFilteredIndexedCollection(showIndexes, modelCollection);
122 collectionGroup.setFilteredCollectionSize(filteredIndexedElements.size());
123
124 buildLinesForDisplayedRows(filteredIndexedElements, view, model, collectionGroup);
125 }
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142 private List<IndexedElement> buildFilteredIndexedCollection(List<Integer> showIndexes,
143 List<Object> modelCollection) {
144
145 List<IndexedElement> filteredIndexedElements = new ArrayList<IndexedElement>(modelCollection.size());
146
147 for (Integer showIndex : showIndexes) {
148 filteredIndexedElements.add(new IndexedElement(showIndex, modelCollection.get(showIndex)));
149 }
150
151 return filteredIndexedElements;
152 }
153
154
155
156
157
158
159
160
161
162 protected void buildLinesForDisplayedRows(List<IndexedElement> filteredIndexedElements, View view, Object model,
163 CollectionGroup collectionGroup) {
164
165
166
167 if (collectionGroup.isUseServerPaging() && collectionGroup.getDisplayLength() == -1) {
168 collectionGroup.setDisplayLength(1);
169 }
170
171 int displayStart = (collectionGroup.getDisplayStart() != -1 && collectionGroup.isUseServerPaging()) ?
172 collectionGroup.getDisplayStart() : 0;
173
174 int displayLength = (collectionGroup.getDisplayLength() != -1 && collectionGroup.isUseServerPaging()) ?
175 collectionGroup.getDisplayLength() : filteredIndexedElements.size() - displayStart;
176
177
178 int displayEndExclusive =
179 (displayStart + displayLength > filteredIndexedElements.size()) ? filteredIndexedElements.size() :
180 displayStart + displayLength;
181
182
183 List<IndexedElement> renderedIndexedElements = filteredIndexedElements.subList(displayStart,
184 displayEndExclusive);
185
186
187 for (IndexedElement indexedElement : renderedIndexedElements) {
188 Object currentLine = indexedElement.element;
189
190 String bindingPathPrefix =
191 collectionGroup.getBindingInfo().getBindingPrefixForNested() + "[" + indexedElement.index + "]";
192
193 List<? extends Component> lineActions = initializeLineActions(collectionGroup.getLineActions(), view, model,
194 collectionGroup, currentLine, indexedElement.index);
195
196 LineBuilderContext lineBuilderContext = new LineBuilderContext(indexedElement.index, currentLine,
197 bindingPathPrefix, false, (ViewModel) model, collectionGroup, lineActions);
198
199 getCollectionGroupLineBuilder(lineBuilderContext).buildLine();
200 }
201 }
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216 protected List<Integer> performCollectionFiltering(View view, Object model, CollectionGroup collectionGroup,
217 Collection<?> collection) {
218 List<Integer> filteredIndexes = new ArrayList<Integer>();
219 for (int i = 0; i < collection.size(); i++) {
220 filteredIndexes.add(Integer.valueOf(i));
221 }
222
223 if (Inactivatable.class.isAssignableFrom(collectionGroup.getCollectionObjectClass()) && !collectionGroup
224 .isShowInactiveLines()) {
225 List<Integer> activeIndexes = collectionGroup.getActiveCollectionFilter().filter(view, model,
226 collectionGroup);
227 filteredIndexes = ListUtils.intersection(filteredIndexes, activeIndexes);
228 }
229
230 for (CollectionFilter collectionFilter : collectionGroup.getFilters()) {
231 List<Integer> indexes = collectionFilter.filter(view, model, collectionGroup);
232 filteredIndexes = ListUtils.intersection(filteredIndexes, indexes);
233 if (filteredIndexes.isEmpty()) {
234 break;
235 }
236 }
237
238 return filteredIndexes;
239 }
240
241
242
243
244
245
246
247
248
249
250 protected void buildAddLine(View view, Object model, CollectionGroup collectionGroup) {
251
252 initializeNewCollectionLine(view, model, collectionGroup, false);
253
254 String addLineBindingPath = collectionGroup.getAddLineBindingInfo().getBindingPath();
255 List<? extends Component> actionComponents = getAddLineActionComponents(view, model, collectionGroup);
256
257 Object addLine = ObjectPropertyUtils.getPropertyValue(model, addLineBindingPath);
258
259 boolean bindToForm = false;
260 if (StringUtils.isBlank(collectionGroup.getAddLinePropertyName())) {
261 bindToForm = true;
262 }
263
264 LineBuilderContext lineBuilderContext = new LineBuilderContext(-1, addLine, addLineBindingPath, bindToForm,
265 (ViewModel) model, collectionGroup, actionComponents);
266
267 getCollectionGroupLineBuilder(lineBuilderContext).buildLine();
268 }
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283 protected List<? extends Component> initializeLineActions(List<? extends Component> lineActions, View view,
284 Object model, CollectionGroup collectionGroup, Object collectionLine, int lineIndex) {
285 List<? extends Component> actionComponents = ComponentUtils.copy(lineActions);
286
287 for (Component actionComponent : actionComponents) {
288 view.getViewHelperService().setElementContext(actionComponent, collectionGroup);
289 }
290
291 String lineSuffix = UifConstants.IdSuffixes.LINE + Integer.toString(lineIndex);
292 ContextUtils.updateContextsForLine(actionComponents, collectionGroup, collectionLine, lineIndex, lineSuffix);
293
294 ExpressionEvaluator expressionEvaluator = ViewLifecycle.getExpressionEvaluator();
295 for (Component actionComponent : actionComponents) {
296 expressionEvaluator.evaluatePropertyExpression(view, actionComponent.getContext(), actionComponent,
297 UifPropertyPaths.ID, true);
298 }
299
300 ComponentUtils.updateIdsWithSuffixNested(actionComponents, lineSuffix);
301
302 List<Action> actions = ViewLifecycleUtils.getElementsOfTypeDeep(actionComponents, Action.class);
303 initializeActions(actions, collectionGroup, lineIndex);
304
305 return actionComponents;
306 }
307
308
309
310
311
312
313
314
315
316 public void initializeActions(List<Action> actions, CollectionGroup collectionGroup, int lineIndex) {
317 for (Action action : actions) {
318 if (ComponentUtils.containsPropertyExpression(action, UifPropertyPaths.ACTION_PARAMETERS, true)) {
319
320 action.getPropertyExpressions().put(
321 UifPropertyPaths.ACTION_PARAMETERS + "['" + UifParameters.SELECTED_COLLECTION_PATH + "']",
322 UifConstants.EL_PLACEHOLDER_PREFIX + "'" + collectionGroup.getBindingInfo().getBindingPath() +
323 "'" + UifConstants.EL_PLACEHOLDER_SUFFIX);
324 action.getPropertyExpressions().put(
325 UifPropertyPaths.ACTION_PARAMETERS + "['" + UifParameters.SELECTED_COLLECTION_ID + "']",
326 UifConstants.EL_PLACEHOLDER_PREFIX + "'" + collectionGroup.getId() +
327 "'" + UifConstants.EL_PLACEHOLDER_SUFFIX);
328 action.getPropertyExpressions().put(
329 UifPropertyPaths.ACTION_PARAMETERS + "['" + UifParameters.SELECTED_LINE_INDEX + "']",
330 UifConstants.EL_PLACEHOLDER_PREFIX + "'" + Integer.toString(lineIndex) +
331 "'" + UifConstants.EL_PLACEHOLDER_SUFFIX);
332 } else {
333 action.addActionParameter(UifParameters.SELECTED_COLLECTION_PATH,
334 collectionGroup.getBindingInfo().getBindingPath());
335 action.addActionParameter(UifParameters.SELECTED_COLLECTION_ID,
336 collectionGroup.getId());
337 action.addActionParameter(UifParameters.SELECTED_LINE_INDEX, Integer.toString(lineIndex));
338 }
339
340 if (StringUtils.isBlank(action.getRefreshId()) && StringUtils.isBlank(action.getRefreshPropertyName())) {
341 action.setRefreshId(collectionGroup.getId());
342 }
343
344
345
346 if (action.isPerformClientSideValidation()) {
347 String preSubmitScript = "var valid=" + UifConstants.JsFunctions.VALIDATE_LINE + "('" +
348 collectionGroup.getBindingInfo().getBindingPath() + "'," + Integer.toString(lineIndex) +
349 ");";
350
351
352 if (StringUtils.isNotBlank(action.getPreSubmitCall())) {
353 preSubmitScript = ScriptUtils.appendScript(preSubmitScript,
354 "if(valid){valid=function(){" + action.getPreSubmitCall() + "}();}");
355 }
356
357 preSubmitScript += " return valid;";
358
359 action.setPreSubmitCall(preSubmitScript);
360 action.setPerformClientSideValidation(false);
361 }
362 }
363 }
364
365
366
367
368
369
370
371
372
373
374
375
376
377 protected List<? extends Component> getAddLineActionComponents(View view, Object model,
378 CollectionGroup collectionGroup) {
379 String lineSuffix = UifConstants.IdSuffixes.ADD_LINE;
380
381
382 List<? extends Component> lineActionComponents = ComponentUtils.copyComponentList(
383 collectionGroup.getAddLineActions(), lineSuffix);
384
385 List<Action> actions = ViewLifecycleUtils.getElementsOfTypeDeep(lineActionComponents, Action.class);
386
387 if (collectionGroup.isAddWithDialog() && (collectionGroup.getAddLineDialog().getFooter() != null) &&
388 !collectionGroup.getAddLineDialog().getFooter().getItems().isEmpty()) {
389 List<Action> addLineDialogActions = ViewLifecycleUtils.getElementsOfTypeDeep(
390 collectionGroup.getAddLineDialog().getFooter().getItems(), Action.class);
391
392 if (addLineDialogActions != null) {
393 actions.addAll(addLineDialogActions);
394 }
395 }
396
397 for (Action action : actions) {
398 action.addActionParameter(UifParameters.SELECTED_COLLECTION_PATH,
399 collectionGroup.getBindingInfo().getBindingPath());
400 action.addActionParameter(UifParameters.SELECTED_COLLECTION_ID,
401 collectionGroup.getId());
402 action.setJumpToIdAfterSubmit(collectionGroup.getId());
403 action.addActionParameter(UifParameters.ACTION_TYPE, UifParameters.ADD_LINE);
404 action.setRefreshId(collectionGroup.getId());
405
406 if (collectionGroup.isAddWithDialog() && view instanceof FormView && ((FormView) view).isValidateClientSide()) {
407 action.setPerformClientSideValidation(true);
408 }
409
410 if (action.isPerformClientSideValidation()) {
411 String preSubmitScript = "var valid=" + UifConstants.JsFunctions.VALIDATE_ADD_LINE + "('" +
412 collectionGroup.getId() + "');";
413
414
415 if (StringUtils.isNotBlank(action.getPreSubmitCall())) {
416 preSubmitScript = ScriptUtils.appendScript(preSubmitScript,
417 "if(valid){valid=function(){" + action.getPreSubmitCall() + "}();}");
418 }
419
420 preSubmitScript += "return valid;";
421
422 action.setPreSubmitCall(preSubmitScript);
423 action.setPerformClientSideValidation(false);
424 } else if (collectionGroup.isAddWithDialog()) {
425 action.setPreSubmitCall("closeLightbox(); return true;");
426 }
427 }
428
429
430 String addLinePath = collectionGroup.getAddLineBindingInfo().getBindingPath();
431 Object addLine = ObjectPropertyUtils.getPropertyValue(model, addLinePath);
432
433 ContextUtils.updateContextsForLine(lineActionComponents, collectionGroup, addLine, -1, lineSuffix);
434
435 return lineActionComponents;
436 }
437
438
439
440
441
442
443
444
445
446
447
448 public void initializeNewCollectionLine(View view, Object model, CollectionGroup collectionGroup,
449 boolean clearExistingLine) {
450 Object newLine = null;
451
452
453 if (StringUtils.isBlank(collectionGroup.getAddLinePropertyName())) {
454
455 if (!(model instanceof UifFormBase)) {
456 throw new RuntimeException("Cannot create new collection line for group: "
457 + collectionGroup.getPropertyName()
458 + ". Model does not extend "
459 + UifFormBase.class.getName());
460 }
461
462
463 Map<String, Object> newCollectionLines = ObjectPropertyUtils.getPropertyValue(model,
464 UifPropertyPaths.NEW_COLLECTION_LINES);
465 if (newCollectionLines == null) {
466 newCollectionLines = new HashMap<String, Object>();
467 ObjectPropertyUtils.setPropertyValue(model, UifPropertyPaths.NEW_COLLECTION_LINES, newCollectionLines);
468 }
469
470
471 String newCollectionLineKey = KRADUtils.translateToMapSafeKey(
472 collectionGroup.getBindingInfo().getBindingPath());
473 String addLineBindingPath = UifPropertyPaths.NEW_COLLECTION_LINES + "['" + newCollectionLineKey + "']";
474 collectionGroup.getAddLineBindingInfo().setBindingPath(addLineBindingPath);
475
476
477 if (!newCollectionLines.containsKey(newCollectionLineKey) || (newCollectionLines.get(newCollectionLineKey)
478 == null) || clearExistingLine) {
479
480 newLine = KRADUtils.createNewObjectFromClass(collectionGroup.getCollectionObjectClass());
481 newCollectionLines.put(newCollectionLineKey, newLine);
482 }
483 } else {
484
485 Object addLine = ObjectPropertyUtils.getPropertyValue(model,
486 collectionGroup.getAddLineBindingInfo().getBindingPath());
487 if ((addLine == null) || clearExistingLine) {
488 newLine = KRADUtils.createNewObjectFromClass(collectionGroup.getCollectionObjectClass());
489 ObjectPropertyUtils.setPropertyValue(model, collectionGroup.getAddLineBindingInfo().getBindingPath(),
490 newLine);
491 }
492 }
493
494
495 if (newLine != null) {
496 ViewLifecycle.getHelper().applyDefaultValuesForCollectionLine(collectionGroup, newLine);
497 }
498 }
499
500
501
502
503
504
505
506 public CollectionGroupLineBuilder getCollectionGroupLineBuilder(LineBuilderContext lineBuilderContext) {
507 return new CollectionGroupLineBuilder(lineBuilderContext);
508 }
509
510
511
512
513 private static class IndexedElement {
514
515
516
517
518 final int index;
519
520
521
522
523 final Object element;
524
525
526
527
528
529
530
531 private IndexedElement(int index, Object element) {
532 this.index = index;
533 this.element = element;
534 }
535 }
536
537 }