heartbeat.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. 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. console.dir(feedElement);
  30. if (feedElement != null) {
  31. feedElement.innerHTML = response;
  32. } else {
  33. feedBlock = document.getElementById('block-heartbeatblock');
  34. insertNode = document.createElement('div');
  35. insertNode.innerHTML = response;
  36. feedBlock.appendChild(insertNode);
  37. }
  38. }
  39. });
  40. };
  41. Drupal.AjaxCommands.prototype.updateFeed = function(ajax, response, status) {
  42. console.dir(response.timestamp);
  43. if ($response.update) {
  44. $.ajax({
  45. type: 'POST',
  46. url:'/heartbeat/update_feed/' + response.timestamp,
  47. success: function(response) {
  48. console.dir(response);
  49. }
  50. });
  51. }
  52. }
  53. }
  54. }
  55. function updateFeed() {
  56. $.ajax({
  57. type: 'POST',
  58. url: '/heartbeat/form/heartbeat_update_feed',
  59. success: function (response) {
  60. console.dir(response);
  61. console.log('We are succeed!');
  62. }
  63. })
  64. }
  65. })(jQuery, Drupal, drupalSettings);