mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-11 17:02:28 +00:00
Merge "Revert "Invert logic on empty talk page""
This commit is contained in:
commit
f57ee98ee8
|
@ -410,8 +410,8 @@ class CommentFormatter {
|
|||
->addTrackingCategory( $pout, 'discussiontools-comments-before-first-heading-category', $title );
|
||||
}
|
||||
|
||||
if ( count( $threadItems ) > 0 ) {
|
||||
$pout->setExtensionData( 'DiscussionTools-isNotEmptyTalkPage', true );
|
||||
if ( count( $threadItems ) === 0 ) {
|
||||
$pout->setExtensionData( 'DiscussionTools-isEmptyTalkPage', true );
|
||||
}
|
||||
|
||||
$threadsJSON = array_map( static function ( ContentThreadItem $item ) {
|
||||
|
@ -926,7 +926,7 @@ class CommentFormatter {
|
|||
* HookUtils::shouldDisplayEmptyState which assures we have a talk page.
|
||||
*/
|
||||
public static function isEmptyTalkPage( ParserOutput $pout ): bool {
|
||||
return $pout->getExtensionData( 'DiscussionTools-isNotEmptyTalkPage' ) !== true;
|
||||
return $pout->getExtensionData( 'DiscussionTools-isEmptyTalkPage' ) === true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -72,7 +72,7 @@ class ParserHooks implements
|
|||
if ( $isPreview ) {
|
||||
$html = CommentFormatter::removeInteractiveTools( $html );
|
||||
// Suppress the empty state
|
||||
$pout->setExtensionData( 'DiscussionTools-isNotEmptyTalkPage', true );
|
||||
$pout->setExtensionData( 'DiscussionTools-isEmptyTalkPage', null );
|
||||
}
|
||||
|
||||
$pout->addModuleStyles( [ 'ext.discussionTools.init.styles' ] );
|
||||
|
|
|
@ -95,8 +95,8 @@ class CommentFormatterTest extends IntegrationTestCase {
|
|||
"hasLedeContent\n" : '' ) .
|
||||
( $pout->getExtensionData( 'DiscussionTools-hasCommentsInLedeContent' ) ?
|
||||
"hasCommentsInLedeContent\n" : '' ) .
|
||||
( $pout->getExtensionData( 'DiscussionTools-isNotEmptyTalkPage' ) ?
|
||||
'' : "isEmptyTalkPage\n" ) .
|
||||
( $pout->getExtensionData( 'DiscussionTools-isEmptyTalkPage' ) ?
|
||||
"isEmptyTalkPage\n" : '' ) .
|
||||
FormatJson::encode( $pout->getJsConfigVars(), "\t", FormatJson::ALL_OK ) .
|
||||
"\n</pre>";
|
||||
|
||||
|
|
Loading…
Reference in a new issue