Pārlūkot izejas kodu

New HeartbeatFeedForm
new HeartbeatFeedBlock
new custom Ajax command src/Ajax/SelectFeedCommand.php
new js file in js/heartbeat.js
HeartbeatFeedBlock provides dynamically populated tabs for each Stream
clicking Stream evokes Ajax callback which sends chosen feed name to heartbeat.js

logicp 7 gadi atpakaļ
vecāks
revīzija
66850c6e76
1 mainītis faili ar 10 papildinājumiem un 4 dzēšanām
  1. 10 4
      heartbeat.module

+ 10 - 4
heartbeat.module

@@ -81,7 +81,7 @@ function heartbeat_theme_suggestions_heartbeat(array $variables) {
  * Implements hook_entity_insert().
  */
 function heartbeat_entity_insert(EntityInterface $entity) {
-
+$bundleSaved = false;
   switch (true) {
     case $entity instanceof \Drupal\node\Entity\Node:
 
@@ -128,7 +128,9 @@ function heartbeat_entity_insert(EntityInterface $entity) {
               ]);
 
               $heartbeatActivity->setMessage($heartbeatMessage);
-              $heartbeatActivity->save();
+              if ($heartbeatActivity->save()) {
+                $bundleSaved = true;
+              }
               continue;
             } else if ($heartbeatTypeEntity->getBundle() === null || trim($heartbeatTypeEntity->getBundle()) === '') {
 
@@ -141,6 +143,7 @@ function heartbeat_entity_insert(EntityInterface $entity) {
                 'uid' => $user->id(),
                 'nid' => $entity->id(),
                 'name' => 'Dev Test',
+                'status' => !$bundleSaved ? 1 : 0,
               ]);
 
               $heartbeatActivity->setMessage($heartbeatMessage);
@@ -175,7 +178,7 @@ function heartbeat_entity_insert(EntityInterface $entity) {
 
 
 function heartbeat_handle_entity($entity, $tokenService, $heartbeatTypeService, $user, $mainEntity) {
-
+  $bundleSaved = false;
   if ($entity->id() && $user->isAuthenticated()) {
 
     $media = HeartBeat::mediaFieldTypes($entity->getFields());
@@ -215,7 +218,9 @@ function heartbeat_handle_entity($entity, $tokenService, $heartbeatTypeService,
           ]);
 
           $heartbeatActivity->setMessage($heartbeatMessage);
-          $heartbeatActivity->save();
+          if ($heartbeatActivity->save()) {
+            $bundleSaved = true;
+          }
           continue;
         } else if ($heartbeatTypeEntity->getBundle() === null || trim($heartbeatTypeEntity->getBundle()) === '') {
 
@@ -228,6 +233,7 @@ function heartbeat_handle_entity($entity, $tokenService, $heartbeatTypeService,
             'uid' => $user->id(),
             'nid' => $entity->id(),
             'name' => 'Dev Test',
+            'status' => !$bundleSaved ? 1 : 0,
           ]);
 
           $heartbeatActivity->setMessage($heartbeatMessage);