Browse Source

Work on HeartbeatType form

logicp 8 years ago
parent
commit
94e45b634e
3 changed files with 134 additions and 7 deletions
  1. 3 3
      heartbeat8.links.menu.yml
  2. 26 3
      heartbeat8.module
  3. 105 1
      src/Form/HeartbeatTypeForm.php

+ 3 - 3
heartbeat8.links.menu.yml

@@ -1,11 +1,11 @@
 
 # Heartbeat menu items definition
 entity.heartbeat.collection:
-  title: 'Heartbeat list'
+  title: 'Heartbeat'
   route_name: entity.heartbeat.collection
   description: 'List Heartbeat entities'
   parent: system.admin_structure
-  weight: 100
+  weight: 98
 
 
 # Heartbeat type menu items definition
@@ -23,5 +23,5 @@ entity.heartbeat_stream.collection:
   route_name: entity.heartbeat_stream.collection
   description: 'List Heartbeat stream (bundles)'
   parent: system.admin_structure
-  weight: 99
+  weight: 100
 

+ 26 - 3
heartbeat8.module

@@ -5,13 +5,36 @@
  * Contains heartbeat8.module.
  */
 
+namespace Drupal\heartbeat8;
+
 use Drupal\Core\Routing\RouteMatchInterface;
-use Drupal\Heartbeat8\Entity\Heartbeat;
-use Drupal\Heartbeat8\Entity\HeartbeatType;
+use Drupal\heartbeat8\Entity\Heartbeat;
+use Drupal\heartbeat8\Entity\HeartbeatType;
 
-//TODO add constants (HEARTBEAT_NONE, HEARTBEAT_PRIVATE, HEARTBEAT_PUBLIC_TO_ADDRESSEE, HEARTBEAT_PUBLIC_TO_ALL_CONNECTED, HEARTBEAT_PUBLIC_TO_ALL)
 //TODO include Streams (Entities already added with use statements on lines 9-10)
 
+// Always block from display
+const HEARTBEAT_NONE = -1;
+
+// Display only activity messages that are mine or addressed to me
+const HEARTBEAT_PRIVATE = 0;
+
+// Only the person that is chosen by the actor, can see the message
+const HEARTBEAT_PUBLIC_TO_ADDRESSEE = 1;
+
+// Display activity message of all my user relations, described in contributed modules
+const HEARTBEAT_PUBLIC_TO_CONNECTED = 2;
+
+// Everyone can see this activity message, unless this type of message is set to private
+const HEARTBEAT_PUBLIC_TO_ALL = 4;
+
+
+//Group Types
+
+const HEARTBEAT_GROUP_NONE = 11;
+const HEARTBEAT_GROUP_SINGLE = 12;
+const HEARTBEAT_GROUP_SUMMARY = 13;
+
 /**
  * Implements hook_help().
  */

+ 105 - 1
src/Form/HeartbeatTypeForm.php

@@ -2,6 +2,7 @@
 
 namespace Drupal\heartbeat8\Form;
 
+use Drupal\heartbeat8;
 use Drupal\Core\Entity\EntityForm;
 use Drupal\Core\Form\FormStateInterface;
 
@@ -20,6 +21,8 @@ class HeartbeatTypeForm extends EntityForm {
 
     $heartbeat_type = $this->entity;
 
+    $form['#tree'] = TRUE;
+
     $form['label'] = array(
       '#type' => 'textfield',
       '#title' => $this->t('Label'),
@@ -49,6 +52,7 @@ class HeartbeatTypeForm extends EntityForm {
       '#required' => TRUE,
     );
 
+
     $form['message'] = array(
       '#type' => 'textfield',
       '#title' => $this->t('message'),
@@ -56,9 +60,78 @@ class HeartbeatTypeForm extends EntityForm {
       '#default_value' => "Message",
       '#description' => $this->t("The structure for messages of this type. Use !exclamation marks before fields and entities"),
       '#required' => TRUE,
+      '#ajax' => [
+        'callback' => '::rebuildMessageArguments',
+        'event' => 'change',
+        'progress' => array(
+          'type' => 'throbber',
+          'message' => t('Rebuilding arguments'),
+        ),
+      ]
     );
 
 
+    $form['message_concat'] = array(
+      '#type' => 'textfield',
+      '#title' => $this->t('Message structure in concatenated form'),
+      '#maxlength' => 255,
+      '#default_value' => "Message",
+      '#description' => $this->t("The structure for messages of this type. Use !exclamation marks before fields and entities"),
+      '#required' => FALSE,
+    );
+
+
+    $form['perms'] = array(
+      '#type' => 'select',
+      '#title' => $this->t('Permissions'),
+      '#default_value' => 0,
+      '#description' => $this->t("Default permissions to view Heartbeats of this type"),
+      '#options' => array(
+        0 => heartbeat8\HEARTBEAT_NONE,
+        1 => heartbeat8\HEARTBEAT_PRIVATE,
+        2 => heartbeat8\HEARTBEAT_PUBLIC_TO_ADDRESSEE,
+        3 => heartbeat8\HEARTBEAT_PUBLIC_TO_CONNECTED,
+        4 => heartbeat8\HEARTBEAT_PUBLIC_TO_ALL,
+
+      ),
+      '#required' => TRUE,
+    );
+
+
+    $form['group_type'] = array(
+      '#type' => 'select',
+      '#title' => $this->t('Group Type'),
+      '#default_value' => 0,
+      '#description' => $this->t("Type of group associated with Heartbeats of this type"),
+      '#options' => array(
+        0 => heartbeat8\HEARTBEAT_GROUP_NONE,
+        1 => heartbeat8\HEARTBEAT_GROUP_SINGLE,
+        2 => heartbeat8\HEARTBEAT_GROUP_SUMMARY,
+      ),
+      '#required' => TRUE,
+    );
+
+    $form['variables'] = array(
+      '#type' => 'fieldset',
+      '#title' => $this->t('Variables to map'),
+      '#prefix' => '<div id="names-fieldset-wrapper">',
+      '#suffix' => '</div>',
+    );
+
+    $messageArguments = $form_state->getTemporaryValue('data_hidden');
+
+    $argNum = count($messageArguments);
+
+    for ($i = 0; $i < $argNum; $i++) {
+
+      $form['variables']['variable'][$i] = array(
+        '#type' => 'textfield',
+        '#title' => t($messageArguments[$i]),
+        '#description' => t('Define message argument'),
+      );
+
+    }
+
     $form['id'] = [
       '#type' => 'machine_name',
       '#default_value' => $heartbeat_type->id(),
@@ -68,7 +141,7 @@ class HeartbeatTypeForm extends EntityForm {
       '#disabled' => !$heartbeat_type->isNew(),
     ];
 
-    /* You will need additional form elements for your custom properties. */
+    $form_state->setCached(FALSE);
 
     return $form;
   }
@@ -95,4 +168,35 @@ class HeartbeatTypeForm extends EntityForm {
     $form_state->setRedirectUrl($heartbeat_type->toUrl('collection'));
   }
 
+
+
+  /**
+   * Custom form validation to rebuild
+   * Form field for mapping Message Arguments
+   */
+
+  public function rebuildMessageArguments(array &$form, FormStateInterface &$form_state) {
+
+    \Drupal::logger('HeartbeatTypeFormDEBUG')->notice('Ajax callback successfully called');
+
+    $messageArgString = $form_state->getValue('message');
+    $messageArguments = explode('!', $messageArgString);
+
+    $argsArray = array();
+
+    foreach ($messageArguments as $argument) {
+
+      if (strlen($argument) > 0) {
+
+        $cleanArgument = substr($argument, 0, strpos($argument, ' '));
+        $argsArray[] = $cleanArgument;
+
+      }
+    }
+
+    $form_state->setTemporaryValue('data_hidden', $argsArray);
+    $form_state->setRebuild();
+
+    return $form;
+  }
 }