heartbeat.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. divs.forEach(function (anchor) {
  11. var userId = anchor.href.substring(anchor.href.indexOf('friendship') + 11, anchor.href.indexOf('?destination'));
  12. console.log(userId);
  13. JSON.parse(drupalSettings.friendData).forEach(function (friendship) {
  14. if (friendship.uid_target === userId && friendship.uid == drupalSettings.user.uid && friendship.status == 0) {
  15. anchor.innerHTML = 'Friendship Pending';
  16. }
  17. });
  18. });
  19. }
  20. feedElement = document.querySelector('.heartbeat-stream');
  21. if (drupalSettings.feedUpdate == true) {
  22. updateFeed();
  23. }
  24. Drupal.AjaxCommands.prototype.selectFeed = function(ajax, response, status) {
  25. $.ajax({
  26. type:'POST',
  27. url:'/heartbeat/render_feed/' + response.feed,
  28. success: function(response) {
  29. feedElement = document.querySelector('.heartbeat-stream');
  30. console.dir(feedElement);
  31. if (feedElement != null) {
  32. feedElement.innerHTML = response;
  33. } else {
  34. feedBlock = document.getElementById('block-heartbeatblock');
  35. insertNode = document.createElement('div');
  36. insertNode.innerHTML = response;
  37. feedBlock.appendChild(insertNode);
  38. }
  39. }
  40. });
  41. };
  42. Drupal.AjaxCommands.prototype.updateFeed = function(ajax, response, status) {
  43. console.dir(response.timestamp);
  44. if ($response.update) {
  45. $.ajax({
  46. type: 'POST',
  47. url:'/heartbeat/update_feed/' + response.timestamp,
  48. success: function(response) {
  49. console.dir(response);
  50. }
  51. });
  52. }
  53. }
  54. }
  55. }
  56. function updateFeed() {
  57. $.ajax({
  58. type: 'POST',
  59. url: '/heartbeat/form/heartbeat_update_feed',
  60. success: function (response) {
  61. console.dir(response);
  62. console.log('We are succeed!');
  63. }
  64. })
  65. }
  66. })(jQuery, Drupal, drupalSettings);