View Javadoc
1   /**
2    * Copyright 2005-2014 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.lifecycle.finalize;
17  
18  import java.util.Map;
19  
20  import org.kuali.rice.core.api.CoreApiServiceLocator;
21  import org.kuali.rice.krad.uif.UifConstants;
22  import org.kuali.rice.krad.uif.lifecycle.ViewLifecycleTaskBase;
23  import org.kuali.rice.krad.uif.lifecycle.FinalizeComponentPhase;
24  import org.kuali.rice.krad.uif.lifecycle.ViewLifecycle;
25  import org.kuali.rice.krad.uif.lifecycle.ViewLifecyclePhase;
26  import org.kuali.rice.krad.uif.util.ScriptUtils;
27  import org.kuali.rice.krad.uif.view.View;
28  import org.kuali.rice.krad.uif.view.ViewModel;
29  import org.kuali.rice.krad.util.KRADConstants;
30  
31  /**
32   * Perform custom finalize behavior for the component defined by the helper.
33   * 
34   * @author Kuali Rice Team (rice.collab@kuali.org)
35   */
36  public class FinalizeViewTask extends ViewLifecycleTaskBase<View> {
37  
38      /**
39       * Constructor.
40       * 
41       * @param phase The finalize phase for the component.
42       */
43      public FinalizeViewTask(ViewLifecyclePhase phase) {
44          super(phase, View.class);
45      }
46  
47      /**
48       * {@inheritDoc}
49       */
50      @Override
51      public FinalizeComponentPhase getElementState() {
52          return (FinalizeComponentPhase) super.getElementState();
53      }
54  
55      /**
56       * {@inheritDoc}
57       */
58      @Override
59      protected void performLifecycleTask() {
60          View view = (View) getElementState().getElement();
61          assert view == ViewLifecycle.getView();
62          Object model = ViewLifecycle.getModel();
63  
64          view.setPreLoadScript(ScriptUtils.appendScript(
65                  view.getPreLoadScript(), buildClientSideStateScript(model)));
66      }
67  
68      /**
69       * Builds script that will initialize configuration parameters and component state on the client
70       * 
71       * <p>
72       * Here client side state is initialized along with configuration variables that need exposed to
73       * script
74       * </p>
75       * 
76       * @param model model containing the client side state map.
77       * @return The client side state script associated with this model.
78       */
79      protected String buildClientSideStateScript(Object model) {
80          Map<String, Object> clientSideState = ((ViewModel) model).getClientStateForSyncing();
81  
82          // script for initializing client side state on load
83          String clientStateScript = "";
84          if (!clientSideState.isEmpty()) {
85              clientStateScript = ScriptUtils.buildFunctionCall(UifConstants.JsFunctions.INITIALIZE_VIEW_STATE,
86                      clientSideState);
87          }
88  
89          // add necessary configuration parameters
90          String kradImageLocation = CoreApiServiceLocator.getKualiConfigurationService().getPropertyValueAsString(
91                  UifConstants.ConfigProperties.KRAD_IMAGES_URL);
92          clientStateScript += ScriptUtils.buildFunctionCall(UifConstants.JsFunctions.SET_CONFIG_PARM,
93                  UifConstants.ClientSideVariables.KRAD_IMAGE_LOCATION, kradImageLocation);
94  
95          String kradURL = CoreApiServiceLocator.getKualiConfigurationService().getPropertyValueAsString(
96                  UifConstants.ConfigProperties.KRAD_URL);
97          clientStateScript += ScriptUtils.buildFunctionCall(UifConstants.JsFunctions.SET_CONFIG_PARM,
98                  UifConstants.ClientSideVariables.KRAD_URL, kradURL);
99  
100         String applicationURL = CoreApiServiceLocator.getKualiConfigurationService().getPropertyValueAsString(
101                 KRADConstants.ConfigParameters.APPLICATION_URL);
102         clientStateScript += ScriptUtils.buildFunctionCall(UifConstants.JsFunctions.SET_CONFIG_PARM,
103                 UifConstants.ClientSideVariables.APPLICATION_URL, applicationURL);
104 
105         String scriptCleanup = CoreApiServiceLocator.getKualiConfigurationService().getPropertyValueAsString(
106                 KRADConstants.ConfigParameters.KRAD_SCRIPT_CLEANUP);
107         clientStateScript += ScriptUtils.buildFunctionCall(UifConstants.JsFunctions.SET_CONFIG_PARM,
108                 UifConstants.ClientSideVariables.KRAD_SCRIPT_CLEANUP, scriptCleanup);
109 
110         return clientStateScript;
111     }
112 
113 }