statusmessage.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**
  2. * Created by logicp on 6/05/17.
  3. */
  4. (function($, Drupal, drupalSettings) {
  5. Drupal.behaviors.status= {
  6. attach: function (context, settings) {
  7. Drupal.AjaxCommands.prototype.generatePreview = function(ajax, response, status) {
  8. if (validateUrl(response.url)) {
  9. var cleanUrl = response.url.replace(/^http(s?):\/\//i, "");
  10. // console.log(cleanUrl);
  11. $.ajax({
  12. type: 'POST',
  13. url: '/statusmessage/generate-preview/build' ,
  14. data: {'data': cleanUrl},
  15. success: function (response) {
  16. // console.log(response.data);
  17. if (response.data != null) {
  18. var parser = new DOMParser();
  19. // var doc = parser.parseFromString(response.data, "text/html");
  20. let markup = document.createElement('div');
  21. markup.innerHTML = response.data;
  22. let statusBlock = document.getElementById('block-statusblock');
  23. let oldPreviewIframe = document.querySelector('.statusmessage-preview-iframe');
  24. if (oldPreviewIframe !== null) {
  25. oldPreviewIframe.parentNode.removeChild(oldPreviewIframe);
  26. }
  27. previewIframe = document.createElement('iframe');
  28. previewIframe.classList.add('statusmessage-preview-iframe');
  29. statusBlock.appendChild(previewIframe);
  30. previewIframe.contentWindow.document.open();
  31. previewIframe.contentWindow.document.appendChild(markup);
  32. previewIframe.contentWindow.document.close();
  33. }
  34. }
  35. });
  36. }
  37. };
  38. function validateUrl(input) {
  39. if (input !== null) {
  40. return input.match(new RegExp("([a-zA-Z0-9]+://)?([a-zA-Z0-9_]+:[a-zA-Z0-9_]+@)?([a-zA-Z0-9.-]+\\.[A-Za-z]{2,4})(:[0-9]+)?(/.*)?"));
  41. }
  42. }
  43. // function buildPreview(doc) {
  44. // var imgs = doc.querySelectorAll('img');
  45. // var metaTags = doc.querySelectorAll('meta');
  46. // var title = doc.querySelector('title');
  47. // var markup;
  48. // var description;
  49. // var previewImage = null;
  50. //
  51. // imgs.forEach(function (img) {
  52. // if (previewImage === null) {
  53. // var imgClasses = img.classList;
  54. //
  55. // if (imgClasses.value.toLowerCase().indexOf('logo') || img.alt.toLowerCase().indexOf('logo') || img.title.toLowerCase().indexOf('logo') || img.src.toLowerCase().indexOf('logo')) {
  56. // previewImage = img;
  57. // }
  58. // }
  59. // });
  60. //
  61. // metaTags.forEach(function (metaTag) {
  62. // if (metaTag.name == 'description') {
  63. // description = metaTag.content;
  64. //
  65. // }
  66. // });
  67. //
  68. // console.dir(description);
  69. // console.dir(previewImage.src);
  70. // var outer = document.createElement('div');
  71. // outer.className = 'statusmessage-preview';
  72. // // var closeButton = document.createElement('button');
  73. // // closeButton.className('statusmessage-preview-close');
  74. // // closeButton.innerHTML('✖');
  75. // var titlemarkup = document.createElement('h4');
  76. // titlemarkup.innerHTML = title.innerHTML;
  77. // var descmarkup = document.createElement('p');
  78. // descmarkup.innerText = description;
  79. // var imgmarkup = document.createElement('img');
  80. // imgmarkup.src = previewImage.src;
  81. //
  82. //
  83. // var wrapper = document.createElement('div');
  84. // wrapper.appendChild(titlemarkup);
  85. // wrapper.appendChild(descmarkup);
  86. // wrapper.appendChild(imgmarkup);
  87. // // wrapper.appendChild(closeButton);
  88. //
  89. // return wrapper;
  90. // }
  91. }
  92. };
  93. })(jQuery, Drupal, drupalSettings);