heartbeat.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. // console.log(divs);
  10. for (let i = 0; i < divs.length; i++) {
  11. let anchor = divs[i];
  12. var userId = anchor.href.substring(anchor.href.indexOf('friendship') + 11, anchor.href.indexOf('?destination'));
  13. console.log(userId);
  14. JSON.parse(drupalSettings.friendData).forEach(function (friendship) {
  15. if (friendship.uid_target === userId && friendship.uid == drupalSettings.user.uid && friendship.status == 0) {
  16. anchor.innerHTML = 'Friendship Pending';
  17. }
  18. });
  19. }
  20. // divs.forEach(function (anchor) {
  21. // var userId = anchor.href.substring(anchor.href.indexOf('friendship') + 11, anchor.href.indexOf('?destination'));
  22. // console.log(userId);
  23. // JSON.parse(drupalSettings.friendData).forEach(function (friendship) {
  24. // if (friendship.uid_target === userId && friendship.uid == drupalSettings.user.uid && friendship.status == 0) {
  25. // anchor.innerHTML = 'Friendship Pending';
  26. // }
  27. // });
  28. // });
  29. }
  30. feedElement = document.querySelector('.heartbeat-stream');
  31. if (drupalSettings.feedUpdate == true) {
  32. updateFeed();
  33. }
  34. Drupal.AjaxCommands.prototype.selectFeed = function(ajax, response, status) {
  35. $.ajax({
  36. type:'POST',
  37. url:'/heartbeat/render_feed/' + response.feed,
  38. success: function(response) {
  39. feedElement = document.querySelector('.heartbeat-stream');
  40. console.dir(feedElement);
  41. if (feedElement != null) {
  42. feedElement.innerHTML = response;
  43. } else {
  44. feedBlock = document.getElementById('block-heartbeatblock');
  45. insertNode = document.createElement('div');
  46. insertNode.innerHTML = response;
  47. feedBlock.appendChild(insertNode);
  48. }
  49. }
  50. });
  51. };
  52. Drupal.AjaxCommands.prototype.updateFeed = function(ajax, response, status) {
  53. console.dir(response.timestamp);
  54. if ($response.update) {
  55. $.ajax({
  56. type: 'POST',
  57. url:'/heartbeat/update_feed/' + response.timestamp,
  58. success: function(response) {
  59. console.dir(response);
  60. }
  61. });
  62. }
  63. };
  64. listenImages();
  65. listenCommentPost();
  66. }
  67. };
  68. function updateFeed() {
  69. $.ajax({
  70. type: 'POST',
  71. url: '/heartbeat/form/heartbeat_update_feed',
  72. success: function (response) {
  73. console.dir(response);
  74. console.log('We are succeed!');
  75. }
  76. })
  77. }
  78. function listenImages() {
  79. let cboxOptions = {
  80. width: '95%',
  81. height: '95%',
  82. maxWidth: '960px',
  83. maxHeight: '960px',
  84. };
  85. $('.heartbeat-content').find('img').each(function() {
  86. $(this).colorbox({href: $(this).attr('src'), cboxOptions});
  87. });
  88. }
  89. function listenCommentPost() {
  90. let comments = document.querySelectorAll('[data-drupal-selector]');
  91. for (let i = 0; i < comments.length; i++) {
  92. let comment = comments[i];
  93. console.dir(comment);
  94. comment.addEventListener('click', function() {
  95. getParent(comment);
  96. })
  97. }
  98. }
  99. function getParent(node) {
  100. console.dir(node);
  101. if (node.classList.contains('heartbeat-comment')) {
  102. let id = node.id.substr(node.id.indexOf('-')+1);
  103. $.ajax({
  104. type: 'POST',
  105. url:'/heartbeat/commentupdate/' + id,
  106. success: function(response) {
  107. console.log(response);
  108. }
  109. });
  110. } else {
  111. getParent(node.parentNode);
  112. }
  113. }
  114. })(jQuery, Drupal, drupalSettings);