heartbeat.js 5.3 KB

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