mediawiki-extensions-Echo/includes/Formatters/EchoFlyoutFormatter.php
Reedy 7619a76877 Namespace Echo Formatters
Change-Id: I5bf398cdb76a577543f6526ac1bee4a73897103d
2022-11-01 21:20:06 -06:00

83 lines
2 KiB
PHP

<?php
namespace MediaWiki\Extension\Notifications\Formatters;
use Html;
use MWTimestamp;
use Xml;
/**
* 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 = Xml::tags(
'div',
[ 'class' => 'mw-echo-title' ],
$model->getHeaderMessage()->parse()
) . "\n";
$body = $model->getBodyMessage();
if ( $body ) {
$html .= Xml::tags(
'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 .= Xml::tags(
'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";
}
// Wrap everything in mw-echo-content class
$html = Xml::tags( 'div', [ 'class' => 'mw-echo-content' ], $html );
// And then add the icon in front and wrap with mw-echo-state class.
return Xml::tags( 'div', [ 'class' => 'mw-echo-state' ], $icon . $html );
}
private function getIconURL( EchoEventPresentationModel $model ) {
return EchoIcon::getUrl(
$model->getIconType(),
$this->language->getDir()
);
}
}