Browse Source

Development on Heartpost autogeneration

logicp 7 years ago
parent
commit
7808518500
2 changed files with 11 additions and 2 deletions
  1. 1 0
      heartbeat.libraries.yml
  2. 10 2
      src/Plugin/Block/HeartbeatBlock.php

+ 1 - 0
heartbeat.libraries.yml

@@ -10,6 +10,7 @@ heartbeat:
       css/heartbeat.css: {}
   js:
     js/heartbeat.js: {}
+    js/jquery.colorbox-min.js: {}
   dependencies:
     - core/jquery
     - core/jquery.once

+ 10 - 2
src/Plugin/Block/HeartbeatBlock.php

@@ -170,13 +170,16 @@ class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterfac
 //      $flagLink = $flag->getLinkTypePlugin()->getAsLink($flag, $user);
 //      $flagUrl = $flagLink->getUrl()->toString();
 //      $flagText = $flagLink->getText();
-      $profilePic = $user->get('user_picture')->getValue()[0]['target_id'];
+      $userPic = $user->get('user_picture')->getValue();
+      if (!empty($userPic)) {
+        $profilePic = $user->get('user_picture')->getValue()[0]['target_id'];
+      }
 
 //      $commentForm = $this->formBuilder->getForm('Drupal\comment\CommentForm', $heartbeat);
 
 //      $flagRenderable = $flagLink->toRenderable();
 
-      if ($profilePic === null) {
+      if (null === $profilePic) {
         $profilePic = 86;
       }
 
@@ -191,6 +194,11 @@ class HeartbeatBlock extends BlockBase implements ContainerFactoryPluginInterfac
 
 //TODO GET ACTION AND APPEND TO CLASSES IN FLAG WRAPPER
 
+
+
+
+
+
       $messages[] = array('heartbeat' => $heartbeat->getMessage()->getValue()[0]['value'],
         'userPicture' => $rendered,
         'userId' => $user->id(),