Browse Source

Major changes

logicp 7 years ago
parent
commit
0071505470

+ 39 - 3
css/heartbeat.css

@@ -84,7 +84,43 @@ Temporarily hiding all irrelevant content */
   margin-left: 0;
 }
 
-heartbeat-stream section.section {
-  padding: 0;
- }
+/*heartbeat-stream section.section {*/
+  /*padding: 0;*/
+/*}*/
+
+.heartbeat-youtube {
+  display: block;
+}
+
+/*@media (min-width: 532px)*/
+/*and (max-width: 767px) {*/
+/*}*/
+
+/*@media (min-width: 300px) and (max-width: 420px)*/
+/*and (min-height: 640px) and (max-height: 768px) {*/
+
+/*}*/
+
+/*@media (min-width: 532px) and (max-height: 370px) and (max-width: 767px) {*/
+/*}*/
+
+/*@media all and (min-width: 768px) and (max-width: 960px) {*/
+/*}*/
+
+/*@media (min-height: 320px) and (max-height: 420px) and (max-width: 768px) {*/
+
+/*}*/
+
+/*@media (min-height: 420px) and (max-width: 768px) {*/
+/*}*/
+
+/*@media (min-width: 960px) {*/
+/*}*/
+
+/*@media all and (max-width: 767px) {*/
+
+/*}*/
+
+/*@media all and (min-width: 300px) {*/
+/*}*/
 

+ 11 - 0
heartbeat.module

@@ -353,6 +353,17 @@ function heartbeat_cron() {
 
 }
 
+/**
+ * Implements hook_flag_options_alter().
+ */
+function heartbeat_flag_options_alter(array &$options, FlagInterface $flag) {
+  $jigga = null;
+
+  $dis = 'the best';
+
+  $another = 'faggot';
+}
+
 /**
  * Implements hook_entity_bundle_create().
  */

+ 1 - 1
src/Entity/Heartbeat.php

@@ -472,7 +472,7 @@ class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterf
       return '<' . $type . ' src="' . str_replace('public://', '/sites/default/files/', $filePath) . '" / >';
     } else if ($type == 'youtube') {
       $filePath = str_replace('youtube://', 'http://www.youtube.com/embed/', $filePath);
-      return '<iframe width="560" height="315" src="' . $filePath . '" frameborder="0"></iframe>';
+      return '<iframe class="heartbeat-youtube" width="auto" height="auto" src="' . $filePath . '" frameborder="0"></iframe>';
     }
   }
 

+ 1 - 3
src/Form/HeartbeatFeedForm.php

@@ -88,7 +88,6 @@ class HeartbeatFeedForm extends FormBase {
               $this->streams[$heartbeatStream->getName()] = t($heartbeatStream->getName());
           }
       }
-
     $form['feedtabs'] = [
       '#type' => 'radios',
       '#title' => $this->t('Choose a feed'),
@@ -101,6 +100,7 @@ class HeartbeatFeedForm extends FormBase {
         'type' => 'none',
 //        'message' => t('Fetching feed'),
         ),
+        '#default' => $this->streams['Public'],
       ]
     ];
 
@@ -148,8 +148,6 @@ class HeartbeatFeedForm extends FormBase {
     $stophere = null;
     $stopthere = null;
 
-    \Drupal::logger('HeartbeatFeedForm::submitForm')->debug('Jigga what is %arg', ['%arg' => $arg]);
-
     foreach ($form_state->getValues() as $key => $value) {
         drupal_set_message($key . ': ' . $value);
     }

+ 45 - 3
src/Form/HeartbeatForm.php

@@ -12,15 +12,18 @@ use Drupal\heartbeat\Entity;
  * @ingroup heartbeat
  */
 class HeartbeatForm extends ContentEntityForm {
-
+//TODO add dependency injection
+  protected $nodeManager;
   /**
    * {@inheritdoc}
    */
   public function buildForm(array $form, FormStateInterface $form_state) {
+
+    $this->nodeManager = \Drupal::service('entity_type.manager')->getStorage('node');
     /* @var $entity \Drupal\heartbeat\Entity\Heartbeat */
     $form = parent::buildForm($form, $form_state);
-
-    if (!$this->entity->isNew()) {
+    $entity = &$this->entity;
+    if ($entity->isNew()) {
       $form['new_revision'] = array(
         '#type' => 'checkbox',
         '#title' => $this->t('Create new revision'),
@@ -29,6 +32,45 @@ class HeartbeatForm extends ContentEntityForm {
       );
     }
 
+    $form['uid'] = array(
+      '#type' => 'entity_autocomplete',
+      '#target_type' => 'user',
+      '#default_value' => $entity->getOwner()->isAnonymous() ? NULL : $entity->getOwner(),
+      // A comment can be made anonymous by leaving this field empty therefore
+      // there is no need to list them in the autocomplete.
+      '#selection_settings' => ['include_anonymous' => FALSE],
+      '#title' => $this->t('Authored by'),
+      '#description' => $this->t('No cucks.')
+    );
+
+    $form['message'] = array(
+      '#type' => 'textarea',
+      '#description' => t('The Heartbeat message'),
+      '#title' => 'Message',
+      '#default' => $entity->getMessage()->getValue()[0]['value'],
+      '#value' => $entity->getMessage()->getValue()[0]['value'],
+    );
+
+    $nodeId = $entity->getNid()->getValue()[0]['target_id'];
+    $node = $this->nodeManager->load($nodeId);
+
+    $form['nid'] = array(
+      '#type' => 'entity_autocomplete',
+      '#entity_type' => 'node',
+      '#target_type' => 'node',
+      '#selection_handler' => 'default',
+      '#default_value' => $nodeId > 0 ? null : $this->nodeManager->load($nodeId),
+      '#title' => 'Node',
+      '#description' => t('The node referenced by this Heartbeat')
+    );
+
+    $form['status'] = array(
+      '#type' => 'checkbox',
+      '#title' => 'Status',
+      '#description' => t('Published'),
+      '#default_value' => $entity->isPublished(),
+    );
+
     $entity = $this->entity;
 
     return $form;

+ 7 - 3
src/Form/HeartbeatStreamForm.php

@@ -87,23 +87,27 @@ class HeartbeatStreamForm extends ContentEntityForm {
       );
     }
 
-    $form['types'] = array(
-
+  $form['types'] = array(
+//TODO this isn't setting defaults
       '#type' => 'checkboxes',
       '#options' => $this->heartbeatTypeService->getTypes(),
       '#title' => $this->t('Please select all the Heartbeat Types you wish to include in this stream'),
+      '#default' => array(0,1),
+      '#value' => array(0,1),
     );
 
     $form['path'] = array(
       '#type' => 'textfield',
       '#description' => 'The relative url path for this Heartbeat Stream',
       '#default' => $entity->getPath(),
+      '#value' => $entity->getPath()->getValue()[0]['value'],
     );
 
     $form['weight'] = array(
       '#type' => 'number',
       '#description' => 'The weight of the stream',
-      '#default' => $entity->getWeight()
+      '#default' => $entity->getWeight(),
+      '#value' => $entity->getWeight()->getValue()[0]['value'],
     );
 
     return $form;

+ 11 - 12
src/Form/HeartbeatTypeForm.php

@@ -116,12 +116,11 @@ class HeartbeatTypeForm extends EntityForm {
       '#description' => $this->t("Description of the Heartbeat Type"),
       '#required' => TRUE,
     );
-
-
+//TODO Select is nested, thus any returned value seems to be read as "true", which results in the first item within the nest being chosen as the value populating the form's field. This will need to be fixed to prevent wrongly changing one's values without thinking about it.
     $form['entity_type'] = array(
       '#type' => 'select',
       '#title' => $this->t('Entity Type'),
-//      '#default_value' => $heartbeat_type->getEntityType(),
+//      '#default_value' => $heartbeat_type->getMainEntity(),
       '#description' => $this->t("Primary Entity Type for this Heartbeat Type"),
       '#options' => array($this->entityTypes
       ),
@@ -162,7 +161,7 @@ class HeartbeatTypeForm extends EntityForm {
     $form['entity_bundles']['list'] = array(
       '#type' => 'select',
       '#title' => $this->t('Entity Bundles'),
-//      '#default_value' => $heartbeat_type->getEntityType(),
+      '#default_value' => $heartbeat_type->getBundle(),
       '#description' => $this->t("Any bundles available to the specified entity"),
       '#options' => $bundles,
     );
@@ -194,11 +193,11 @@ class HeartbeatTypeForm extends EntityForm {
       '#default_value' => $heartbeat_type->getPerms(),
       '#description' => $this->t("Default permissions to view Heartbeats of this type"),
       '#options' => array(
-        HEARTBEAT_NONE => 'None',
-        HEARTBEAT_PRIVATE => 'Private',
-        HEARTBEAT_PUBLIC_TO_ADDRESSEE => 'Public to Addressee',
-        HEARTBEAT_PUBLIC_TO_CONNECTED => 'Public to Connected',
-        HEARTBEAT_PUBLIC_TO_ALL => 'Public to All',
+        Entity\HEARTBEAT_NONE => 'None',
+        Entity\HEARTBEAT_PRIVATE => 'Private',
+        Entity\HEARTBEAT_PUBLIC_TO_ADDRESSEE => 'Public to Addressee',
+        Entity\HEARTBEAT_PUBLIC_TO_CONNECTED => 'Public to Connected',
+        Entity\HEARTBEAT_PUBLIC_TO_ALL => 'Public to All',
 
       ),
       '#required' => TRUE,
@@ -211,9 +210,9 @@ class HeartbeatTypeForm extends EntityForm {
       '#default_value' => 0,
       '#description' => $this->t("Type of group associated with Heartbeats of this type"),
       '#options' => array(
-        HEARTBEAT_GROUP_NONE => 'None',
-        HEARTBEAT_GROUP_SINGLE =>'Single',
-        HEARTBEAT_GROUP_SUMMARY => 'Group',
+        Entity\HEARTBEAT_GROUP_NONE => 'None',
+        Entity\HEARTBEAT_GROUP_SINGLE =>'Single',
+        Entity\HEARTBEAT_GROUP_SUMMARY => 'Group',
       ),
       '#required' => TRUE,
     );