mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-27 17:20:40 +00:00
fa23779a17
Many of the Xml::… methods are deprecated. This code here is not generating XML anyway, but HTML. Bug: T341775 Change-Id: I69edf4606bc5cb429d48c8188c691b44575e2d93
81 lines
2 KiB
PHP
81 lines
2 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Notifications\Formatters;
|
|
|
|
use MediaWiki\Html\Html;
|
|
use MediaWiki\Utils\MWTimestamp;
|
|
|
|
/**
|
|
* A formatter for the notification flyout popup
|
|
*
|
|
* Ideally we wouldn't need this, and we'd just pass the
|
|
* presentation model to the client, but we need to continue
|
|
* sending HTML for backwards compatibility.
|
|
*/
|
|
class EchoFlyoutFormatter extends EchoEventFormatter {
|
|
protected function formatModel( EchoEventPresentationModel $model ) {
|
|
$icon = Html::element(
|
|
'img',
|
|
[
|
|
'class' => 'mw-echo-icon',
|
|
'src' => $this->getIconURL( $model ),
|
|
]
|
|
);
|
|
|
|
$html = Html::rawElement(
|
|
'div',
|
|
[ 'class' => 'mw-echo-title' ],
|
|
$model->getHeaderMessage()->parse()
|
|
) . "\n";
|
|
|
|
$body = $model->getBodyMessage();
|
|
if ( $body ) {
|
|
$html .= Html::rawElement(
|
|
'div',
|
|
[ 'class' => 'mw-echo-payload' ],
|
|
$body->parse()
|
|
) . "\n";
|
|
}
|
|
|
|
$ts = $this->language->getHumanTimestamp(
|
|
new MWTimestamp( $model->getTimestamp() ),
|
|
null,
|
|
$this->user
|
|
);
|
|
|
|
$footerItems = [ $ts ];
|
|
$secondaryLinks = array_filter( $model->getSecondaryLinks() );
|
|
foreach ( $secondaryLinks as $link ) {
|
|
$footerItems[] = Html::element( 'a', [ 'href' => $link['url'] ], $link['label'] );
|
|
}
|
|
$html .= Html::rawElement(
|
|
'div',
|
|
[ 'class' => 'mw-echo-notification-footer' ],
|
|
$this->language->pipeList( $footerItems )
|
|
) . "\n";
|
|
|
|
// Add the primary link afterwards, if it has one
|
|
$primaryLink = $model->getPrimaryLinkWithMarkAsRead();
|
|
if ( $primaryLink !== false ) {
|
|
$html .= Html::element(
|
|
'a',
|
|
[ 'class' => 'mw-echo-notification-primary-link', 'href' => $primaryLink['url'] ],
|
|
$primaryLink['label']
|
|
) . "\n";
|
|
}
|
|
|
|
return Html::rawElement( 'div', [ 'class' => 'mw-echo-state' ],
|
|
$icon .
|
|
Html::rawElement( 'div', [ 'class' => 'mw-echo-content' ], $html )
|
|
);
|
|
}
|
|
|
|
private function getIconURL( EchoEventPresentationModel $model ) {
|
|
return EchoIcon::getUrl(
|
|
$model->getIconType(),
|
|
$this->language->getDir()
|
|
);
|
|
}
|
|
|
|
}
|