heartbeat.js 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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. let stream = document.querySelector('.heartbeat-stream');
  68. let observer = new MutationObserver(function(mutations) {
  69. listenImages();
  70. });
  71. let config = { attributes: true, childList: true, characterData: true };
  72. observer.observe(stream, config);
  73. }
  74. };
  75. function updateFeed() {
  76. $.ajax({
  77. type: 'POST',
  78. url: '/heartbeat/form/heartbeat_update_feed',
  79. success: function (response) {
  80. }
  81. })
  82. }
  83. function listenImages() {
  84. let cboxOptions = {
  85. maxWidth: '960px',
  86. maxHeight: '960px',
  87. };
  88. $('.heartbeat-content').find('img').each(function() {
  89. let parentClass = $(this).parent().prop('className');
  90. let phid = parentClass.substring(parentClass.indexOf('hid') + 4);
  91. $(this).colorbox({rel: phid, href: $(this).attr('src'), cboxOptions});
  92. });
  93. }
  94. function listenCommentPost() {
  95. //TODO is drupal data selector enough? I doubt it.
  96. let comments = document.querySelectorAll('[data-drupal-selector]');
  97. for (let i = 0; i < comments.length; i++) {
  98. let comment = comments[i];
  99. // console.dir(comment);
  100. comment.addEventListener('click', function() {
  101. getParent(comment);
  102. })
  103. }
  104. }
  105. function getParent(node) {
  106. if (node != null && node != undefined && node.classList != undefined && node.classList.contains('heartbeat-comment')) {
  107. let id = node.id.substr(node.id.indexOf('-') + 1);
  108. $.ajax({
  109. type: 'POST',
  110. url:'/heartbeat/commentupdate/' + id,
  111. success: function(response) {
  112. }
  113. });
  114. } else {
  115. if (node != null && node.nodeName !== 'body') {
  116. getParent(node.parentNode);
  117. }
  118. }
  119. }
  120. function getScrollXY() {
  121. var scrOfX = 0, scrOfY = 0;
  122. if( typeof( window.pageYOffset ) == 'number' ) {
  123. //Netscape compliant
  124. scrOfY = window.pageYOffset;
  125. scrOfX = window.pageXOffset;
  126. } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
  127. //DOM compliant
  128. scrOfY = document.body.scrollTop;
  129. scrOfX = document.body.scrollLeft;
  130. } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
  131. //IE6 standards compliant mode
  132. scrOfY = document.documentElement.scrollTop;
  133. scrOfX = document.documentElement.scrollLeft;
  134. }
  135. return [ scrOfX, scrOfY ];
  136. }
  137. //taken from http://james.padolsey.com/javascript/get-document-height-cross-browser/
  138. function getDocHeight() {
  139. var D = document;
  140. return Math.max(
  141. D.body.scrollHeight, D.documentElement.scrollHeight,
  142. D.body.offsetHeight, D.documentElement.offsetHeight,
  143. D.body.clientHeight, D.documentElement.clientHeight
  144. );
  145. }
  146. document.addEventListener("scroll", function (event) {
  147. if (drupalSettings.filterMode == false && (getScrollXY()[1] + window.innerHeight) / getDocHeight() > 0.99) {
  148. let streams = document.querySelectorAll('.heartbeat-stream');
  149. let stream = streams.length > 1 ? streams[streams.length - 1] : streams[0];
  150. if (stream !== null) {
  151. console.dir(stream);
  152. let lastHeartbeat = stream.lastElementChild;
  153. if (lastHeartbeat !== null) {
  154. let hid = lastHeartbeat.id.substring(lastHeartbeat.id.indexOf('-') + 1);
  155. if (drupalSettings.lastHid !== hid) {
  156. drupalSettings.lastHid = hid;
  157. $.ajax({
  158. type: 'POST',
  159. url: '/heartbeat/update_feed/' + hid,
  160. success: function (response) {
  161. feedBlock = document.getElementById('block-heartbeatblock');
  162. insertNode = document.createElement('div');
  163. insertNode.innerHTML = response;
  164. feedBlock.appendChild(insertNode);
  165. }
  166. });
  167. }
  168. }
  169. }
  170. }
  171. });
  172. $(document).on('cbox_open', function() {
  173. $("#colorbox").swipe( {
  174. //Generic swipe handler for all directions
  175. swipeLeft:function(event, direction, distance, duration, fingerCount) {
  176. $.colorbox.prev();
  177. },
  178. swipeRight:function(event, direction, distance, duration, fingerCount) {
  179. $.colorbox.next();
  180. },
  181. //Default is 75px, set to 0 for demo so any distance triggers swipe
  182. threshold:25
  183. });
  184. let cboxCloseBtn = $('#cboxClose');
  185. cboxCloseBtn.on('click touchstart', function() {
  186. $.colorbox.close();
  187. });
  188. cboxCloseBtn.on('keyup', function(e) {
  189. if (e.keyCode == 27) {
  190. $.colorbox().close();
  191. }
  192. });
  193. // let cboxClose = document.getElementById('cboxClose');
  194. // cboxClose.addEventListener('click', function() {
  195. // $.colorbox.close();
  196. // });
  197. // cboxClose.addEventListener('touchstart', function() {
  198. // $.colorbox.close();
  199. // });
  200. // document.addEventListener('keyup', function(e) {
  201. // if (e.keyCode == 27) {
  202. // $.colorbox.close();
  203. // }
  204. // })
  205. return true;
  206. }
  207. );
  208. })(jQuery, Drupal, drupalSettings);