1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.widget;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.krad.bo.DataObjectRelationship;
20 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
21 import org.kuali.rice.krad.uif.UifParameters;
22 import org.kuali.rice.krad.uif.container.CollectionGroup;
23 import org.kuali.rice.krad.uif.element.Action;
24 import org.kuali.rice.krad.uif.field.InputField;
25 import org.kuali.rice.krad.uif.view.View;
26 import org.kuali.rice.krad.uif.component.BindingInfo;
27 import org.kuali.rice.krad.uif.component.Component;
28 import org.kuali.rice.krad.uif.util.ViewModelUtils;
29 import org.kuali.rice.krad.util.KRADUtils;
30
31 import java.util.HashMap;
32 import java.util.List;
33 import java.util.Map;
34
35
36
37
38
39
40 public class QuickFinder extends WidgetBase {
41 private static final long serialVersionUID = 3302390972815386785L;
42
43
44 private String baseLookupUrl;
45 private String dataObjectClassName;
46 private String viewName;
47
48 private String referencesToRefresh;
49
50 private Map<String, String> fieldConversions;
51 private Map<String, String> lookupParameters;
52
53
54 private String readOnlySearchFields;
55
56 private Boolean hideReturnLink;
57 private Boolean suppressActions;
58 private Boolean autoSearch;
59 private Boolean lookupCriteriaEnabled;
60 private Boolean supplementalActionsEnabled;
61 private Boolean disableSearchButtons;
62 private Boolean headerBarEnabled;
63 private Boolean showMaintenanceLinks;
64
65 private Boolean multipleValuesSelect;
66 private String lookupCollectionName;
67
68 private Action quickfinderAction;
69 private LightBox lightBoxLookup;
70
71 public QuickFinder() {
72 super();
73
74 fieldConversions = new HashMap<String, String>();
75 lookupParameters = new HashMap<String, String>();
76 }
77
78
79
80
81
82
83
84
85
86
87
88 @Override
89 public void performInitialization(View view, Object model) {
90 super.performInitialization(view, model);
91
92 if (quickfinderAction != null) {
93 quickfinderAction.setActionScript("voidAction");
94 }
95 }
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117 @Override
118 public void performFinalize(View view, Object model, Component parent) {
119 super.performFinalize(view, model, parent);
120
121 if (!isRender()) {
122 return;
123 }
124
125 if (parent instanceof InputField) {
126 InputField field = (InputField) parent;
127
128
129
130 if (StringUtils.isBlank(dataObjectClassName)) {
131 DataObjectRelationship relationship = getRelationshipForField(view, model, field);
132
133
134 if (relationship == null) {
135 setRender(false);
136 return;
137 }
138
139 dataObjectClassName = relationship.getRelatedClass().getName();
140
141 if ((fieldConversions == null) || fieldConversions.isEmpty()) {
142 generateFieldConversions(field, relationship);
143 }
144
145 if ((lookupParameters == null) || lookupParameters.isEmpty()) {
146 generateLookupParameters(field, relationship);
147 }
148 }
149
150
151 updateFieldConversions(field.getBindingInfo());
152 updateLookupParameters(field.getBindingInfo());
153 } else if (parent instanceof CollectionGroup) {
154 CollectionGroup collectionGroup = (CollectionGroup) parent;
155
156
157
158 if (StringUtils.isBlank(getDataObjectClassName())) {
159 Class<?> collectionObjectClass = collectionGroup.getCollectionObjectClass();
160 boolean isCollectionClassLookupable = KRADServiceLocatorWeb.getViewDictionaryService().isLookupable(
161 collectionObjectClass);
162 if (isCollectionClassLookupable) {
163 setDataObjectClassName(collectionObjectClass.getName());
164
165 if ((fieldConversions == null) || fieldConversions.isEmpty()) {
166
167 List<String> collectionObjectPKFields =
168 KRADServiceLocatorWeb.getDataObjectMetaDataService().listPrimaryKeyFieldNames(
169 collectionObjectClass);
170
171 for (String pkField : collectionObjectPKFields) {
172 fieldConversions.put(pkField, pkField);
173 }
174 }
175 } else {
176
177 setRender(false);
178 }
179 }
180
181
182 if (isRender() && StringUtils.isBlank(getLookupCollectionName())) {
183 setLookupCollectionName(collectionGroup.getBindingInfo().getBindingPath());
184 }
185 }
186
187 quickfinderAction.addActionParameter(UifParameters.BASE_LOOKUP_URL, baseLookupUrl);
188 quickfinderAction.addActionParameter(UifParameters.DATA_OBJECT_CLASS_NAME, dataObjectClassName);
189
190 if (!fieldConversions.isEmpty()) {
191 quickfinderAction.addActionParameter(UifParameters.CONVERSION_FIELDS, KRADUtils.buildMapParameterString(
192 fieldConversions));
193 }
194
195 if (!lookupParameters.isEmpty()) {
196 quickfinderAction.addActionParameter(UifParameters.LOOKUP_PARAMETERS, KRADUtils.buildMapParameterString(
197 lookupParameters));
198 }
199
200 addActionParameterIfNotNull(UifParameters.VIEW_NAME, viewName);
201 addActionParameterIfNotNull(UifParameters.READ_ONLY_FIELDS, readOnlySearchFields);
202 addActionParameterIfNotNull(UifParameters.HIDE_RETURN_LINK, hideReturnLink);
203 addActionParameterIfNotNull(UifParameters.SUPRESS_ACTIONS, suppressActions);
204 addActionParameterIfNotNull(UifParameters.REFERENCES_TO_REFRESH, referencesToRefresh);
205 addActionParameterIfNotNull(UifParameters.AUTO_SEARCH, autoSearch);
206 addActionParameterIfNotNull(UifParameters.LOOKUP_CRITERIA_ENABLED, lookupCriteriaEnabled);
207 addActionParameterIfNotNull(UifParameters.SUPPLEMENTAL_ACTIONS_ENABLED, supplementalActionsEnabled);
208 addActionParameterIfNotNull(UifParameters.DISABLE_SEARCH_BUTTONS, disableSearchButtons);
209 addActionParameterIfNotNull(UifParameters.HEADER_BAR_ENABLED, headerBarEnabled);
210 addActionParameterIfNotNull(UifParameters.SHOW_MAINTENANCE_LINKS, showMaintenanceLinks);
211 addActionParameterIfNotNull(UifParameters.MULTIPLE_VALUES_SELECT, multipleValuesSelect);
212 addActionParameterIfNotNull(UifParameters.LOOKUP_COLLECTION_NAME, lookupCollectionName);
213
214
215
216
217 }
218
219 protected void addActionParameterIfNotNull(String parameterName, Object parameterValue) {
220 if ((parameterValue != null) && StringUtils.isNotBlank(parameterValue.toString())) {
221 quickfinderAction.addActionParameter(parameterName, parameterValue.toString());
222 }
223 }
224
225 protected DataObjectRelationship getRelationshipForField(View view, Object model, InputField field) {
226 String propertyName = field.getBindingInfo().getBindingName();
227
228
229 Object parentObject = ViewModelUtils.getParentObjectForMetadata(view, model, field);
230 Class<?> parentObjectClass = null;
231 if (parentObject != null) {
232 parentObjectClass = parentObject.getClass();
233 }
234
235
236 return KRADServiceLocatorWeb.getDataObjectMetaDataService().getDataObjectRelationship(parentObject,
237 parentObjectClass, propertyName, "", true, true, false);
238 }
239
240 protected void generateFieldConversions(InputField field, DataObjectRelationship relationship) {
241 fieldConversions = new HashMap<String, String>();
242 for (Map.Entry<String, String> entry : relationship.getParentToChildReferences().entrySet()) {
243 String fromField = entry.getValue();
244 String toField = entry.getKey();
245
246
247
248
249
250 fieldConversions.put(fromField, toField);
251 }
252 }
253
254 protected void generateLookupParameters(InputField field, DataObjectRelationship relationship) {
255 lookupParameters = new HashMap<String, String>();
256 for (Map.Entry<String, String> entry : relationship.getParentToChildReferences().entrySet()) {
257 String fromField = entry.getKey();
258 String toField = entry.getValue();
259
260
261
262
263
264 if (relationship.getUserVisibleIdentifierKey() == null || relationship.getUserVisibleIdentifierKey().equals(
265 fromField)) {
266 lookupParameters.put(fromField, toField);
267 }
268 }
269 }
270
271
272
273
274
275
276
277 public void updateFieldConversions(BindingInfo bindingInfo) {
278 Map<String, String> adjustedFieldConversions = new HashMap<String, String>();
279 for (String fromField : fieldConversions.keySet()) {
280 String toField = fieldConversions.get(fromField);
281 String adjustedToFieldPath = bindingInfo.getPropertyAdjustedBindingPath(toField);
282
283 adjustedFieldConversions.put(fromField, adjustedToFieldPath);
284 }
285
286 this.fieldConversions = adjustedFieldConversions;
287 }
288
289
290
291
292
293
294
295 public void updateLookupParameters(BindingInfo bindingInfo) {
296 Map<String, String> adjustedLookupParameters = new HashMap<String, String>();
297 for (String fromField : lookupParameters.keySet()) {
298 String toField = lookupParameters.get(fromField);
299 String adjustedFromFieldPath = bindingInfo.getPropertyAdjustedBindingPath(fromField);
300
301 adjustedLookupParameters.put(adjustedFromFieldPath, toField);
302 }
303
304 this.lookupParameters = adjustedLookupParameters;
305 }
306
307
308
309
310 @Override
311 public List<Component> getComponentsForLifecycle() {
312 List<Component> components = super.getComponentsForLifecycle();
313
314 components.add(quickfinderAction);
315 components.add(lightBoxLookup);
316
317 return components;
318 }
319
320
321
322
323
324
325
326
327
328
329
330
331
332 public String getBaseLookupUrl() {
333 return this.baseLookupUrl;
334 }
335
336
337
338
339
340
341 public void setBaseLookupUrl(String baseLookupUrl) {
342 this.baseLookupUrl = baseLookupUrl;
343 }
344
345
346
347
348
349
350
351
352
353
354
355
356 public String getDataObjectClassName() {
357 return this.dataObjectClassName;
358 }
359
360
361
362
363
364
365 public void setDataObjectClassName(String dataObjectClassName) {
366 this.dataObjectClassName = dataObjectClassName;
367 }
368
369
370
371
372
373
374
375
376
377
378
379
380 public String getViewName() {
381 return this.viewName;
382 }
383
384
385
386
387
388
389 public void setViewName(String viewName) {
390 this.viewName = viewName;
391 }
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410 public String getReferencesToRefresh() {
411 return this.referencesToRefresh;
412 }
413
414
415
416
417
418
419 public void setReferencesToRefresh(String referencesToRefresh) {
420 this.referencesToRefresh = referencesToRefresh;
421 }
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445 public Map<String, String> getFieldConversions() {
446 return this.fieldConversions;
447 }
448
449
450
451
452
453
454
455 public void setFieldConversions(Map<String, String> fieldConversions) {
456 this.fieldConversions = fieldConversions;
457 }
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473 public Map<String, String> getLookupParameters() {
474 return this.lookupParameters;
475 }
476
477
478
479
480
481
482
483 public void setLookupParameters(Map<String, String> lookupParameters) {
484 this.lookupParameters = lookupParameters;
485 }
486
487
488
489
490
491
492
493
494
495
496
497
498
499 public String getReadOnlySearchFields() {
500 return this.readOnlySearchFields;
501 }
502
503
504
505
506
507
508
509 public void setReadOnlySearchFields(String readOnlySearchFields) {
510 this.readOnlySearchFields = readOnlySearchFields;
511 }
512
513
514
515
516
517
518
519
520
521
522
523
524 public Boolean getHideReturnLink() {
525 return this.hideReturnLink;
526 }
527
528
529
530
531
532
533 public void setHideReturnLink(Boolean hideReturnLink) {
534 this.hideReturnLink = hideReturnLink;
535 }
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554 public Boolean getSuppressActions() {
555 return suppressActions;
556 }
557
558
559
560
561
562
563 public void setSuppressActions(Boolean suppressActions) {
564 this.suppressActions = suppressActions;
565 }
566
567
568
569
570
571
572
573
574
575
576
577
578 public Boolean getAutoSearch() {
579 return this.autoSearch;
580 }
581
582
583
584
585
586
587 public void setAutoSearch(Boolean autoSearch) {
588 this.autoSearch = autoSearch;
589 }
590
591
592
593
594
595
596
597
598
599
600
601 public Boolean getLookupCriteriaEnabled() {
602 return this.lookupCriteriaEnabled;
603 }
604
605
606
607
608
609
610 public void setLookupCriteriaEnabled(Boolean lookupCriteriaEnabled) {
611 this.lookupCriteriaEnabled = lookupCriteriaEnabled;
612 }
613
614
615
616
617
618
619 public Boolean getSupplementalActionsEnabled() {
620 return this.supplementalActionsEnabled;
621 }
622
623 public void setSupplementalActionsEnabled(Boolean supplementalActionsEnabled) {
624 this.supplementalActionsEnabled = supplementalActionsEnabled;
625 }
626
627
628
629
630
631
632 public Boolean getDisableSearchButtons() {
633 return this.disableSearchButtons;
634 }
635
636 public void setDisableSearchButtons(Boolean disableSearchButtons) {
637 this.disableSearchButtons = disableSearchButtons;
638 }
639
640
641
642
643
644
645 public Boolean getHeaderBarEnabled() {
646 return this.headerBarEnabled;
647 }
648
649 public void setHeaderBarEnabled(Boolean headerBarEnabled) {
650 this.headerBarEnabled = headerBarEnabled;
651 }
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668 public Boolean getShowMaintenanceLinks() {
669 return this.showMaintenanceLinks;
670 }
671
672
673
674
675
676
677 public void setShowMaintenanceLinks(Boolean showMaintenanceLinks) {
678 this.showMaintenanceLinks = showMaintenanceLinks;
679 }
680
681
682
683
684
685
686
687
688
689
690
691
692 public Action getQuickfinderAction() {
693 return this.quickfinderAction;
694 }
695
696
697
698
699
700
701 public void setQuickfinderAction(Action quickfinderAction) {
702 this.quickfinderAction = quickfinderAction;
703 }
704
705
706
707
708
709
710 public void setLightBoxLookup(LightBox lightBoxLookup) {
711 this.lightBoxLookup = lightBoxLookup;
712 }
713
714
715
716
717
718
719
720
721
722
723
724 public LightBox getLightBoxLookup() {
725 return lightBoxLookup;
726 }
727
728
729
730
731
732
733 public Boolean getMultipleValuesSelect() {
734 return multipleValuesSelect;
735 }
736
737
738
739
740
741
742 public void setMultipleValuesSelect(Boolean multipleValuesSelect) {
743 this.multipleValuesSelect = multipleValuesSelect;
744 }
745
746
747
748
749
750
751
752
753
754
755
756
757 public String getLookupCollectionName() {
758 return lookupCollectionName;
759 }
760
761
762
763
764
765
766 public void setLookupCollectionName(String lookupCollectionName) {
767 this.lookupCollectionName = lookupCollectionName;
768 }
769 }