Skip to content
Snippets Groups Projects
Commit a4ed6c2c authored by Earl Miles's avatar Earl Miles
Browse files

Add a little AJAX support to the wizard tool. I think it still needs more but...

Add a little AJAX support to the wizard tool. I think it still needs more but I will not be sure what until I actually need to use it.
parent dbb9640a
No related branches found
No related tags found
No related merge requests found
...@@ -142,20 +142,22 @@ function ctools_modal_form_wrapper($form_id, &$form_state) { ...@@ -142,20 +142,22 @@ function ctools_modal_form_wrapper($form_id, &$form_state) {
$output = ctools_build_form($form_id, $form_state); $output = ctools_build_form($form_id, $form_state);
if (!empty($form_state['ajax']) && empty($form_state['executed'])) { if (!empty($form_state['ajax']) && empty($form_state['executed'])) {
$title = empty($form_state['title']) ? '' : $form_state['title']; return ctools_modal_form_render($form_state, $output);
}
// If there are messages for the form, render them. return $output;
if ($messages = theme('status_messages')) { }
$output = '<div class="views-messages">' . $messages . '</div>' . $output;
}
$output = array(ctools_modal_command_display($title, $output)); /**
} * Render a form into an AJAX display.
*/
function ctools_modal_form_render($form_state, $output) {
$title = empty($form_state['title']) ? '' : $form_state['title'];
// These forms have the title built in, so set the title here: // If there are messages for the form, render them.
if (empty($form_state['ajax']) && !empty($form_state['title'])) { if ($messages = theme('status_messages')) {
drupal_set_title($form_state['title']); $output = '<div class="messages">' . $messages . '</div>' . $output;
} }
return $output; return array(ctools_modal_command_display($title, $output));
} }
...@@ -13,9 +13,16 @@ ...@@ -13,9 +13,16 @@
* The wizard can also be friendly to ajax forms, such as when used * The wizard can also be friendly to ajax forms, such as when used
* with the modal tool. * with the modal tool.
* *
* TODO: should the wizard also perform object caching? We'll see * The wizard provides callbacks throughout the process, allowing the
* as we develop this if it should happen within the wizard * owner to control the flow. The general flow of what happens is:
* or outside the wizard. *
* Generate a form
* submit a form
* based upon button clicked, 'finished', 'next form', 'cancel' or 'return'.
*
* Each action has its own callback, so cached objects can be modifed and or
* turned into real objects. Each callback can make decisions about where to
* go next if it wishes to override the default flow.
*/ */
/** /**
...@@ -72,7 +79,12 @@ function ctools_wizard_multistep_form($form_info, $step, &$form_state) { ...@@ -72,7 +79,12 @@ function ctools_wizard_multistep_form($form_info, $step, &$form_state) {
ctools_include('form'); ctools_include('form');
$output = ctools_build_form($info['form id'], $form_state); $output = ctools_build_form($info['form id'], $form_state);
if (!$output) { if (!empty($form_state['ajax render']) && empty($form_state['executed'])) {
// Any include files should already be included by this point:
return $form_state['ajax render']($form_state, $output);
}
if (!empty($form_state['executed'])) {
// We use the plugins get_function format because it's powerful and // We use the plugins get_function format because it's powerful and
// not limited to just functions. // not limited to just functions.
ctools_include('plugins'); ctools_include('plugins');
...@@ -85,8 +97,16 @@ function ctools_wizard_multistep_form($form_info, $step, &$form_state) { ...@@ -85,8 +97,16 @@ function ctools_wizard_multistep_form($form_info, $step, &$form_state) {
} }
} }
// redirect, if one is set. if (empty($form_state['ajax'])) {
drupal_redirect_form(array(), $form_state['redirect']); // redirect, if one is set.
return drupal_redirect_form(array(), $form_state['redirect']);
}
else if (isset($form_state['commands'])) {
// If the callbacks wanted to do something besides go to the next form,
// it needs to have set $form_state['commands'] with something that can
// be rendered.
return ctools_ajax_render($form_state['commands']);
}
} }
return $output; return $output;
...@@ -131,7 +151,6 @@ function ctools_wizard_wrapper(&$form, &$form_state) { ...@@ -131,7 +151,6 @@ function ctools_wizard_wrapper(&$form, &$form_state) {
// Display the trail if instructed to do so. // Display the trail if instructed to do so.
if (!empty($form_info['show trail'])) { if (!empty($form_info['show trail'])) {
ctools_add_css('wizard'); ctools_add_css('wizard');
// drupal_add_css(drupal_get_path('module', 'delegator') . '/css/task-handlers.css');
$form['ctools_trail'] = array( $form['ctools_trail'] = array(
'#value' => theme(array('ctools_wizard_trail__' . $form_info['id'], 'ctools_wizard_trail'), $trail), '#value' => theme(array('ctools_wizard_trail__' . $form_info['id'], 'ctools_wizard_trail'), $trail),
'#weight' => -1000, '#weight' => -1000,
...@@ -220,11 +239,20 @@ function ctools_wizard_submit(&$form, &$form_state) { ...@@ -220,11 +239,20 @@ function ctools_wizard_submit(&$form, &$form_state) {
if (isset($form_state['clicked_button']['#wizard type'])) { if (isset($form_state['clicked_button']['#wizard type'])) {
$type = $form_state['clicked_button']['#wizard type']; $type = $form_state['clicked_button']['#wizard type'];
if ($type == 'return' || $type == 'finish') { if ($type == 'return' || $type == 'finish') {
$form_state['redirect'] = $form_state['form_info']['return path']; if (empty($form_state['ajax']) && isset($form_state['form_info']['return path'])) {
// Do we need to do something here or just let it go? // Do we need to do something here or just let it go?
$form_state['redirect'] = $form_state['form_info']['return path'];
}
// Calling functions using AJAX need to to provide commands
// for the 'finished' and 'cancel' operations.
} }
else { else {
$form_state['redirect'] = ctools_wizard_get_path($form_state['form_info'], $form_state['clicked_button']['#next']); if (!empty($form_state['ajax'])) {
$form_state['ajax next'] = $form_state['clicked_button']['#next'];
}
else {
$form_state['redirect'] = ctools_wizard_get_path($form_state['form_info'], $form_state['clicked_button']['#next']);
}
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment