Browse Source

HeartbeatStream -> we have a stream rendering into a template!

logicp 7 years ago
parent
commit
b6979537ef

+ 1 - 1
src/Controller/StreamTestController.php

@@ -89,7 +89,7 @@ class StreamTestController extends ControllerBase {
 
     return [
       '#theme' => 'heartbeat_stream',
-      '#messages' => $messages,
+      '#messages' => array_reverse($messages),
     ];
   }
 

+ 1 - 1
src/Entity/Heartbeat.php

@@ -433,7 +433,7 @@ class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterf
   private static function mediaTag($type, $filePath) {
     //TODO put this into new method
     if ($type == 'image') { $type = 'img';}
-    return '<'. $type . ' src="' . $filePath . '" / >';
+    return '<'. $type . ' src="' . str_replace('public://', '/sites/default/files/', $filePath) . '" / >';
   }
 
 

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

@@ -19,7 +19,9 @@
   {% if content %}
     {{- content -}}
   {% endif %}
+  {% autoescape false %}
   {% for message in messages %}
-    Message: {{ message }}
-  <h1> jigga man </h1>
+    {{ message }} <br>
+  {% endfor %}
+  {% endautoescape %}
 </div>