|
@@ -7,6 +7,8 @@ use Drupal\Core\Form\FormStateInterface;
|
|
use Drupal\Comment\Entity\Comment;
|
|
use Drupal\Comment\Entity\Comment;
|
|
use Drupal\Core\Ajax\AjaxResponse;
|
|
use Drupal\Core\Ajax\AjaxResponse;
|
|
use Drupal\Core\Ajax\AppendCommand;
|
|
use Drupal\Core\Ajax\AppendCommand;
|
|
|
|
+use Symfony\Component\DependencyInjection\ContainerInterface;
|
|
|
|
+use Drupal\statusmessage\MarkupGenerator;
|
|
|
|
|
|
/**
|
|
/**
|
|
* Class HeartbeatCommentForm.
|
|
* Class HeartbeatCommentForm.
|
|
@@ -16,6 +18,20 @@ use Drupal\Core\Ajax\AppendCommand;
|
|
*/
|
|
*/
|
|
class HeartbeatCommentForm extends FormBase {
|
|
class HeartbeatCommentForm extends FormBase {
|
|
protected $entityId;
|
|
protected $entityId;
|
|
|
|
+ protected $markupGenerator;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * {@inheritdoc}
|
|
|
|
+ */
|
|
|
|
+ public static function create(ContainerInterface $container)
|
|
|
|
+ {
|
|
|
|
+ return new static(
|
|
|
|
+// $container->get('status_type_service'),
|
|
|
|
+// $container->get('statusservice'),
|
|
|
|
+ $container->get('markupgenerator'));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
/**
|
|
/**
|
|
* {@inheritdoc}
|
|
* {@inheritdoc}
|
|
@@ -24,6 +40,11 @@ class HeartbeatCommentForm extends FormBase {
|
|
return 'heartbeat_comment_form';
|
|
return 'heartbeat_comment_form';
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public function __construct() {
|
|
|
|
+ $this->markupGenerator = new MarkupGenerator();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* {@inheritdoc}
|
|
* {@inheritdoc}
|
|
*/
|
|
*/
|
|
@@ -60,11 +81,19 @@ class HeartbeatCommentForm extends FormBase {
|
|
$config = \Drupal::config('heartbeat_comment.settings');
|
|
$config = \Drupal::config('heartbeat_comment.settings');
|
|
|
|
|
|
if (strlen(trim($commentBody)) > 1) {
|
|
if (strlen(trim($commentBody)) > 1) {
|
|
|
|
+ $extraMarkup = null;
|
|
|
|
+ if (!empty($urls = $this->markupGenerator->validateUrl($commentBody))) {
|
|
|
|
+ $url = array_values($urls)[0];
|
|
|
|
+ $url = !is_array($url) ? $url : array_values($url)[0];
|
|
|
|
+ $this->markupGenerator->parseMarkup($url);
|
|
|
|
+ $extraMarkup = '<a href="' . $url . '" class="status-comment-share"> ' . $this->markupGenerator->generatePreview() . '</a>';
|
|
|
|
+ }
|
|
|
|
+
|
|
$comment = Comment::create([
|
|
$comment = Comment::create([
|
|
'entity_type' => 'heartbeat',
|
|
'entity_type' => 'heartbeat',
|
|
'entity_id' => $config->get('entity_id'),
|
|
'entity_id' => $config->get('entity_id'),
|
|
'field_name' => 'comment',
|
|
'field_name' => 'comment',
|
|
- 'comment_body' => $commentBody,
|
|
|
|
|
|
+ 'comment_body' => ['value' => $commentBody . $extraMarkup, 'format' => 'basic_html'],
|
|
'comment_type' => 'comment',
|
|
'comment_type' => 'comment',
|
|
'subject' => 'Heartbeat Comment',
|
|
'subject' => 'Heartbeat Comment',
|
|
'uid' => \Drupal::currentUser()->id(),
|
|
'uid' => \Drupal::currentUser()->id(),
|