Browse Source

HeartbeatTypeForm
Handling form data
removing extra ajax calls when clicking on variable argument fields builds tokenTree

logicp 8 years ago
parent
commit
663a5ab4b6
1 changed files with 10 additions and 3 deletions
  1. 10 3
      src/Form/HeartbeatTypeForm.php

+ 10 - 3
src/Form/HeartbeatTypeForm.php

@@ -26,6 +26,8 @@ class HeartbeatTypeForm extends EntityForm {
 
   private $tokenTree;
 
+  private $treeAdded = false;
+
 
 
   /**
@@ -179,14 +181,17 @@ class HeartbeatTypeForm extends EntityForm {
           '#type' => 'textfield',
           '#title' => t($messageArguments[$i]),
           '#description' => t('Map value to this variable'),
-          '#ajax' => [
+          '#default_value' =>
+            isset($heartbeat_type->getVariables()[0]) && !empty($heartbeat_type->getVariables[0]) ?
+              $heartbeat_type->getVariables[$i] : '',
+          '#ajax' => !$this->treeAdded ? [
             'callback' => '::tokenSelectDialog',
             'event' => 'focus',
             'progress' => array(
               'type' => 'throbber',
               'message' => t('Rebuilding arguments'),
             ),
-          ]
+          ] : [],
         );
 
       }
@@ -341,6 +346,8 @@ class HeartbeatTypeForm extends EntityForm {
     $heartbeat_type->set('description', $form_state->getValue('description'));
     $heartbeat_type->set('message', $form_state->getValue('message'));
     $heartbeat_type->set('perms', $form_state->getValue('perms'));
+    $heartbeat_type->set('messageId', $form_state->getValue('message_id'));
+    $heartbeat_type->set('variables', $form_state->getValue('variables'));
 //    $heartbeat_type
     $status = $heartbeat_type->save();
 
@@ -409,7 +416,7 @@ class HeartbeatTypeForm extends EntityForm {
     // Add a command, InvokeCommand, which allows for custom jQuery commands.
     // In this case, we alter the color of the description.
     $ajax_response->addCommand(new InvokeCommand('.token-tree', 'css', array('display', 'block')));
-
+    $this->treeAdded = TRUE;
     // Return the AjaxResponse Object.
     return $ajax_response;
   }