mediawiki-extensions-Discus.../modules/dt.debug.js
Ed Sanders a74c00ba8c Prefer arrow functions for callbacks
This allows us to remove our `this` bindings.

Change-Id: Ie8c8c38d36af8a033b5181870c39f8981a57b939
2024-04-19 12:34:23 +01:00

88 lines
2.8 KiB
JavaScript

var
Parser = require( 'ext.discussionTools.init' ).Parser,
modifier = require( 'ext.discussionTools.init' ).modifier,
utils = require( 'ext.discussionTools.init' ).utils,
debugHighlighter = require( './debughighlighter.js' ),
parser = new Parser( require( 'ext.discussionTools.init' ).parserData ),
result = parser.parse(
document.getElementById( 'mw-content-text' ),
mw.Title.newFromText( mw.config.get( 'wgRelevantPageName' ) )
),
comments = result.getCommentItems(),
threads = result.getThreads(),
timestampRegexps = parser.getLocalTimestampRegexps(),
debug = +( new URL( location.href ).searchParams.get( 'dtdebug' ) ),
DEBUG_HIGHLIGHT = 1,
DEBUG_VOTE = 2,
DEBUG_VOTE_PERMISSIVE = 4;
// eslint-disable-next-line no-bitwise
if ( debug & DEBUG_HIGHLIGHT ) {
debugHighlighter.markThreads( threads );
comments.forEach( ( comment ) => {
comment.signatureRanges.forEach( ( signatureRange ) => {
var node = signatureRange.endContainer;
var match = parser.findTimestamp( node, timestampRegexps );
if ( !match ) {
return;
}
var signature = parser.findSignature( node ).nodes;
var 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.
debugHighlighter.markTimestamp( parser, node, match );
if ( !emptySignature ) {
debugHighlighter.markSignature( signature );
}
} );
} );
}
// eslint-disable-next-line no-bitwise
if ( ( debug & DEBUG_VOTE ) || ( debug & DEBUG_VOTE_PERMISSIVE ) ) {
threads.forEach( ( thread ) => {
var firstComment = thread.replies[ 0 ];
if ( firstComment && firstComment.type === 'comment' ) {
// eslint-disable-next-line no-bitwise
if ( !( debug & DEBUG_VOTE_PERMISSIVE ) && firstComment.level <= 1 ) {
// Not in permissive vote mode, and first reply was not indented
return;
}
var firstVote = firstComment.level === 1 ?
// In permissive mode, the first vote is the replies to the OP
firstComment.replies[ 0 ] :
firstComment;
if ( !firstVote ) {
return;
}
var lastReply;
var level = firstVote.level;
firstVote.parent.replies.forEach( ( reply ) => {
if ( reply.type === 'comment' && reply.level <= level ) {
lastReply = reply;
}
} );
var listItem = modifier.addSiblingListItem(
utils.closestElement( lastReply.range.endContainer, [ 'li', 'dd', 'p' ] )
);
if ( listItem && listItem.tagName.toLowerCase() === 'li' ) {
$( listItem )
// Hide bullet/number
.css( 'list-style', 'none' )
.append(
'[ ',
$( '<a>' ).text( 'add comment' ),
' ]'
);
}
}
} );
}