Browse Source

New autopager when scrolling down
so much more.. should have committed earlier

logicp 7 years ago
parent
commit
523c2d040f

+ 8 - 0
config/schema/heartbeat.schema.yml

@@ -101,6 +101,14 @@ heartbeat_hashtag.config:
       type: integer
       label: 'The Taxonomy term to be used when filtering a Heartbeat Stream'
 
+heartbeat_more.config:
+  type: config_object
+  label: 'Parameter for fetching more heartbeats'
+  mapping:
+    hid:
+      type: integer
+      label: 'The oldest ID visible to the User requesting more Heartbeats'
+
 heartbeat_comment.config:
   type: config_object
   label: 'Comment configuration'

+ 7 - 11
heartbeat.module

@@ -309,22 +309,18 @@ function updateFeeds() {
 
 
 /**
- * Implements hook_ajax_render_alter().
+ * Implements hook_entity_view().
  */
-function heartbeat_ajax_render_alter(array &$data) {
-
-  $nullll = 'null';
-
-  $muhData = $data;
-
-  if ($data !== null) {
-
-    $saysomething = 'here';
-
+function heartbeat_entity_view(array &$build, \Drupal\Core\Entity\EntityInterface $entity, \Drupal\Core\Entity\Display\EntityViewDisplayInterface $display, $view_mode) {
 
+  if ($entity instanceof \Drupal\user\Entity\User) {
+    if (isset($build['flag_friendship']) && \Drupal::currentUser()->id() === $entity->id()) {
+      unset($build['flag_friendship']);
+    }
   }
 }
 
+
 /**
  * Implements hook_cron().
  */

+ 1 - 1
heartbeat.routing.yml

@@ -97,7 +97,7 @@ heartbeat.render_feed:
     _permission: 'access content'
 
 heartbeat.update_feed:
-  path: '/heartbeat/update_feed/{arg}'
+  path: '/heartbeat/update_feed/{hid}'
   defaults:
     _controller: '\Drupal\heartbeat\Controller\HeartbeatController::updateFeed'
     _title: 'Update Feed'

+ 59 - 20
js/heartbeat.js

@@ -7,26 +7,16 @@
 
           if (drupalSettings.friendData != null) {
             var divs = document.querySelectorAll('.flag-friendship a.use-ajax');
-            // console.log(divs);
+
             for (let i = 0; i < divs.length; i++) {
               let anchor = divs[i];
               var userId = anchor.href.substring(anchor.href.indexOf('friendship') + 11, anchor.href.indexOf('?destination'));
-              console.log(userId);
               JSON.parse(drupalSettings.friendData).forEach(function (friendship) {
                 if (friendship.uid_target === userId && friendship.uid == drupalSettings.user.uid && friendship.status == 0) {
                   anchor.innerHTML = 'Friendship Pending';
                 }
               });
             }
-            // divs.forEach(function (anchor) {
-            //   var userId = anchor.href.substring(anchor.href.indexOf('friendship') + 11, anchor.href.indexOf('?destination'));
-            //   console.log(userId);
-            //   JSON.parse(drupalSettings.friendData).forEach(function (friendship) {
-            //     if (friendship.uid_target === userId && friendship.uid == drupalSettings.user.uid && friendship.status == 0) {
-            //       anchor.innerHTML = 'Friendship Pending';
-            //     }
-            //   });
-            // });
           }
 
           feedElement = document.querySelector('.heartbeat-stream');
@@ -43,7 +33,6 @@
                 success: function(response) {
 
                   feedElement = document.querySelector('.heartbeat-stream');
-                  console.dir(feedElement);
 
                   if (feedElement != null) {
 
@@ -55,22 +44,18 @@
                     insertNode = document.createElement('div');
                     insertNode.innerHTML = response;
                     feedBlock.appendChild(insertNode);
-
                   }
-
                 }
               });
             };
 
             Drupal.AjaxCommands.prototype.updateFeed = function(ajax, response, status) {
-              console.dir(response.timestamp);
               if ($response.update) {
                 $.ajax({
                   type: 'POST',
                   url:'/heartbeat/update_feed/' + response.timestamp,
                   success: function(response) {
 
-                    console.dir(response);
                   }
                 });
               }
@@ -88,8 +73,6 @@
       type: 'POST',
       url: '/heartbeat/form/heartbeat_update_feed',
       success: function (response) {
-        console.dir(response);
-        console.log('We are succeed!');
       }
     })
   }
@@ -127,8 +110,6 @@
         type: 'POST',
         url:'/heartbeat/commentupdate/' + id,
         success: function(response) {
-
-          console.log(response);
         }
       });
     } else {
@@ -136,6 +117,64 @@
     }
   }
 
+  function getScrollXY() {
+    var scrOfX = 0, scrOfY = 0;
+    if( typeof( window.pageYOffset ) == 'number' ) {
+      //Netscape compliant
+      scrOfY = window.pageYOffset;
+      scrOfX = window.pageXOffset;
+    } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
+      //DOM compliant
+      scrOfY = document.body.scrollTop;
+      scrOfX = document.body.scrollLeft;
+    } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
+      //IE6 standards compliant mode
+      scrOfY = document.documentElement.scrollTop;
+      scrOfX = document.documentElement.scrollLeft;
+    }
+    return [ scrOfX, scrOfY ];
+  }
+
+//taken from http://james.padolsey.com/javascript/get-document-height-cross-browser/
+  function getDocHeight() {
+    var D = document;
+    return Math.max(
+      D.body.scrollHeight, D.documentElement.scrollHeight,
+      D.body.offsetHeight, D.documentElement.offsetHeight,
+      D.body.clientHeight, D.documentElement.clientHeight
+    );
+  }
+
+  document.addEventListener("scroll", function (event) {
+
+    if (getDocHeight() == getScrollXY()[1] + window.innerHeight) {
+
+      let streams = document.querySelectorAll('.heartbeat-stream');
+      let stream = streams.length > 1 ? streams[streams.length - 1] : streams[0];
+
+      if (stream !== null) {
+        console.dir(stream);
+        let lastHeartbeat = stream.lastElementChild;
+
+        if (lastHeartbeat !== null) {
+
+          let hid = lastHeartbeat.id.substring(lastHeartbeat.id.indexOf('-') + 1);
+          $.ajax({
+            type: 'POST',
+            url: '/heartbeat/update_feed/' + hid,
+            success: function (response) {
+
+              feedBlock = document.getElementById('block-heartbeatblock');
+              insertNode = document.createElement('div');
+              insertNode.innerHTML = response;
+              feedBlock.appendChild(insertNode);
+            }
+          });
+        }
+      }
+    }
+  });
+
 
 })(jQuery, Drupal, drupalSettings);
 

+ 9 - 4
src/Controller/HeartbeatController.php

@@ -172,8 +172,11 @@ class HeartbeatController extends ControllerBase implements ContainerInjectionIn
   }
 
 
-  public function updateFeed($arg) {
-    \Drupal::logger('HeartbeatController::updater')->debug('Jigga what is %arg', ['%arg' => $arg]);
+  public function updateFeed($hid) {
+    $myConfig = \Drupal::service('config.factory')->getEditable('heartbeat_more.settings');
+    $myConfig->set('hid', $hid)->save();
+
+    return BlockViewBuilder::lazyBuilder('heartbeatmoreblock', 'full');
   }
 
   public function filterFeed($tid) {
@@ -181,14 +184,16 @@ class HeartbeatController extends ControllerBase implements ContainerInjectionIn
     $myConfig->set('tid', $tid)->save();
 
     return BlockViewBuilder::lazyBuilder('heartbeathashblock', 'teaser');
-
   }
 
   public function commentConfigUpdate($entity_id) {
     $commentConfig = \Drupal::configFactory()->getEditable('heartbeat_comment.settings');
     $commentConfig->set('entity_id', $entity_id)->save();
 
-    return true;
+    return [
+      '#type' => 'markup',
+      '#markup' => 'Success',
+    ];
   }
 
 }

+ 13 - 7
src/EventSubscriber/HeartbeatEventSubscriber.php

@@ -138,17 +138,23 @@ class HeartbeatEventSubscriber implements EventSubscriberInterface {
           }
         }
       }
-    }
+      $friendships = Database::getConnection()->select("heartbeat_friendship", "hf")
+        ->fields('hf', array('status', 'uid', 'uid_target'))
+        ->execute();
 
-    $friendships = Database::getConnection()->select("heartbeat_friendship", "hf")
-      ->fields('hf', array('status', 'uid', 'uid_target'))
-      ->execute();
+      $friendData = $friendships->fetchAll();
 
-    $friendData = $friendships->fetchAll();
+      $friendConfig = \Drupal::configFactory()->getEditable('heartbeat_friendship.settings');
 
-    $friendConfig = \Drupal::configFactory()->getEditable('heartbeat_friendship.settings');
+      $friendConfig->set('data', json_encode($friendData))->save();
+    }
+    if ($flagging->getFlagId() === 'heartbeat_like') {
+
+    }
+    if ($flagging->getFlagId() === 'jihad_flag') {
+
+    }
 
-    $friendConfig->set('data', json_encode($friendData))->save();
   }
 
   /**

+ 30 - 16
src/Form/HeartbeatCommentForm.php

@@ -5,6 +5,8 @@ namespace Drupal\heartbeat\Form;
 use Drupal\Core\Form\FormBase;
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\Comment\Entity\Comment;
+use Drupal\Core\Ajax\AjaxResponse;
+use Drupal\Core\Ajax\AppendCommand;
 
 /**
  * Class HeartbeatCommentForm.
@@ -52,23 +54,35 @@ class HeartbeatCommentForm extends FormBase {
    */
   public function commentAjaxSubmit(array &$form, FormStateInterface $form_state) {
 
-    $commentBody = $form_state->getValue('comment_body');
-    $config = \Drupal::config('heartbeat_comment.settings');
-
-
-    $comment = Comment::create([
-      'entity_type' => 'heartbeat',
-      'entity_id' => $config->get('entity_id'),
-      'field_name' => 'comment',
-      'comment_body' => $commentBody,
-      'comment_type' => 'comment',
-      'subject' => 'Heartbeat Comment',
-    ]);
-
-    if ($comment->save()) {
-      return true;
+    if (\Drupal::currentUser()->isAuthenticated()) {
+      $commentBody = $form_state->getValue('comment_body');
+      $config = \Drupal::config('heartbeat_comment.settings');
+
+
+      $comment = Comment::create([
+        'entity_type' => 'heartbeat',
+        'entity_id' => $config->get('entity_id'),
+        'field_name' => 'comment',
+        'comment_body' => $commentBody,
+        'comment_type' => 'comment',
+        'subject' => 'Heartbeat Comment',
+        'uid' => \Drupal::currentUser()->id(),
+      ]);
+
+      if ($comment->save()) {
+$userview= user_view($comment->getOwner(), 'comment');
+$cid = $comment->id();
+$body = $commentBody;
+        $response = new AjaxResponse();
+        $response->addCommand(new AppendCommand(
+          '#heartbeat-' . $config->get('entity_id') . ' .heartbeat-comments',
+          '<div id="heartbeat-comment-' . $comment->id() . '"><span class="comment-owner"><span class="comment-username">' . \Drupal::currentUser()->getAccountName() . '</span>' . render($userview) . '<span class"comment-ago">1 sec ago</span></span><span class="comment-body">' . $commentBody . '</span></div>')
+        );
+
+        return $response;
+      }
     }
-
+    return null;
   }
 
   /**

+ 25 - 13
src/HeartbeatStreamServices.php

@@ -182,6 +182,31 @@ class HeartbeatStreamServices {
     return null;
   }
 
+  public function getOlderStreamForUidsByType($uids, $type, $hid) {
+    $currentUid = \Drupal::currentUser()->id();
+    $stream = $this->entityTypeManager->getStorage('heartbeat_stream')->load(array_values($this->loadStream($type))[0]);
+    if ($stream !== null) {
+      $types = array();
+      foreach ($stream->getTypes() as $heartbeatType) {
+        $value = $heartbeatType->getValue()['target_id'];
+        if ($value !== "0") {
+          $types[] = $value;
+        }
+      }
+//      $uids[] = $currentUid;
+      $beats = $this->entityTypeManager->getStorage('heartbeat')->loadMultiple($this->entityQuery->get('heartbeat')->condition('status', 1)->condition('id', $hid, '<')->condition('type', $types, 'IN')->condition('uid', $uids, 'IN')->sort('created', 'DESC')->range(0,50)->execute());
+
+      if (count($beats) > 0) {
+        $this->lastId = call_user_func('end', array_keys($beats));
+
+        $this->configFactory->getEditable('heartbeat_update_feed.settings')->set('lastId', $this->lastId)->set('update', false)->set('timestamp', array_values($beats)[0]->getRevisionCreationTime())->save();
+
+        return $beats;
+      }
+    }
+    return null;
+  }
+
 
   public function createHashStreamForUidsByType($uids, $type, $tid) {
     $currentUid = \Drupal::currentUser()->id();
@@ -200,19 +225,6 @@ class HeartbeatStreamServices {
       $hids[] = $id;
     }
 
-
-//    $stream = $this->entityTypeManager->getStorage('heartbeat_stream')->load(array_values($this->loadStream($type))[0]);
-//    if ($stream !== null) {
-//      $types = array();
-//      foreach ($stream->getTypes() as $heartbeatType) {
-//        $value = $heartbeatType->getValue()['target_id'];
-//        if ($value !== "0") {
-//          $types[] = $value;
-//        }
-//      }
-//      $uids[] = $currentUid;
-
-
     if (!empty($hids)) {
       $beats = $this->entityTypeManager->getStorage('heartbeat')
         ->loadMultiple($this->entityQuery->get('heartbeat')

+ 27 - 8
src/Plugin/Block/HeartbeatBlock.php

@@ -198,18 +198,24 @@ class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterfac
       $cids = \Drupal::entityQuery('comment')
         ->condition('entity_id', $heartbeat->id())
         ->condition('entity_type', 'heartbeat')
-        ->sort('cid', 'DESC')
+        ->sort('cid', 'ASC')
         ->execute();
 
       $comments = [];
 
       foreach($cids as $cid) {
 
-//        $comment = $this->entityTypeManager->getStorage('comment')->load($cid);
-          $comment = Comment::load($cid);
-//        $comment->delete();
+        $comment = Comment::load($cid);
+
+        $commentOwner = user_view($comment->getOwner(), 'comment');
+        $comments[] = [
+          'id' => $cid,
+          'body' => $comment->get('comment_body')->value,
+          'username' => $comment->getAuthorName(),
+          'owner' => $commentOwner,
+          'timeAgo' => $this->dateFormatter->formatInterval(REQUEST_TIME - $comment->getCreatedTime())
+        ];
 
-        $comments[] = $comment->get('comment_body')->value;
       }
 
 //      $heartbeatCommentBlock = \Drupal\block\Entity\Block::load('heartbeatcommentblock');
@@ -219,9 +225,21 @@ class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterfac
       $form = \Drupal::service('form_builder')->getForm('\Drupal\heartbeat\Form\HeartbeatCommentForm', $heartbeat);
 
       $likeFlag = $this->flagService->getFlagById('heartbeat_like');
+      $unlikeFlag = $this->flagService->getFlagById('jihad_flag');
+
+
+      $unlikeKey = 'flag_' . $unlikeFlag->id();
+      $unlikeData = [
+        '#lazy_builder' => ['flag.link_builder:build', [
+          $heartbeat->getEntityTypeId(),
+          $heartbeat->id(),
+          $unlikeFlag->id(),
+        ]],
+        '#create_placeholder' => TRUE,
+      ];
 
-      $flagKey = 'flag_' . $likeFlag->id();
-      $flagData = [
+      $likeKey = 'flag_' . $likeFlag->id();
+      $likeData = [
         '#lazy_builder' => ['flag.link_builder:build', [
           $heartbeat->getEntityTypeId(),
           $heartbeat->id(),
@@ -238,7 +256,8 @@ class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterfac
         'user' => $userView,
         'commentForm' => $form,
         'comments' => $comments,
-        'likeFlag' => [$flagKey => $flagData],
+        'likeFlag' => [$likeKey => $likeData],
+        'unlikeFlag' => [$unlikeKey => $unlikeData]
         );
     }
 }

+ 26 - 7
src/Plugin/Block/HeartbeatHashBlock.php

@@ -193,18 +193,24 @@ class HeartbeatHashBlock extends BlockBase implements ContainerFactoryPluginInte
     $cids = \Drupal::entityQuery('comment')
       ->condition('entity_id', $heartbeat->id())
       ->condition('entity_type', 'heartbeat')
-      ->sort('cid', 'DESC')
+      ->sort('cid', 'ASC')
       ->execute();
 
     $comments = [];
 
     foreach($cids as $cid) {
 
-//        $comment = $this->entityTypeManager->getStorage('comment')->load($cid);
       $comment = Comment::load($cid);
-//        $comment->delete();
 
-      $comments[] = $comment->get('comment_body')->value;
+      $commentOwner = user_view($comment->getOwner(), 'comment');
+      $comments[] = [
+        'id' => $cid,
+        'body' => $comment->get('comment_body')->value,
+        'username' => $comment->getAuthorName(),
+        'owner' => $commentOwner,
+        'timeAgo' => $this->dateFormatter->formatInterval(REQUEST_TIME - $comment->getCreatedTime())
+      ];
+
     }
 
 //      $heartbeatCommentBlock = \Drupal\block\Entity\Block::load('heartbeatcommentblock');
@@ -214,9 +220,21 @@ class HeartbeatHashBlock extends BlockBase implements ContainerFactoryPluginInte
     $form = \Drupal::service('form_builder')->getForm('\Drupal\heartbeat\Form\HeartbeatCommentForm', $heartbeat);
 
     $likeFlag = $this->flagService->getFlagById('heartbeat_like');
+    $unlikeFlag = $this->flagService->getFlagById('jihad_flag');
+
+
+    $unlikeKey = 'flag_' . $unlikeFlag->id();
+    $unlikeData = [
+      '#lazy_builder' => ['flag.link_builder:build', [
+        $heartbeat->getEntityTypeId(),
+        $heartbeat->id(),
+        $unlikeFlag->id(),
+      ]],
+      '#create_placeholder' => TRUE,
+    ];
 
-    $flagKey = 'flag_' . $likeFlag->id();
-    $flagData = [
+    $likeKey = 'flag_' . $likeFlag->id();
+    $likeData = [
       '#lazy_builder' => ['flag.link_builder:build', [
         $heartbeat->getEntityTypeId(),
         $heartbeat->id(),
@@ -233,7 +251,8 @@ class HeartbeatHashBlock extends BlockBase implements ContainerFactoryPluginInte
       'user' => $userView,
       'commentForm' => $form,
       'comments' => $comments,
-      'likeFlag' => [$flagKey => $flagData],
+      'likeFlag' => [$likeKey => $likeData],
+      'unlikeFlag' => [$unlikeKey => $unlikeData]
     );
   }
 }

+ 253 - 0
src/Plugin/Block/HeartbeatMoreBlock.php

@@ -0,0 +1,253 @@
+<?php
+
+namespace Drupal\heartbeat\Plugin\Block;
+
+use Drupal\comment\Entity\Comment;
+use Drupal\Core\Block\BlockBase;
+use Drupal\Core\Entity\EntityTypeManager;
+use Drupal\Core\Form\FormBuilder;
+use Drupal\flag\FlagService;
+use Drupal\User\Entity\User;
+use Drupal\Flag\Entity\Flag;
+use Drupal\Core\Datetime\DateFormatter;
+use Drupal\file\Entity\File;
+use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+use Drupal\Core\Database\Database;
+use Drupal\heartbeat\HeartbeatTypeServices;
+use Drupal\heartbeat\HeartbeatStreamServices;
+use Drupal\heartbeat\HeartbeatService;
+
+
+/**
+ * Provides a 'HeartbeatBlock' block.
+ *
+ * @Block(
+ *  id = "heartbeat_more_block",
+ *  admin_label = @Translation("Heartbeat More block"),
+ * )
+ */
+class HeartbeatMoreBlock extends BlockBase implements ContainerFactoryPluginInterface {
+
+  /**
+   * Drupal\heartbeat\HeartbeatTypeServices definition.
+   *
+   * @var \Drupal\heartbeat\HeartbeatTypeServices
+   */
+  protected $heartbeatTypeServices;
+  /**
+   * Drupal\heartbeat\HeartbeatStreamServices definition.
+   *
+   * @var \Drupal\heartbeat\HeartbeatStreamServices
+   */
+  protected $heartbeatStreamServices;
+  /**
+   * Drupal\heartbeat\HeartbeatService definition.
+   *
+   * @var \Drupal\heartbeat\HeartbeatService
+   */
+  protected $heartbeatService;
+
+  protected $entityTypeManager;
+
+  protected $dateFormatter;
+
+  protected $flagService;
+
+  protected $formBuilder;
+  /**
+   * Construct.
+   *
+   * @param array $configuration
+   *   A configuration array containing information about the plugin instance.
+   * @param string $plugin_id
+   *   The plugin_id for the plugin instance.
+   * @param string $plugin_definition
+   *   The plugin implementation definition.
+   */
+  public function __construct(
+        array $configuration,
+        $plugin_id,
+        $plugin_definition,
+        HeartbeatTypeServices $heartbeat_heartbeattype,
+	HeartbeatStreamServices $heartbeatstream,
+	HeartbeatService $heartbeat, EntityTypeManager $entity_type_manager, DateFormatter $date_formatter, FlagService $flag_service, FormBuilder $form_builder
+  ) {
+    parent::__construct($configuration, $plugin_id, $plugin_definition);
+    $this->heartbeatTypeServices = $heartbeat_heartbeattype;
+    $this->heartbeatStreamServices = $heartbeatstream;
+    $this->heartbeatService = $heartbeat;
+    $this->entityTypeManager = $entity_type_manager;
+    $this->dateFormatter = $date_formatter;
+    $this->flagService = $flag_service;
+    $this->formBuilder = $form_builder;
+  }
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
+    return new static(
+      $configuration,
+      $plugin_id,
+      $plugin_definition,
+      $container->get('heartbeat.heartbeattype'),
+      $container->get('heartbeatstream'),
+      $container->get('heartbeat'),
+      $container->get('entity_type.manager'),
+      $container->get('date.formatter'),
+      $container->get('flag'),
+      $container->get('form_builder')
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   * @throws \Drupal\Core\Database\InvalidQueryException
+   */
+  public function build() {
+
+    $feedConfig = \Drupal::config('heartbeat_feed.settings');
+    $myConfig = \Drupal::config('heartbeat_more.settings');
+    $friendData = \Drupal::config('heartbeat_friendship.settings')->get('data');
+
+    $hid = $myConfig->get('hid');
+    $feed = $feedConfig->get('message');
+
+    $uids = null;
+    $messages = array();
+
+    $query = Database::getConnection()->select('heartbeat_friendship', 'hf')
+      ->fields('hf', ['uid', 'uid_target']);
+    $conditionOr = $query->orConditionGroup()
+      ->condition('hf.uid', \Drupal::currentUser()->id())
+      ->condition('hf.uid_target', \Drupal::currentUser()->id());
+
+    $results = $query->condition($conditionOr)->execute();
+    if ($result = $results->fetchAll()) {
+      $uids = array();
+      foreach ($result as $uid) {
+        $uids[] = $uid->uid_target;
+        $uids[] = $uid->uid;
+      }
+    }
+    if ($feed !== null) {
+      $uids = count($uids) > 1 ? array_unique($uids) : $uids;
+      if (!empty($uids)) {
+        foreach ($this->heartbeatStreamServices->getOlderStreamForUidsByType($uids, $feed, $hid) as $heartbeat) {
+          $this->renderMessage($messages, $heartbeat);
+        }
+      }
+      if (count($messages) > 0) {
+        return [
+          '#theme' => 'heartbeat_stream',
+          '#messages' => $messages,
+          '#attached' => array(
+            'library' => 'heartbeat/heartbeat',
+            'drupalSettings' => [
+              'activeFeed' => 'jigga',
+              'friendData' => $friendData,
+            ]
+          ),
+          '#cache' => array('max-age' => 0)
+        ];
+      }
+    }
+    return [
+      '#type' => 'markup',
+      '#markup' => 'End of feed',
+    ];
+  }
+
+  private function renderMessage(array &$messages, $heartbeat) {
+
+    $timeago = $this->dateFormatter->formatInterval(REQUEST_TIME - $heartbeat->getCreatedTime());
+    $user = $heartbeat->getOwner();
+//      $rendered = $this->entityTypeManager->getViewBuilder('user')->view($user, 'full');
+    $userView = user_view($user, 'compact');
+//      $flag = $this->flagService->getFlagById("friendship");
+//      $flagLink = $flag->getLinkTypePlugin()->getAsLink($flag, $user);
+//      $flagUrl = $flagLink->getUrl()->toString();
+//      $flagText = $flagLink->getText();
+    $userPic = $user->get('user_picture')->getValue();
+    if (!empty($userPic)) {
+      $profilePic = $user->get('user_picture')->getValue()[0]['target_id'];
+    }
+
+    if (NULL === $profilePic) {
+      $profilePic = 86;
+    }
+
+    $pic = File::load($profilePic);
+
+    if ($pic !== NULL) {
+      $style = $this->entityTypeManager->getStorage('image_style')
+        ->load('thumbnail');
+      $rendered = $style->buildUrl($pic->getFileUri());
+    }
+
+    $cids = \Drupal::entityQuery('comment')
+      ->condition('entity_id', $heartbeat->id())
+      ->condition('entity_type', 'heartbeat')
+      ->sort('cid', 'ASC')
+      ->execute();
+
+    $comments = [];
+
+    foreach($cids as $cid) {
+
+      $comment = Comment::load($cid);
+
+      $commentOwner = user_view($comment->getOwner(), 'comment');
+      $comments[] = [
+        'id' => $cid,
+        'body' => $comment->get('comment_body')->value,
+        'username' => $comment->getAuthorName(),
+        'owner' => $commentOwner,
+        'timeAgo' => $this->dateFormatter->formatInterval(REQUEST_TIME - $comment->getCreatedTime())
+      ];
+
+    }
+
+//      $heartbeatCommentBlock = \Drupal\block\Entity\Block::load('heartbeatcommentblock');
+//      $commentForm = $this->entityTypeManager->getViewBuilder('block')
+//        ->view($heartbeatCommentBlock);
+
+    $form = \Drupal::service('form_builder')->getForm('\Drupal\heartbeat\Form\HeartbeatCommentForm', $heartbeat);
+
+    $likeFlag = $this->flagService->getFlagById('heartbeat_like');
+    $unlikeFlag = $this->flagService->getFlagById('jihad_flag');
+
+
+    $unlikeKey = 'flag_' . $unlikeFlag->id();
+    $unlikeData = [
+      '#lazy_builder' => ['flag.link_builder:build', [
+        $heartbeat->getEntityTypeId(),
+        $heartbeat->id(),
+        $unlikeFlag->id(),
+      ]],
+      '#create_placeholder' => TRUE,
+    ];
+
+    $likeKey = 'flag_' . $likeFlag->id();
+    $likeData = [
+      '#lazy_builder' => ['flag.link_builder:build', [
+        $heartbeat->getEntityTypeId(),
+        $heartbeat->id(),
+        $likeFlag->id(),
+      ]],
+      '#create_placeholder' => TRUE,
+    ];
+
+    $messages[] = array('heartbeat' => $heartbeat->getMessage()->getValue()[0]['value'],
+      'userPicture' => $rendered,
+      'userId' => $user->id(),
+      'timeAgo' => $timeago,
+      'id' => $heartbeat->id(),
+      'user' => $userView,
+      'commentForm' => $form,
+      'comments' => $comments,
+      'likeFlag' => [$likeKey => $likeData],
+      'unlikeFlag' => [$unlikeKey => $unlikeData]
+    );
+  }
+}

+ 8 - 2
templates/heartbeat-stream.html.twig

@@ -37,13 +37,19 @@
         <div class="heartbeat-like">
           {{ message.likeFlag }}
         </div>
+        <div class="heartbeat-unlike">
+          {{ message.unlikeFlag }}
+        </div>
         <div class="heartbeat-comment" id="comment-{{ message.id }}">
-          {{ message.commentForm }}
           <div class="heartbeat-comments">
             {% for comment in message.comments %}
-            {{ comment }}
+              <div id="heartbeat-comment-{{ comment.id }}">
+                <span class="comment-owner"><span class="comment-username">{{ comment.username }}</span>{{ comment.owner }}<span class="comment-ago">{{ comment.timeAgo }} ago</span></span>
+                <span class="comment-body">{{ comment.body }}</span>
+              </div>
             {% endfor %}
           </div>
+          {{ message.commentForm }}
         </div>
       </div>
     </div>