123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- 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.
- *
- * @property entity
- * @package Drupal\heartbeat\Form
- */
- class HeartbeatCommentForm extends FormBase {
- protected $entityId;
- /**
- * {@inheritdoc}
- */
- public function getFormId() {
- return 'heartbeat_comment_form';
- }
- /**
- * {@inheritdoc}
- */
- public function buildForm(array $form, FormStateInterface $form_state) {
- $form['comment_body'] = array(
- '#type' => 'textarea',
- '#prefix' => '<div class="heartbeat-comment-button">Comment</div>',
- '#title' => $this->t('Comment Body'),
- );
- $form['post'] = array(
- '#type' => 'submit',
- '#description' => 'Comment',
- '#value' => t('Comment'),
- '#ajax' => [
- 'callback' => '::commentAjaxSubmit',
- 'progress' => array(
- 'type' => 'throbber',
- 'message' => t('Posting Comment'),
- ),
- ]
- );
- return $form;
- }
- /**
- * {@inheritdoc}
- */
- public function commentAjaxSubmit(array &$form, FormStateInterface $form_state) {
- 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><span class="sub-comment"><a href="/heartbeat/subcommentrequest/' . $cid . '" class="button button-action use-ajax">Reply</a></span></div>')
- );
- return $response;
- }
- }
- return null;
- }
- /**
- * {@inheritdoc}
- */
- public function submitForm(array &$form, FormStateInterface $form_state) {
- }
- }
|