for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare( strict_types = 1 );
namespace Maps\Presentation;
use Html;
class GeoJsonMapPageUi {
private $json;
public static function forExistingPage( string $mapJson ): self {
return new self( $mapJson );
}
private function __construct( ?string $json ) {
$this->json = $json;
public function addToOutput( OutputFacade $output ) {
$leafletPath = $GLOBALS['wgScriptPath'] . '/extensions/Maps/resources/lib/leaflet';
$output->addHeadItem(
'MapsGeoJsonHeadItem',
Html::linkedStyle( "$leafletPath/leaflet.css" ) . Html::linkedScript( "$leafletPath/leaflet.js" )
);
$output->addHTML( $this->getJavascript() . $this->getHtml() );
$output->addModules( 'ext.maps.geojson.page' );
private function getJavascript(): string {
return Html::element(
'script',
[],
$this->getJsonJs()
private function getJsonJs(): string {
return 'var GeoJson ='
. $this->json
. ';';
private function getHtml(): string {
return $this->wrapHtmlInThumbDivs(
Html::rawElement(
'div',
[
'id' => 'GeoJsonMap',
'style' => 'width: 100%; height: 600px; background-color: #eeeeee; overflow: hidden;',
'class' => 'maps-map maps-leaflet maps-geojson-editor'
],
Html::element(
'class' => 'maps-loading-message'
wfMessage( 'maps-loading-map' )->inContentLanguage()->text()
)
private function wrapHtmlInThumbDivs( string $html ): string {
return Html::rawElement(
'class' => 'thumb'
'class' => 'thumbinner'
$html