Преглед на файлове

HeartbeatType form is functioning
New library added (with arbitrary css file)

logicp преди 8 години
родител
ревизия
3e0fbf103b

+ 0 - 0
config/schema/heartbeat_type.schema.yml → config/schema/heartbeat.schema.yml


+ 42 - 0
config/schema/heartbeat_type.schema.yml.bak

@@ -0,0 +1,42 @@
+heartbeat8.heartbeat_type.*:
+  type: config_entity
+  label: 'Heartbeat type config'
+  mapping:
+    id:
+      type: string
+      label: 'ID'
+    label:
+      type: label
+      label: 'Label'
+    uuid:
+      type: string
+    hid:
+      type: serial
+      label: 'hid'
+    message_id:
+      type: string
+      label: 'message_id'
+    description:
+      type: string
+      label: 'description'
+    message:
+      type: string
+      label: 'message'
+    message_concat:
+      type: string
+      label: 'message_concat'
+    perms:
+      type: integer
+      label: 'perms'
+    group_type:
+      type: string
+      label: 'group_type'
+    concat_args:
+      type: blob
+      label: 'concat_args'
+    variables:
+      type: blob
+      label: 'variables'
+    attachments:
+      type: blob
+      label: 'attachments'

+ 1 - 1
css/heartbeat8.css

@@ -1,3 +1,3 @@
-#token-tree {
+.token-tree {
   display: none;
 }

+ 1 - 0
heartbeat8.libraries.yml

@@ -1,4 +1,5 @@
 treeTable:
+  version: 1.x
   css:
     theme:
       css/heartbeat8.css: {}

+ 19 - 1
src/Entity/Heartbeat.php

@@ -45,7 +45,7 @@ use Drupal\user\UserInterface;
  *   entity_keys = {
  *     "id" = "id",
  *     "revision" = "vid",
- *     "bundle" = "type",
+ *     "bundle" = "heartbeat_type",
  *     "label" = "name",
  *     "uuid" = "uuid",
  *     "uid" = "user_id",
@@ -306,4 +306,22 @@ class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterf
     return $fields;
   }
 
+  /**
+   * Returns the node type label for the passed node.
+   *
+   * @param \Drupal\heartbeat8\Entity\HeartbeatInterface $heartbeat
+   *   A heartbeat entity to return the heartbeat type's label for.
+   *
+   * @return string|false
+   *   The heartbeat type label or FALSE if the heartbeat type is not found.
+   *
+   * @todo Add this as generic helper method for config entities representing
+   *   entity bundles.
+   */
+  public function heartbeat_get_type(HeartbeatInterface $heartbeat) {
+    $type = HeartbeatType::load($heartbeat->bundle());
+    return $type ? $type->label() : FALSE;
+  }
+
+
 }

+ 44 - 0
src/Entity/HeartbeatType.php

@@ -3,6 +3,7 @@
 namespace Drupal\heartbeat8\Entity;
 
 use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
+use Drupal\heartbeat8\HeartbeatTypeListBuilder;
 
 /**
  * Defines the Heartbeat type entity.
@@ -57,6 +58,9 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
   protected $attachments;
   protected $groupType;
 
+
+  protected $entityManager;
+
   /**
    * The Heartbeat Stream label.
    *
@@ -64,6 +68,13 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
    */
   protected $label;
 
+
+  public static function getHeartbeatTypeEntity($messageId) {
+    $entity_manager = \Drupal::entityTypeManager();
+
+
+  }
+
   public function setMessageId($messageId) {
     $this->messageId = $messageId;
   }
@@ -232,4 +243,37 @@ class HeartbeatType extends ConfigEntityBundleBase implements HeartbeatTypeInter
   public function getAttachments() {
     return $this->attachments;
   }
+
+  /**
+   * @inheritDoc
+   */
+  public function __construct(array $values, $entity_type)
+  {
+    parent::__construct($values, $entity_type);
+    $this->entityManager = \Drupal::entityManager();
+    $this->entityTypeManager = \Drupal::entityTypeManager();
+  }
+
+  /**
+   * @inheritDoc
+   */
+  protected function entityManager()
+  {
+    return parent::entityManager(); // TODO: Change the autogenerated stub
+  }
+
+  /**
+   * @inheritDoc
+   */
+  protected function entityTypeManager()
+  {
+    return parent::entityTypeManager(); // TODO: Change the autogenerated stub
+  }
+
+  public function loadHeartbeatType() {
+    $this->entityTypeManager->getDefinitions();
+  }
+
+  public static function getList() {
+  }
 }

+ 1 - 0
src/Form/HeartbeatForm.php

@@ -4,6 +4,7 @@ namespace Drupal\heartbeat8\Form;
 
 use Drupal\Core\Entity\ContentEntityForm;
 use Drupal\Core\Form\FormStateInterface;
+use Drupal\heartbeat8\Entity;
 
 /**
  * Form controller for Heartbeat edit forms.

+ 14 - 11
src/Form/HeartbeatTypeForm.php

@@ -47,7 +47,6 @@ class HeartbeatTypeForm extends EntityForm {
    * param [ mixed $args [, $... ]]
    * @param TreeBuilder $tree_builder
    * @param Renderer $renderer
-   * @link http://php.net/manual/en/language.oop5.decon.php
    * @throws \Exception
    */
   public function __construct(TreeBuilder $tree_builder, Renderer $renderer) {
@@ -69,9 +68,7 @@ class HeartbeatTypeForm extends EntityForm {
   /**
    * {@inheritdoc}
    */
-  public function buildform(array $form, FormStateInterface $form_state)
-  {
-    $form = parent::buildform($form, $form_state);
+  public function form(array $form, FormStateInterface $form_state) {
 
     $form_state->setCached(FALSE);
 
@@ -95,7 +92,7 @@ class HeartbeatTypeForm extends EntityForm {
       '#type' => 'textfield',
       '#title' => $this->t('messageId'),
       '#maxlength' => 255,
-      '#default_value' => "New Message ID",
+      '#default_value' => $heartbeat_type->getMessageId(),
       '#description' => $this->t("Message ID for the Heartbeat Type."),
       '#required' => TRUE,
     );
@@ -105,7 +102,7 @@ class HeartbeatTypeForm extends EntityForm {
       '#type' => 'textfield',
       '#title' => $this->t('description'),
       '#maxlength' => 255,
-      '#default_value' => "Description",
+      '#default_value' => $heartbeat_type->getDescription(),
       '#description' => $this->t("Description of the Heartbeat Type"),
       '#required' => TRUE,
     );
@@ -115,7 +112,7 @@ class HeartbeatTypeForm extends EntityForm {
       '#type' => 'textfield',
       '#title' => $this->t('message'),
       '#maxlength' => 255,
-      '#default_value' => "Message",
+      '#default_value' => $heartbeat_type->getMessage(),
       '#description' => $this->t("The structure for messages of this type. Use !exclamation marks before fields and entities"),
       '#required' => TRUE,
     );
@@ -125,7 +122,7 @@ class HeartbeatTypeForm extends EntityForm {
       '#type' => 'textfield',
       '#title' => $this->t('Message structure in concatenated form'),
       '#maxlength' => 255,
-      '#default_value' => "Message",
+      '#default_value' => $heartbeat_type->getMessageConcat(),
       '#description' => $this->t("The structure for messages of this type. Use !exclamation marks before fields and entities"),
       '#required' => FALSE,
     );
@@ -134,7 +131,7 @@ class HeartbeatTypeForm extends EntityForm {
     $form['perms'] = array(
       '#type' => 'select',
       '#title' => $this->t('Permissions'),
-      '#default_value' => 0,
+      '#default_value' => $heartbeat_type->getPerms(),
       '#description' => $this->t("Default permissions to view Heartbeats of this type"),
       '#options' => array(
         0 => heartbeat8\HEARTBEAT_NONE,
@@ -331,7 +328,7 @@ class HeartbeatTypeForm extends EntityForm {
 
     $form_state->setCached(FALSE);
 
-     return $form;
+    return parent::form($form, $form_state, $heartbeat_type);
   }
 
   /**
@@ -339,6 +336,12 @@ class HeartbeatTypeForm extends EntityForm {
    */
   public function save(array $form, FormStateInterface $form_state) {
     $heartbeat_type = $this->entity;
+
+    $heartbeat_type->set('description', $form_state->getValue('description'));
+    $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
     $status = $heartbeat_type->save();
 
     switch ($status) {
@@ -405,7 +408,7 @@ class HeartbeatTypeForm extends EntityForm {
 //    $color = 'pink';
     // 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')));
+    $ajax_response->addCommand(new InvokeCommand('.token-tree', 'css', array('display', 'block')));
 
     // Return the AjaxResponse Object.
     return $ajax_response;