heartbeat.js 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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. console.dir(node);
  107. if (node.classList.contains('heartbeat-comment')) {
  108. let id = node.id.substr(node.id.indexOf('-') + 1);
  109. $.ajax({
  110. type: 'POST',
  111. url:'/heartbeat/commentupdate/' + id,
  112. success: function(response) {
  113. }
  114. });
  115. } else {
  116. getParent(node.parentNode);
  117. }
  118. }
  119. function getScrollXY() {
  120. var scrOfX = 0, scrOfY = 0;
  121. if( typeof( window.pageYOffset ) == 'number' ) {
  122. //Netscape compliant
  123. scrOfY = window.pageYOffset;
  124. scrOfX = window.pageXOffset;
  125. } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
  126. //DOM compliant
  127. scrOfY = document.body.scrollTop;
  128. scrOfX = document.body.scrollLeft;
  129. } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
  130. //IE6 standards compliant mode
  131. scrOfY = document.documentElement.scrollTop;
  132. scrOfX = document.documentElement.scrollLeft;
  133. }
  134. return [ scrOfX, scrOfY ];
  135. }
  136. //taken from http://james.padolsey.com/javascript/get-document-height-cross-browser/
  137. function getDocHeight() {
  138. var D = document;
  139. return Math.max(
  140. D.body.scrollHeight, D.documentElement.scrollHeight,
  141. D.body.offsetHeight, D.documentElement.offsetHeight,
  142. D.body.clientHeight, D.documentElement.clientHeight
  143. );
  144. }
  145. document.addEventListener("scroll", function (event) {
  146. if (drupalSettings.filterMode == false && (getScrollXY()[1] + window.innerHeight) / getDocHeight() > 0.99) {
  147. let streams = document.querySelectorAll('.heartbeat-stream');
  148. let stream = streams.length > 1 ? streams[streams.length - 1] : streams[0];
  149. if (stream !== null) {
  150. console.dir(stream);
  151. let lastHeartbeat = stream.lastElementChild;
  152. if (lastHeartbeat !== null) {
  153. let hid = lastHeartbeat.id.substring(lastHeartbeat.id.indexOf('-') + 1);
  154. if (drupalSettings.lastHid !== hid) {
  155. drupalSettings.lastHid = hid;
  156. $.ajax({
  157. type: 'POST',
  158. url: '/heartbeat/update_feed/' + hid,
  159. success: function (response) {
  160. feedBlock = document.getElementById('block-heartbeatblock');
  161. insertNode = document.createElement('div');
  162. insertNode.innerHTML = response;
  163. feedBlock.appendChild(insertNode);
  164. }
  165. });
  166. }
  167. }
  168. }
  169. }
  170. });
  171. $(document).on('cbox_open', function() {
  172. $("#colorbox").swipe( {
  173. //Generic swipe handler for all directions
  174. swipeLeft:function(event, direction, distance, duration, fingerCount) {
  175. $.colorbox.prev();
  176. },
  177. swipeRight:function(event, direction, distance, duration, fingerCount) {
  178. $.colorbox.next();
  179. },
  180. //Default is 75px, set to 0 for demo so any distance triggers swipe
  181. threshold:25
  182. });
  183. let cboxCloseBtn = $('#cboxClose');
  184. cboxCloseBtn.on('click touchstart', function() {
  185. $.colorbox.close();
  186. });
  187. cboxCloseBtn.on('keyup', function(e) {
  188. if (e.keyCode == 27) {
  189. $.colorbox().close();
  190. }
  191. });
  192. // let cboxClose = document.getElementById('cboxClose');
  193. // cboxClose.addEventListener('click', function() {
  194. // $.colorbox.close();
  195. // });
  196. // cboxClose.addEventListener('touchstart', function() {
  197. // $.colorbox.close();
  198. // });
  199. // document.addEventListener('keyup', function(e) {
  200. // if (e.keyCode == 27) {
  201. // $.colorbox.close();
  202. // }
  203. // })
  204. return true;
  205. }
  206. );
  207. })(jQuery, Drupal, drupalSettings);