mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-12 09:58:17 +00:00
04365c0188
Bug: T240474 Change-Id: I1b83aa18666be8f1ea6a3602b299f92574d42cb7
26 lines
1.1 KiB
JavaScript
26 lines
1.1 KiB
JavaScript
var
|
|
parser = require( 'ext.discussionTools.init' ).parser,
|
|
highlighter = require( './highlighter.js' ),
|
|
timestamps, comments, threads, i, node, match, signature, emptySignature;
|
|
|
|
timestamps = parser.findTimestamps( document.getElementById( 'mw-content-text' ) );
|
|
comments = parser.getComments( document.getElementById( 'mw-content-text' ) );
|
|
threads = parser.groupThreads( comments );
|
|
|
|
highlighter.markThreads( threads );
|
|
|
|
// TODO: Use comment.signatureRanges to mark up signatures/timestamps
|
|
for ( i = 0; i < timestamps.length; i++ ) {
|
|
node = timestamps[ i ][ 0 ];
|
|
match = timestamps[ i ][ 1 ];
|
|
signature = parser.findSignature( node )[ 0 ];
|
|
emptySignature = signature.length === 1 && signature[ 0 ] === node;
|
|
// Note that additional content may follow the timestamp (e.g. in some voting formats), but we
|
|
// don't care about it. The code below doesn't mark that due to now the text nodes are sliced,
|
|
// but we might need to take care to use the matched range of node in other cases.
|
|
highlighter.markTimestamp( node, match );
|
|
if ( !emptySignature ) {
|
|
highlighter.markSignature( signature );
|
|
}
|
|
}
|