statusmessage.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. 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]+)?(/.*)?"));
  40. }
  41. // function buildPreview(doc) {
  42. // var imgs = doc.querySelectorAll('img');
  43. // var metaTags = doc.querySelectorAll('meta');
  44. // var title = doc.querySelector('title');
  45. // var markup;
  46. // var description;
  47. // var previewImage = null;
  48. //
  49. // imgs.forEach(function (img) {
  50. // if (previewImage === null) {
  51. // var imgClasses = img.classList;
  52. //
  53. // if (imgClasses.value.toLowerCase().indexOf('logo') || img.alt.toLowerCase().indexOf('logo') || img.title.toLowerCase().indexOf('logo') || img.src.toLowerCase().indexOf('logo')) {
  54. // previewImage = img;
  55. // }
  56. // }
  57. // });
  58. //
  59. // metaTags.forEach(function (metaTag) {
  60. // if (metaTag.name == 'description') {
  61. // description = metaTag.content;
  62. //
  63. // }
  64. // });
  65. //
  66. // console.dir(description);
  67. // console.dir(previewImage.src);
  68. // var outer = document.createElement('div');
  69. // outer.className = 'statusmessage-preview';
  70. // // var closeButton = document.createElement('button');
  71. // // closeButton.className('statusmessage-preview-close');
  72. // // closeButton.innerHTML('✖');
  73. // var titlemarkup = document.createElement('h4');
  74. // titlemarkup.innerHTML = title.innerHTML;
  75. // var descmarkup = document.createElement('p');
  76. // descmarkup.innerText = description;
  77. // var imgmarkup = document.createElement('img');
  78. // imgmarkup.src = previewImage.src;
  79. //
  80. //
  81. // var wrapper = document.createElement('div');
  82. // wrapper.appendChild(titlemarkup);
  83. // wrapper.appendChild(descmarkup);
  84. // wrapper.appendChild(imgmarkup);
  85. // // wrapper.appendChild(closeButton);
  86. //
  87. // return wrapper;
  88. // }
  89. }
  90. };
  91. })(jQuery, Drupal, drupalSettings);