heartbeat.js 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. let parentCheck = document.getElementById('heartbeat-comment-' + response.cid);
  56. let form = parentCheck.querySelector('form');
  57. console.log('this shit is getting called again');
  58. if (form == null) {
  59. $.ajax({
  60. type: 'POST',
  61. url: '/heartbeat/subcomment/' + response.cid,
  62. success: function (data) {
  63. let parentComment = document.getElementById('heartbeat-comment-' + response.cid);
  64. let insertNode = document.createElement('div');
  65. insertNode.innerHTML = data;
  66. parentComment.appendChild(insertNode);
  67. let text = parentComment.querySelector('.form-textarea');
  68. // text.addEventListener('keydown', function (e) {
  69. // console.dir(e);
  70. // // if (e.keyCode === 13) {
  71. // // let submitBtn = parentComment.querySelector('.form-submit');
  72. // // submitBtn.click();
  73. // // }
  74. // });
  75. }
  76. })
  77. }
  78. }
  79. }
  80. }
  81. };
  82. function updateFeed() {
  83. $.ajax({
  84. type: 'POST',
  85. url: '/heartbeat/form/heartbeat_update_feed',
  86. success: function (response) {
  87. }
  88. })
  89. }
  90. function listenImages() {
  91. let cboxOptions = {
  92. width: '95%',
  93. height: '95%',
  94. maxWidth: '960px',
  95. maxHeight: '960px',
  96. };
  97. $('.heartbeat-content').find('img').each(function() {
  98. $(this).colorbox({href: $(this).attr('src'), cboxOptions});
  99. });
  100. }
  101. function listenCommentPost() {
  102. let comments = document.querySelectorAll('[data-drupal-selector]');
  103. for (let i = 0; i < comments.length; i++) {
  104. let comment = comments[i];
  105. // console.dir(comment);
  106. comment.addEventListener('click', function() {
  107. getParent(comment);
  108. })
  109. }
  110. }
  111. function getParent(node) {
  112. console.dir(node);
  113. if (node.classList.contains('heartbeat-comment')) {
  114. let id = node.id.substr(node.id.indexOf('-')+1);
  115. $.ajax({
  116. type: 'POST',
  117. url:'/heartbeat/commentupdate/' + id,
  118. success: function(response) {
  119. }
  120. });
  121. } else {
  122. getParent(node.parentNode);
  123. }
  124. }
  125. function getScrollXY() {
  126. var scrOfX = 0, scrOfY = 0;
  127. if( typeof( window.pageYOffset ) == 'number' ) {
  128. //Netscape compliant
  129. scrOfY = window.pageYOffset;
  130. scrOfX = window.pageXOffset;
  131. } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
  132. //DOM compliant
  133. scrOfY = document.body.scrollTop;
  134. scrOfX = document.body.scrollLeft;
  135. } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
  136. //IE6 standards compliant mode
  137. scrOfY = document.documentElement.scrollTop;
  138. scrOfX = document.documentElement.scrollLeft;
  139. }
  140. return [ scrOfX, scrOfY ];
  141. }
  142. //taken from http://james.padolsey.com/javascript/get-document-height-cross-browser/
  143. function getDocHeight() {
  144. var D = document;
  145. return Math.max(
  146. D.body.scrollHeight, D.documentElement.scrollHeight,
  147. D.body.offsetHeight, D.documentElement.offsetHeight,
  148. D.body.clientHeight, D.documentElement.clientHeight
  149. );
  150. }
  151. document.addEventListener("scroll", function (event) {
  152. if (getDocHeight() == getScrollXY()[1] + window.innerHeight) {
  153. let streams = document.querySelectorAll('.heartbeat-stream');
  154. let stream = streams.length > 1 ? streams[streams.length - 1] : streams[0];
  155. if (stream !== null) {
  156. console.dir(stream);
  157. let lastHeartbeat = stream.lastElementChild;
  158. if (lastHeartbeat !== null) {
  159. let hid = lastHeartbeat.id.substring(lastHeartbeat.id.indexOf('-') + 1);
  160. $.ajax({
  161. type: 'POST',
  162. url: '/heartbeat/update_feed/' + hid,
  163. success: function (response) {
  164. feedBlock = document.getElementById('block-heartbeatblock');
  165. insertNode = document.createElement('div');
  166. insertNode.innerHTML = response;
  167. feedBlock.appendChild(insertNode);
  168. }
  169. });
  170. }
  171. }
  172. }
  173. });
  174. })(jQuery, Drupal, drupalSettings);