heartbeat.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. }
  66. };
  67. function updateFeed() {
  68. $.ajax({
  69. type: 'POST',
  70. url: '/heartbeat/form/heartbeat_update_feed',
  71. success: function (response) {
  72. console.dir(response);
  73. console.log('We are succeed!');
  74. }
  75. })
  76. }
  77. function listenImages() {
  78. $('.heartbeat-content').find('img').each(function() {
  79. $(this).colorbox({href: $(this).attr('src')});
  80. });
  81. }
  82. })(jQuery, Drupal, drupalSettings);