mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-23 14:36:51 +00:00
60fbb32c1a
The new mark label renderer is a service and can be called from Parsoid. Bug: T377454 Change-Id: I6f4983c4288bf29954ad4e5fa3309f9bdf48215d
58 lines
1.7 KiB
PHP
58 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Cite;
|
|
|
|
use MediaWiki\Parser\Parser;
|
|
use MediaWiki\Parser\Sanitizer;
|
|
|
|
/**
|
|
* Footnote markers in the context of the Cite extension are the numbers in the article text, e.g.
|
|
* [1], that can be hovered or clicked to be able to read the attached footnote.
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
*/
|
|
class FootnoteMarkFormatter {
|
|
|
|
private AnchorFormatter $anchorFormatter;
|
|
private MarkSymbolRenderer $markSymbolRenderer;
|
|
private ReferenceMessageLocalizer $messageLocalizer;
|
|
|
|
public function __construct(
|
|
AnchorFormatter $anchorFormatter,
|
|
MarkSymbolRenderer $markSymbolRenderer,
|
|
ReferenceMessageLocalizer $messageLocalizer
|
|
) {
|
|
$this->anchorFormatter = $anchorFormatter;
|
|
$this->markSymbolRenderer = $markSymbolRenderer;
|
|
$this->messageLocalizer = $messageLocalizer;
|
|
}
|
|
|
|
/**
|
|
* Generate a link (<sup ...) for the <ref> element from a key
|
|
* and return XHTML ready for output
|
|
*
|
|
* @suppress SecurityCheck-DoubleEscaped
|
|
* @param Parser $parser
|
|
* @param ReferenceStackItem $ref
|
|
*
|
|
* @return string HTML
|
|
*/
|
|
public function linkRef( Parser $parser, ReferenceStackItem $ref ): string {
|
|
$label = $this->markSymbolRenderer->makeLabel( $ref->group, $ref->number, $ref->extendsIndex );
|
|
|
|
$key = $ref->name ?? $ref->key;
|
|
// TODO: Use count without decrementing.
|
|
$count = $ref->name ? $ref->key . '-' . ( $ref->count - 1 ) : null;
|
|
$subkey = $ref->name ? '-' . $ref->key : null;
|
|
|
|
return $parser->recursiveTagParse(
|
|
$this->messageLocalizer->msg(
|
|
'cite_reference_link',
|
|
$this->anchorFormatter->backLinkTarget( $key, $count ),
|
|
$this->anchorFormatter->jumpLink( $key . $subkey ),
|
|
Sanitizer::safeEncodeAttribute( $label )
|
|
)->plain()
|
|
);
|
|
}
|
|
}
|