Added ability to pass parameters to wizards and dialogs

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2807 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2006-05-10 11:33:02 +00:00
parent c953c45c3d
commit 8cd2a68717
13 changed files with 90 additions and 24 deletions

View File

@@ -2,9 +2,12 @@ package org.alfresco.web.bean.wizard;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.el.ValueBinding;
import javax.faces.event.ActionEvent;
import org.alfresco.error.AlfrescoRuntimeException;
import org.alfresco.web.app.Application;
@@ -13,6 +16,7 @@ import org.alfresco.web.config.WizardsConfigElement.ConditionalPageConfig;
import org.alfresco.web.config.WizardsConfigElement.PageConfig;
import org.alfresco.web.config.WizardsConfigElement.StepConfig;
import org.alfresco.web.config.WizardsConfigElement.WizardConfig;
import org.alfresco.web.ui.common.component.UIActionLink;
import org.alfresco.web.ui.common.component.UIListItem;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
@@ -31,6 +35,23 @@ public class WizardManager
protected WizardConfig currentWizardConfig;
protected IWizardBean currentWizard;
protected List<StepConfig> steps;
protected Map<String, String> currentWizardParams;
/**
* Action handler used to setup parameters for the wizard being launched
*
* @param event The event containing the parameters
*/
public void setupParameters(ActionEvent event)
{
// check the component the event come from was an action link
UIComponent component = event.getComponent();
if (component instanceof UIActionLink)
{
// store the parameters
this.currentWizardParams = ((UIActionLink)component).getParameterMap();
}
}
/**
* Sets the current wizard
@@ -52,7 +73,10 @@ public class WizardManager
}
// initialise the managed bean
this.currentWizard.init();
this.currentWizard.init(this.currentWizardParams);
// reset the current parameters so subsequent wizards don't get them
this.currentWizardParams = null;
// get the steps for the wizard
this.steps = this.currentWizardConfig.getStepsAsList();