HeartbeatFeedForm.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace Drupal\heartbeat\Form;
  3. use Drupal\Core\Form\FormAjaxException;
  4. use Drupal\Core\Form\FormBase;
  5. use Drupal\Core\Form\FormStateInterface;
  6. use Drupal\Core\Render\Element\Ajax;
  7. use Drupal\heartbeat\Ajax\SelectFeedCommand;
  8. use Symfony\Component\DependencyInjection\ContainerInterface;
  9. use Drupal\heartbeat\HeartbeatService;
  10. use Drupal\heartbeat\HeartbeatTypeServices;
  11. use Drupal\heartbeat\HeartbeatStreamServices;
  12. use Drupal\Core\Ajax\AjaxResponse;
  13. /**
  14. * Class HeartbeatFeedForm.
  15. *
  16. * @package Drupal\heartbeat\Form
  17. */
  18. class HeartbeatFeedForm extends FormBase {
  19. /**
  20. * Drupal\heartbeat\HeartbeatService definition.
  21. *
  22. * @var \Drupal\heartbeat\HeartbeatService
  23. */
  24. protected $heartbeatService;
  25. /**
  26. * Drupal\heartbeat\HeartbeatTypeServices definition.
  27. *
  28. * @var \Drupal\heartbeat\HeartbeatTypeServices
  29. */
  30. protected $typeService;
  31. /**
  32. * Drupal\heartbeat\HeartbeatStreamServices definition.
  33. *
  34. * @var \Drupal\heartbeat\HeartbeatStreamServices
  35. */
  36. protected $streamService;
  37. /**
  38. * The currently selected stream
  39. * @var
  40. */
  41. private $stream;
  42. private $streams;
  43. public function __construct(
  44. HeartbeatService $heartbeat,
  45. HeartbeatTypeServices $heartbeat_heartbeattype,
  46. HeartbeatStreamServices $heartbeatstream
  47. ) {
  48. $this->heartbeatService = $heartbeat;
  49. $this->typeService = $heartbeat_heartbeattype;
  50. $this->streamService = $heartbeatstream;
  51. }
  52. public static function create(ContainerInterface $container) {
  53. return new static(
  54. $container->get('heartbeat'),
  55. $container->get('heartbeat.heartbeattype'),
  56. $container->get('heartbeatstream')
  57. );
  58. }
  59. /**
  60. * {@inheritdoc}
  61. */
  62. public function getFormId() {
  63. return 'heartbeat_feed_form';
  64. }
  65. /**
  66. * {@inheritdoc}
  67. */
  68. public function buildForm(array $form, FormStateInterface $form_state) {
  69. if ($this->stream === null) {
  70. $this->stream = $form_state->getValue('feedtabs');
  71. }
  72. if ($this->streams === null) {
  73. foreach ($this->streamService->getAllStreams() as $heartbeatStream) {
  74. $this->streams[$heartbeatStream->getName()] = t($heartbeatStream->getName());
  75. }
  76. }
  77. $form['feedtabs'] = [
  78. '#type' => 'radios',
  79. '#title' => $this->t('Choose a feed'),
  80. // '#description' => $this->t('User selectable feeds'),
  81. '#options' => $this->streams,
  82. '#ajax' => [
  83. 'callback' => '::updateFeed',
  84. // 'event' => 'onclick',
  85. 'progress' => array(
  86. 'type' => 'none',
  87. // 'message' => t('Fetching feed'),
  88. ),
  89. '#default' => $this->streams['Public'],
  90. ]
  91. ];
  92. // $form['feedsearch'] = [
  93. // '#type' => 'search',
  94. // ];
  95. // $form['submit'] = [
  96. // '#type' => 'submit',
  97. // '#value' => $this->t('Search'),
  98. // ];
  99. $form['#attached']['library'][] = 'heartbeat/heartbeat';
  100. return $form;
  101. }
  102. /**
  103. * @param array $form
  104. * @param FormStateInterface $form_state
  105. * @return AjaxResponse
  106. */
  107. public function updateFeed(array &$form, FormStateInterface $form_state) {
  108. $response = new AjaxResponse();
  109. $response->addCommand(new SelectFeedCommand($form_state->getValue('feedtabs')));
  110. return $response;
  111. }
  112. /**
  113. * {@inheritdoc}
  114. */
  115. public function validateForm(array &$form, FormStateInterface $form_state) {
  116. parent::validateForm($form, $form_state);
  117. }
  118. /**
  119. * {@inheritdoc}
  120. */
  121. public function submitForm(array &$form, FormStateInterface $form_state) {
  122. // Display result.
  123. $stophere = null;
  124. $stopthere = null;
  125. foreach ($form_state->getValues() as $key => $value) {
  126. drupal_set_message($key . ': ' . $value);
  127. }
  128. }
  129. }