heartbeat.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /**
  2. * Created by logicp on 5/28/17.
  3. */
  4. (function($, Drupal, drupalSettings) {
  5. Drupal.behaviors.heartbeat = {
  6. attach: function (context, settings) {
  7. if (drupalSettings.friendData != null) {
  8. var divs = document.querySelectorAll('.flag-friendship a.use-ajax');
  9. for (let i = 0; i < divs.length; i++) {
  10. let anchor = divs[i];
  11. var userId = anchor.href.substring(anchor.href.indexOf('friendship') + 11, anchor.href.indexOf('?destination'));
  12. JSON.parse(drupalSettings.friendData).forEach(function (friendship) {
  13. if (friendship.uid_target === userId && friendship.uid == drupalSettings.user.uid && friendship.status == 0) {
  14. anchor.innerHTML = 'Friendship Pending';
  15. }
  16. });
  17. }
  18. }
  19. feedElement = document.querySelector('.heartbeat-stream');
  20. if (drupalSettings.feedUpdate == true) {
  21. updateFeed();
  22. }
  23. Drupal.AjaxCommands.prototype.selectFeed = function(ajax, response, status) {
  24. $.ajax({
  25. type:'POST',
  26. url:'/heartbeat/render_feed/' + response.feed,
  27. success: function(response) {
  28. feedElement = document.querySelector('.heartbeat-stream');
  29. if (feedElement != null) {
  30. feedElement.innerHTML = response;
  31. } else {
  32. feedBlock = document.getElementById('block-heartbeatblock');
  33. insertNode = document.createElement('div');
  34. insertNode.innerHTML = response;
  35. feedBlock.appendChild(insertNode);
  36. }
  37. }
  38. });
  39. };
  40. Drupal.AjaxCommands.prototype.updateFeed = function(ajax, response, status) {
  41. if (response.update) {
  42. $.ajax({
  43. type: 'POST',
  44. url:'/heartbeat/update_feed/' + response.timestamp,
  45. success: function(response) {
  46. }
  47. });
  48. }
  49. };
  50. listenImages();
  51. listenCommentPost();
  52. Drupal.AjaxCommands.prototype.myfavouritemethodintheworld = function(ajax, response, status) {
  53. console.dir(response);
  54. if (response.cid) {
  55. console.log('this shit is getting called again');
  56. let parentComment = document.getElementById('heartbeat-comment-' + response.cid);
  57. let text = parentComment.querySelector('.form-textarea');
  58. text.addEventListener('keydown', function (e) {
  59. console.dir(e);
  60. if (e.keyCode === 13) {
  61. let submitBtn = parentComment.querySelector('.form-submit');
  62. submitBtn.click();
  63. }
  64. });
  65. }
  66. }
  67. }
  68. };
  69. function updateFeed() {
  70. $.ajax({
  71. type: 'POST',
  72. url: '/heartbeat/form/heartbeat_update_feed',
  73. success: function (response) {
  74. }
  75. })
  76. }
  77. function listenImages() {
  78. let cboxOptions = {
  79. width: '95%',
  80. height: '95%',
  81. maxWidth: '960px',
  82. maxHeight: '960px',
  83. };
  84. $('.heartbeat-content').find('img').each(function() {
  85. let parentClass = $(this).parent().prop('className');
  86. let phid = parentClass.substring(parentClass.indexOf('hid') + 4);
  87. $(this).colorbox({rel: phid, href: $(this).attr('src'), cboxOptions});
  88. });
  89. }
  90. function listenCommentPost() {
  91. //TODO is drupal data selector enough? I doubt it.
  92. let comments = document.querySelectorAll('[data-drupal-selector]');
  93. for (let i = 0; i < comments.length; i++) {
  94. let comment = comments[i];
  95. // console.dir(comment);
  96. comment.addEventListener('click', function() {
  97. getParent(comment);
  98. })
  99. }
  100. }
  101. function getParent(node) {
  102. console.dir(node);
  103. if (node.classList.contains('heartbeat-comment')) {
  104. let id = node.id.substr(node.id.indexOf('-') + 1);
  105. $.ajax({
  106. type: 'POST',
  107. url:'/heartbeat/commentupdate/' + id,
  108. success: function(response) {
  109. }
  110. });
  111. } else {
  112. getParent(node.parentNode);
  113. }
  114. }
  115. function getScrollXY() {
  116. var scrOfX = 0, scrOfY = 0;
  117. if( typeof( window.pageYOffset ) == 'number' ) {
  118. //Netscape compliant
  119. scrOfY = window.pageYOffset;
  120. scrOfX = window.pageXOffset;
  121. } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
  122. //DOM compliant
  123. scrOfY = document.body.scrollTop;
  124. scrOfX = document.body.scrollLeft;
  125. } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
  126. //IE6 standards compliant mode
  127. scrOfY = document.documentElement.scrollTop;
  128. scrOfX = document.documentElement.scrollLeft;
  129. }
  130. return [ scrOfX, scrOfY ];
  131. }
  132. //taken from http://james.padolsey.com/javascript/get-document-height-cross-browser/
  133. function getDocHeight() {
  134. var D = document;
  135. return Math.max(
  136. D.body.scrollHeight, D.documentElement.scrollHeight,
  137. D.body.offsetHeight, D.documentElement.offsetHeight,
  138. D.body.clientHeight, D.documentElement.clientHeight
  139. );
  140. }
  141. document.addEventListener("scroll", function (event) {
  142. if (getDocHeight() == getScrollXY()[1] + window.innerHeight) {
  143. let streams = document.querySelectorAll('.heartbeat-stream');
  144. let stream = streams.length > 1 ? streams[streams.length - 1] : streams[0];
  145. if (stream !== null) {
  146. console.dir(stream);
  147. let lastHeartbeat = stream.lastElementChild;
  148. if (lastHeartbeat !== null) {
  149. let hid = lastHeartbeat.id.substring(lastHeartbeat.id.indexOf('-') + 1);
  150. $.ajax({
  151. type: 'POST',
  152. url: '/heartbeat/update_feed/' + hid,
  153. success: function (response) {
  154. feedBlock = document.getElementById('block-heartbeatblock');
  155. insertNode = document.createElement('div');
  156. insertNode.innerHTML = response;
  157. feedBlock.appendChild(insertNode);
  158. }
  159. });
  160. }
  161. }
  162. }
  163. });
  164. })(jQuery, Drupal, drupalSettings);