vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
3.9 KiB

  1. /*
  2. * jQuery Highlight plugin
  3. *
  4. * Based on highlight v3 by Johann Burkard
  5. * http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html
  6. *
  7. * Code a little bit refactored and cleaned (in my humble opinion).
  8. * Most important changes:
  9. * - has an option to highlight only entire words (wordsOnly - false by default),
  10. * - has an option to be case sensitive (caseSensitive - false by default)
  11. * - highlight element tag and class names can be specified in options
  12. *
  13. * Usage:
  14. * // wrap every occurrance of text 'lorem' in content
  15. * // with <span class='highlight'> (default options)
  16. * $('#content').highlight('lorem');
  17. *
  18. * // search for and highlight more terms at once
  19. * // so you can save some time on traversing DOM
  20. * $('#content').highlight(['lorem', 'ipsum']);
  21. * $('#content').highlight('lorem ipsum');
  22. *
  23. * // search only for entire word 'lorem'
  24. * $('#content').highlight('lorem', { wordsOnly: true });
  25. *
  26. * // don't ignore case during search of term 'lorem'
  27. * $('#content').highlight('lorem', { caseSensitive: true });
  28. *
  29. * // wrap every occurrance of term 'ipsum' in content
  30. * // with <em class='important'>
  31. * $('#content').highlight('ipsum', { element: 'em', className: 'important' });
  32. *
  33. * // remove default highlight
  34. * $('#content').unhighlight();
  35. *
  36. * // remove custom highlight
  37. * $('#content').unhighlight({ element: 'em', className: 'important' });
  38. *
  39. *
  40. * Copyright (c) 2009 Bartek Szopka
  41. *
  42. * Licensed under MIT license.
  43. *
  44. */
  45. jQuery.extend({
  46. highlight: function (node, re, nodeName, className) {
  47. if (node.nodeType === 3) {
  48. var match = node.data.match(re);
  49. if (match) {
  50. var highlight = document.createElement(nodeName || 'span');
  51. highlight.className = className || 'highlight';
  52. var wordNode = node.splitText(match.index);
  53. wordNode.splitText(match[0].length);
  54. var wordClone = wordNode.cloneNode(true);
  55. highlight.appendChild(wordClone);
  56. wordNode.parentNode.replaceChild(highlight, wordNode);
  57. return 1; //skip added node in parent
  58. }
  59. } else if ((node.nodeType === 1 && node.childNodes) && // only element nodes that have children
  60. !/(script|style)/i.test(node.tagName) && // ignore script and style nodes
  61. !(node.tagName === nodeName.toUpperCase() && node.className === className)) { // skip if already highlighted
  62. for (var i = 0; i < node.childNodes.length; i++) {
  63. i += jQuery.highlight(node.childNodes[i], re, nodeName, className);
  64. }
  65. }
  66. return 0;
  67. }
  68. });
  69. jQuery.fn.unhighlight = function (options) {
  70. var settings = { className: 'highlight', element: 'span' };
  71. jQuery.extend(settings, options);
  72. return this.find(settings.element + "." + settings.className).each(function () {
  73. var parent = this.parentNode;
  74. parent.replaceChild(this.firstChild, this);
  75. parent.normalize();
  76. }).end();
  77. };
  78. jQuery.fn.highlight = function (words, options) {
  79. var settings = { className: 'highlight', element: 'span', caseSensitive: false, wordsOnly: false };
  80. jQuery.extend(settings, options);
  81. if (words.constructor === String) {
  82. words = [words];
  83. }
  84. words = jQuery.grep(words, function(word, i){
  85. return word != '';
  86. });
  87. words = jQuery.map(words, function(word, i) {
  88. return word.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
  89. });
  90. if (words.length == 0) { return this; };
  91. var flag = settings.caseSensitive ? "" : "i";
  92. var pattern = "(" + words.join("|") + ")";
  93. if (settings.wordsOnly) {
  94. pattern = "\\b" + pattern + "\\b";
  95. }
  96. var re = new RegExp(pattern, flag);
  97. return this.each(function () {
  98. jQuery.highlight(this, re, settings.element, settings.className);
  99. });
  100. };