Merge "Remove not used private member variable mParserWarnings from OutputPage"
[mediawiki.git] / resources / src / jquery / jquery.highlightText.js
blobe37f19b04a67b3c2973dbe762b8d9c682fb33057
1 /**
2  * Plugin that highlights matched word partials in a given element.
3  * TODO: Add a function for restoring the previous text.
4  * TODO: Accept mappings for converting shortcuts like WP: to Wikipedia:.
5  */
6 ( function ( $, mw ) {
8         $.highlightText = {
10                 // Split our pattern string at spaces and run our highlight function on the results
11                 splitAndHighlight: function ( node, pat ) {
12                         var i,
13                                 patArray = pat.split( ' ' );
14                         for ( i = 0; i < patArray.length; i++ ) {
15                                 if ( patArray[ i ].length === 0 ) {
16                                         continue;
17                                 }
18                                 $.highlightText.innerHighlight( node, patArray[ i ] );
19                         }
20                         return node;
21                 },
23                 // scans a node looking for the pattern and wraps a span around each match
24                 innerHighlight: function ( node, pat ) {
25                         var i, match, pos, spannode, middlebit, middleclone;
26                         if ( node.nodeType === Node.TEXT_NODE ) {
27                                 // TODO - need to be smarter about the character matching here.
28                                 // non latin characters can make regex think a new word has begun: do not use \b
29                                 // http://stackoverflow.com/questions/3787072/regex-wordwrap-with-utf8-characters-in-js
30                                 // look for an occurrence of our pattern and store the starting position
31                                 match = node.data.match( new RegExp( '(^|\\s)' + mw.RegExp.escape( pat ), 'i' ) );
32                                 if ( match ) {
33                                         pos = match.index + match[ 1 ].length; // include length of any matched spaces
34                                         // create the span wrapper for the matched text
35                                         spannode = document.createElement( 'span' );
36                                         spannode.className = 'highlight';
37                                         // shave off the characters preceding the matched text
38                                         middlebit = node.splitText( pos );
39                                         // shave off any unmatched text off the end
40                                         middlebit.splitText( pat.length );
41                                         // clone for appending to our span
42                                         middleclone = middlebit.cloneNode( true );
43                                         // append the matched text node to the span
44                                         spannode.appendChild( middleclone );
45                                         // replace the matched node, with our span-wrapped clone of the matched node
46                                         middlebit.parentNode.replaceChild( spannode, middlebit );
47                                 }
48                         } else if ( node.nodeType === Node.ELEMENT_NODE
49                                 // element with childnodes, and not a script, style or an element we created
50                                 && node.childNodes
51                                 && !/(script|style)/i.test( node.tagName )
52                                 && !( node.tagName.toLowerCase() === 'span'
53                                         && node.className.match( /\bhighlight/ )
54                                 )
55                         ) {
56                                 for ( i = 0; i < node.childNodes.length; ++i ) {
57                                         // call the highlight function for each child node
58                                         $.highlightText.innerHighlight( node.childNodes[ i ], pat );
59                                 }
60                         }
61                 }
62         };
64         $.fn.highlightText = function ( matchString ) {
65                 return this.each( function () {
66                         var $el = $( this );
67                         $el.data( 'highlightText', { originalText: $el.text() } );
68                         $.highlightText.splitAndHighlight( this, matchString );
69                 } );
70         };
72 }( jQuery, mediaWiki ) );