1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.element;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.core.api.exception.RiceRuntimeException;
20 import org.kuali.rice.krad.uif.UifConstants;
21 import org.kuali.rice.krad.uif.UifParameters;
22 import org.kuali.rice.krad.uif.UifPropertyPaths;
23 import org.kuali.rice.krad.uif.component.ComponentSecurity;
24 import org.kuali.rice.krad.uif.view.FormView;
25 import org.kuali.rice.krad.uif.view.View;
26 import org.kuali.rice.krad.uif.component.Component;
27
28 import java.util.HashMap;
29 import java.util.List;
30 import java.util.Map;
31
32
33
34
35
36
37
38 public class Action extends ContentElementBase {
39 private static final long serialVersionUID = 1025672792657238829L;
40
41 private String methodToCall;
42 private String actionEvent;
43 private String navigateToPageId;
44
45 private String actionScript;
46
47 private String actionLabel;
48 private Image actionImage;
49 private String actionImagePlacement;
50
51 private String jumpToIdAfterSubmit;
52 private String jumpToNameAfterSubmit;
53 private String focusOnIdAfterSubmit;
54
55 private boolean performClientSideValidation;
56 private boolean performDirtyValidation;
57
58 private boolean disabled;
59 private String disabledReason;
60
61 private String preSubmitCall;
62 private boolean ajaxSubmit;
63
64 private String successCallback;
65 private String errorCallback;
66
67 private String loadingMessageText;
68 private String updatingMessageText;
69
70 private Map<String, String> actionParameters;
71
72 public Action() {
73 super();
74
75 actionImagePlacement = UifConstants.Position.LEFT.name();
76
77 ajaxSubmit = true;
78 disabled = false;
79
80 successCallback = "";
81 errorCallback = "";
82 preSubmitCall = "";
83
84 actionParameters = new HashMap<String, String>();
85 }
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100 @Override
101 public void performFinalize(View view, Object model, Component parent) {
102 super.performFinalize(view, model, parent);
103
104
105 if (actionImage != null && StringUtils.isNotBlank(actionImagePlacement) && StringUtils.isNotBlank(
106 actionLabel)) {
107 actionImage.setAltText("");
108 }
109
110 if (!actionParameters.containsKey(UifConstants.UrlParams.ACTION_EVENT) && StringUtils.isNotBlank(actionEvent)) {
111 actionParameters.put(UifConstants.UrlParams.ACTION_EVENT, actionEvent);
112 }
113
114 if (StringUtils.isNotBlank(navigateToPageId)) {
115 actionParameters.put(UifParameters.NAVIGATE_TO_PAGE_ID, navigateToPageId);
116 if (StringUtils.isBlank(methodToCall)) {
117 actionParameters.put(UifConstants.CONTROLLER_METHOD_DISPATCH_PARAMETER_NAME,
118 UifConstants.MethodToCallNames.NAVIGATE);
119 }
120 }
121
122 if (!actionParameters.containsKey(UifConstants.CONTROLLER_METHOD_DISPATCH_PARAMETER_NAME) && StringUtils
123 .isNotBlank(methodToCall)) {
124 actionParameters.put(UifConstants.CONTROLLER_METHOD_DISPATCH_PARAMETER_NAME, methodToCall);
125 }
126
127 buildActionData(view, model, parent);
128
129
130 String onClickScript = this.getOnClickScript();
131 if (onClickScript == null) {
132 onClickScript = "";
133 }
134
135 if (StringUtils.isNotBlank(actionScript)) {
136 onClickScript += actionScript;
137 } else {
138 onClickScript += "actionInvokeHandler(this);";
139 }
140
141
142 if (view instanceof FormView) {
143 if (((FormView) view).isApplyDirtyCheck() && performDirtyValidation) {
144 onClickScript = "if (checkDirty(e) == false) { " + onClickScript + " ; } ";
145 }
146 }
147
148 setOnClickScript("e.preventDefault();" + onClickScript);
149 }
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164 protected void buildActionData(View view, Object model, Component parent) {
165
166 addDataAttribute("ajaxsubmit", Boolean.toString(ajaxSubmit));
167 addDataAttributeIfNonEmpty("successcallback", this.successCallback);
168 addDataAttributeIfNonEmpty("errorcallback", this.errorCallback);
169 addDataAttributeIfNonEmpty("presubmitcall", this.preSubmitCall);
170 addDataAttributeIfNonEmpty("loadingMessageText", this.loadingMessageText);
171 addDataAttributeIfNonEmpty("updatingMessageText", this.updatingMessageText);
172 addDataAttribute("validate", Boolean.toString(this.performClientSideValidation));
173
174
175 Map<String, String> submitData = new HashMap<String, String>();
176 for (String key : actionParameters.keySet()) {
177 String parameterPath = key;
178 if (!key.equals(UifConstants.CONTROLLER_METHOD_DISPATCH_PARAMETER_NAME)) {
179 parameterPath = UifPropertyPaths.ACTION_PARAMETERS + "[" + key + "]";
180 }
181 submitData.put(parameterPath, actionParameters.get(key));
182 }
183
184
185
186 submitData.put(UifConstants.UrlParams.SHOW_HISTORY, "false");
187 submitData.put(UifConstants.UrlParams.SHOW_HOME, "false");
188
189
190 if (StringUtils.isBlank(focusOnIdAfterSubmit)) {
191 focusOnIdAfterSubmit = this.getId();
192 submitData.put("focusId", focusOnIdAfterSubmit);
193 } else if (!focusOnIdAfterSubmit.equalsIgnoreCase(UifConstants.Order.FIRST.toString())) {
194
195 submitData.put("focusId", focusOnIdAfterSubmit);
196 }
197
198
199 if (StringUtils.isBlank(jumpToIdAfterSubmit) && StringUtils.isBlank(jumpToNameAfterSubmit)) {
200 jumpToIdAfterSubmit = this.getId();
201 submitData.put("jumpToId", jumpToIdAfterSubmit);
202 } else if (StringUtils.isNotBlank(jumpToIdAfterSubmit)) {
203 submitData.put("jumpToId", jumpToIdAfterSubmit);
204 } else {
205 submitData.put("jumpToName", jumpToNameAfterSubmit);
206 }
207
208 addDataAttribute("submitData", mapToString(submitData));
209 }
210
211
212
213
214 @Override
215 public List<Component> getComponentsForLifecycle() {
216 List<Component> components = super.getComponentsForLifecycle();
217
218 components.add(actionImage);
219
220 return components;
221 }
222
223 private String mapToString(Map<String, String> submitData) {
224 StringBuffer sb = new StringBuffer("{");
225 for (String key : submitData.keySet()) {
226 Object optionValue = submitData.get(key);
227 if (sb.length() > 1) {
228 sb.append(",");
229 }
230 sb.append("\"" + key + "\"");
231
232 sb.append(":");
233 sb.append("\"" + optionValue + "\"");
234 }
235 sb.append("}");
236 return sb.toString();
237 }
238
239
240
241
242
243
244
245
246
247
248
249
250
251 public String getMethodToCall() {
252 return this.methodToCall;
253 }
254
255
256
257
258
259
260 public void setMethodToCall(String methodToCall) {
261 this.methodToCall = methodToCall;
262 }
263
264
265
266
267
268
269
270
271
272
273
274
275 public String getActionLabel() {
276 return this.actionLabel;
277 }
278
279
280
281
282
283
284 public void setActionLabel(String actionLabel) {
285 this.actionLabel = actionLabel;
286 }
287
288
289
290
291
292
293
294
295
296
297
298
299
300 public Image getActionImage() {
301 return this.actionImage;
302 }
303
304
305
306
307
308
309 public void setActionImage(Image actionImage) {
310 this.actionImage = actionImage;
311 }
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327 public String getNavigateToPageId() {
328 return this.navigateToPageId;
329 }
330
331
332
333
334
335
336 public void setNavigateToPageId(String navigateToPageId) {
337 this.navigateToPageId = navigateToPageId;
338 actionParameters.put(UifParameters.NAVIGATE_TO_PAGE_ID, navigateToPageId);
339 this.methodToCall = UifConstants.MethodToCallNames.NAVIGATE;
340 }
341
342
343
344
345
346
347
348
349
350
351
352
353 public String getActionEvent() {
354 return actionEvent;
355 }
356
357
358
359
360
361
362 public void setActionEvent(String actionEvent) {
363 this.actionEvent = actionEvent;
364 }
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382 public Map<String, String> getActionParameters() {
383 return this.actionParameters;
384 }
385
386
387
388
389
390
391 public void setActionParameters(Map<String, String> actionParameters) {
392 this.actionParameters = actionParameters;
393 }
394
395
396
397
398
399
400
401 public void addActionParameter(String parameterName, String parameterValue) {
402 if (actionParameters == null) {
403 this.actionParameters = new HashMap<String, String>();
404 }
405
406 this.actionParameters.put(parameterName, parameterValue);
407 }
408
409
410
411
412 public String getActionParameter(String parameterName) {
413 return this.actionParameters.get(parameterName);
414 }
415
416
417
418
419
420
421 @Override
422 public ActionSecurity getComponentSecurity() {
423 return (ActionSecurity) super.getComponentSecurity();
424 }
425
426
427
428
429
430
431 @Override
432 public void setComponentSecurity(ComponentSecurity componentSecurity) {
433 if (!(componentSecurity instanceof ActionSecurity)) {
434 throw new RiceRuntimeException("Component security for Action should be instance of ActionSecurity");
435 }
436
437 super.setComponentSecurity(componentSecurity);
438 }
439
440 @Override
441 protected Class<? extends ComponentSecurity> getComponentSecurityClass() {
442 return ActionSecurity.class;
443 }
444
445
446
447
448 public String getJumpToIdAfterSubmit() {
449 return this.jumpToIdAfterSubmit;
450 }
451
452
453
454
455
456
457
458
459
460
461
462
463 public void setJumpToIdAfterSubmit(String jumpToIdAfterSubmit) {
464 this.jumpToIdAfterSubmit = jumpToIdAfterSubmit;
465 }
466
467
468
469
470
471
472
473
474
475
476
477 public String getJumpToNameAfterSubmit() {
478 return this.jumpToNameAfterSubmit;
479 }
480
481
482
483
484 public void setJumpToNameAfterSubmit(String jumpToNameAfterSubmit) {
485 this.jumpToNameAfterSubmit = jumpToNameAfterSubmit;
486 }
487
488
489
490
491
492
493
494
495
496 public String getFocusOnIdAfterSubmit() {
497 return this.focusOnIdAfterSubmit;
498 }
499
500
501
502
503 public void setFocusOnIdAfterSubmit(String focusOnIdAfterSubmit) {
504 this.focusOnIdAfterSubmit = focusOnIdAfterSubmit;
505 }
506
507
508
509
510
511
512 public boolean isPerformClientSideValidation() {
513 return this.performClientSideValidation;
514 }
515
516
517
518
519
520
521 public void setPerformClientSideValidation(boolean performClientSideValidation) {
522 this.performClientSideValidation = performClientSideValidation;
523 }
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539 public String getActionScript() {
540 return this.actionScript;
541 }
542
543
544
545
546 public void setActionScript(String actionScript) {
547 if (!StringUtils.endsWith(actionScript, ";")) {
548 actionScript = actionScript + ";";
549 }
550 this.actionScript = actionScript;
551 }
552
553
554
555
556 public void setPerformDirtyValidation(boolean performDirtyValidation) {
557 this.performDirtyValidation = performDirtyValidation;
558 }
559
560
561
562
563 public boolean isPerformDirtyValidation() {
564 return performDirtyValidation;
565 }
566
567
568
569
570
571
572 public boolean isDisabled() {
573 return disabled;
574 }
575
576
577
578
579
580
581 public void setDisabled(boolean disabled) {
582 this.disabled = disabled;
583 }
584
585
586
587
588
589
590
591
592 public String getDisabledReason() {
593 return disabledReason;
594 }
595
596
597
598
599
600
601 public void setDisabledReason(String disabledReason) {
602 this.disabledReason = disabledReason;
603 }
604
605 public String getActionImagePlacement() {
606 return actionImagePlacement;
607 }
608
609
610
611
612
613
614
615
616
617 public void setActionImagePlacement(String actionImagePlacement) {
618 this.actionImagePlacement = actionImagePlacement;
619 }
620
621
622
623
624
625
626
627 public String getPreSubmitCall() {
628 return preSubmitCall;
629 }
630
631
632
633
634
635
636 public void setPreSubmitCall(String preSubmitCall) {
637 this.preSubmitCall = preSubmitCall;
638 }
639
640
641
642
643
644
645
646 public boolean isAjaxSubmit() {
647 return ajaxSubmit;
648 }
649
650
651
652
653
654
655 public void setAjaxSubmit(boolean ajaxSubmit) {
656 this.ajaxSubmit = ajaxSubmit;
657 }
658
659
660
661
662
663
664 public String getLoadingMessageText() {
665 return loadingMessageText;
666 }
667
668
669
670
671
672
673 public void setLoadingMessageText(String loadingMessageText) {
674 this.loadingMessageText = loadingMessageText;
675 }
676
677
678
679
680
681
682 public String getUpdatingMessageText() {
683 return updatingMessageText;
684 }
685
686
687
688
689
690
691 public void setUpdatingMessageText(String updatingMessageText) {
692 this.updatingMessageText = updatingMessageText;
693 }
694
695
696
697
698
699
700
701 public String getSuccessCallback() {
702 return successCallback;
703 }
704
705
706
707
708
709
710 public void setSuccessCallback(String successCallback) {
711 this.successCallback = successCallback;
712 }
713
714
715
716
717
718
719 public String getErrorCallback() {
720 return errorCallback;
721 }
722
723
724
725
726
727
728 public void setErrorCallback(String errorCallback) {
729 this.errorCallback = errorCallback;
730 }
731 }