'textarea', '#prefix' => '
', '#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', '