heartbeat.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /**
  2. * Created by logicp on 5/28/17.
  3. */
  4. (function($, Drupal, drupalSettings) {
  5. Drupal.behaviors.heartbeat = {
  6. attach: function (context, settings) {
  7. console.dir(drupalSettings);
  8. feedElement = document.querySelector('.heartbeat-stream');
  9. console.dir(feedElement);
  10. if (drupalSettings.feedUpdate == true) {
  11. console.log('stop here man');
  12. updateFeed();
  13. }
  14. Drupal.AjaxCommands.prototype.selectFeed = function(ajax, response, status) {
  15. console.log(response.feed);
  16. console.dir(drupalSettings);
  17. console.dir(context);
  18. console.dir(settings);
  19. $.ajax({
  20. type:'POST',
  21. url:'/heartbeat/render_feed/' + response.feed,
  22. success: function(response) {
  23. // feedElement = document.getElementById('block-heartbeatblock');
  24. feedElement = document.querySelector('.heartbeat-stream');
  25. console.dir(feedElement);
  26. if (feedElement != null) {
  27. feedElement.innerHTML = response;
  28. } else {
  29. feedBlock = document.getElementById('block-heartbeatblock');
  30. insertNode = document.createElement('div');
  31. insertNode.innerHTML = response;
  32. feedBlock.appendChild(insertNode);
  33. }
  34. console.dir(feedElement);
  35. console.dir(response);
  36. }
  37. });
  38. // #block-heartbeatblock
  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. // feedElement = document.getElementById('block-heartbeatblock');
  48. // feedElement = document.querySelector('.heartbeat-stream');
  49. // feedElement.innerHTML = response;
  50. // console.dir(feedElement);
  51. console.dir(response);
  52. }
  53. });
  54. }
  55. }
  56. }
  57. }
  58. function updateFeed() {
  59. $.ajax({
  60. type: 'POST',
  61. url: '/heartbeat/form/heartbeat_update_feed',
  62. success: function (response) {
  63. console.dir(response);
  64. console.log('We are succeed!');
  65. }
  66. })
  67. }
  68. })(jQuery, Drupal, drupalSettings);