heartbeat.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. divs.forEach(function (anchor) {
  10. var userId = anchor.href.substring(anchor.href.indexOf('user') + 5, anchor.href.indexOf('&token'));
  11. JSON.parse(drupalSettings.friendData).forEach(function (friendship) {
  12. if (friendship.uid_target === userId && friendship.uid == drupalSettings.user.uid && friendship.status == 0) {
  13. anchor.innerHTML = 'Friendship Pending';
  14. }
  15. });
  16. });
  17. }
  18. feedElement = document.querySelector('.heartbeat-stream');
  19. if (drupalSettings.feedUpdate == true) {
  20. updateFeed();
  21. }
  22. Drupal.AjaxCommands.prototype.selectFeed = function(ajax, response, status) {
  23. $.ajax({
  24. type:'POST',
  25. url:'/heartbeat/render_feed/' + response.feed,
  26. success: function(response) {
  27. feedElement = document.querySelector('.heartbeat-stream');
  28. console.dir(feedElement);
  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. console.dir(response.timestamp);
  42. if ($response.update) {
  43. $.ajax({
  44. type: 'POST',
  45. url:'/heartbeat/update_feed/' + response.timestamp,
  46. success: function(response) {
  47. console.dir(response);
  48. }
  49. });
  50. }
  51. }
  52. }
  53. }
  54. function updateFeed() {
  55. $.ajax({
  56. type: 'POST',
  57. url: '/heartbeat/form/heartbeat_update_feed',
  58. success: function (response) {
  59. console.dir(response);
  60. console.log('We are succeed!');
  61. }
  62. })
  63. }
  64. })(jQuery, Drupal, drupalSettings);