HeartbeatCommentForm.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. namespace Drupal\heartbeat\Form;
  3. use Drupal\Core\Form\FormBase;
  4. use Drupal\Core\Form\FormStateInterface;
  5. use Drupal\Comment\Entity\Comment;
  6. use Drupal\Core\Ajax\AjaxResponse;
  7. use Drupal\Core\Ajax\AppendCommand;
  8. /**
  9. * Class HeartbeatCommentForm.
  10. *
  11. * @property entity
  12. * @package Drupal\heartbeat\Form
  13. */
  14. class HeartbeatCommentForm extends FormBase {
  15. protected $entityId;
  16. /**
  17. * {@inheritdoc}
  18. */
  19. public function getFormId() {
  20. return 'heartbeat_comment_form';
  21. }
  22. /**
  23. * {@inheritdoc}
  24. */
  25. public function buildForm(array $form, FormStateInterface $form_state) {
  26. $form['comment_body'] = array(
  27. '#type' => 'textarea',
  28. '#prefix' => '<div class="heartbeat-comment-button">Comment</div>',
  29. '#title' => $this->t('Comment Body'),
  30. );
  31. $form['post'] = array(
  32. '#type' => 'submit',
  33. '#description' => 'Comment',
  34. '#value' => t('Comment'),
  35. '#ajax' => [
  36. 'callback' => '::commentAjaxSubmit',
  37. 'progress' => array(
  38. 'type' => 'throbber',
  39. 'message' => t('Posting Comment'),
  40. ),
  41. ]
  42. );
  43. return $form;
  44. }
  45. /**
  46. * {@inheritdoc}
  47. */
  48. public function commentAjaxSubmit(array &$form, FormStateInterface $form_state) {
  49. if (\Drupal::currentUser()->isAuthenticated()) {
  50. $commentBody = $form_state->getValue('comment_body');
  51. $config = \Drupal::config('heartbeat_comment.settings');
  52. $comment = Comment::create([
  53. 'entity_type' => 'heartbeat',
  54. 'entity_id' => $config->get('entity_id'),
  55. 'field_name' => 'comment',
  56. 'comment_body' => $commentBody,
  57. 'comment_type' => 'comment',
  58. 'subject' => 'Heartbeat Comment',
  59. 'uid' => \Drupal::currentUser()->id(),
  60. ]);
  61. if ($comment->save()) {
  62. $userview= user_view($comment->getOwner(), 'comment');
  63. $cid = $comment->id();
  64. $body = $commentBody;
  65. $response = new AjaxResponse();
  66. $response->addCommand(new AppendCommand(
  67. '#heartbeat-' . $config->get('entity_id') . ' .heartbeat-comments',
  68. '<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><span class="sub-comment"><a href="/heartbeat/subcommentrequest/' . $cid . '" class="button button-action use-ajax">Reply</a></span></div>')
  69. );
  70. return $response;
  71. }
  72. }
  73. return null;
  74. }
  75. /**
  76. * {@inheritdoc}
  77. */
  78. public function submitForm(array &$form, FormStateInterface $form_state) {
  79. }
  80. }