PortableInfobox/services/PortableInfoboxMobileRenderService.class.php

169 lines
4.8 KiB
PHP
Raw Normal View History

<?php
2016-12-28 14:14:54 +00:00
class PortableInfoboxMobileRenderService extends PortableInfoboxRenderService {
const MEDIA_CONTEXT_INFOBOX_HERO_IMAGE = 'infobox-hero-image';
const MEDIA_CONTEXT_INFOBOX = 'infobox';
2016-12-29 10:28:26 +00:00
const MOBILE_THUMBNAIL_WIDTH = 360;
/**
* renders infobox
*
* @param array $infoboxdata
*
* @param $theme
* @param $layout
2016-12-28 12:10:57 +00:00
* @param $accentColor
* @param $accentColorText
* @return string - infobox HTML
*/
2016-12-28 12:10:57 +00:00
public function renderInfobox( array $infoboxdata, $theme, $layout, $accentColor, $accentColorText ) {
2017-01-12 14:32:07 +00:00
$items = $this->splitOfHeroData( $infoboxdata, [ 'hero' => [ ], 'infobox' => [ ] ] );
2017-01-12 14:32:07 +00:00
if ( !empty( $items['hero'] ) ) {
$infoboxHtmlContent = $this->renderInfoboxHero( $items['hero'] ) . $this->renderChildren( $items['infobox'] );
} else {
$infoboxHtmlContent = $this->renderChildren( $infoboxdata );
}
if ( !empty( $infoboxHtmlContent ) ) {
$output = $this->renderItem( 'wrapper', [ 'content' => $infoboxHtmlContent, 'isMercury' => $this->isMercury() ] );
} else {
$output = '';
}
\Wikia\PortableInfobox\Helpers\PortableInfoboxDataBag::getInstance()->setFirstInfoboxAlredyRendered( true );
return $output;
}
2017-01-12 14:32:07 +00:00
private function splitOfHeroData( $items, $result ) {
foreach ( $items as $item ) {
$data = $item['data'];
$type = $item['type'];
if ( $this->isValidHeroDataItem( $item, $result['hero'] ) ) {
$result['hero'][$type] = $data;
} elseif ( $type === 'group' ) {
// go deeper to find nested hero data items
$groupResult = $this->splitOfHeroData( $data['value'], [ 'hero' => $result['hero'], 'infobox' => [ ] ] );
// make sure other elements structure stays the same
$result['hero'] = $groupResult['hero'];
$item['data']['value'] = $groupResult['infobox'];
$result['infobox'][] = $item;
} else {
$result['infobox'][] = $item;
}
}
return $result;
}
protected function renderImage( $data ) {
$images = [ ];
2016-12-29 10:28:26 +00:00
$count = count( $data );
2016-12-29 13:17:48 +00:00
$helper = $this->getImageHelper();
2016-12-29 10:28:26 +00:00
for ( $i = 0; $i < $count; $i++ ) {
$data[$i]['context'] = self::MEDIA_CONTEXT_INFOBOX;
$data[$i] = $helper->extendImageData( $data[$i], self::MOBILE_THUMBNAIL_WIDTH );
if ( !!$data[$i] ) {
$images[] = $data[$i];
}
}
if ( count( $images ) === 0 ) {
return '';
}
// use different template for wikiamobile
2016-12-29 10:58:27 +00:00
if ( !$this->isMercury() ) {
// always display only the first image on WikiaMobile
2016-12-29 10:28:26 +00:00
$data = $images[0];
$templateName = 'image-mobile-wikiamobile';
} else {
if ( count( $images ) === 1 ) {
2016-12-29 10:28:26 +00:00
$data = $images[0];
$templateName = 'image-mobile';
} else {
// more than one image means image collection
$data = $helper->extendImageCollectionData( $images );
$templateName = 'image-collection-mobile';
}
}
$data = SanitizerBuilder::createFromType( 'image' )->sanitize( $data );
return parent::render( $templateName, $data );
}
2016-12-29 10:28:26 +00:00
protected function renderTitle( $data ) {
return $this->render( 'title', $data );
}
protected function renderHeader( $data ) {
return $this->render( 'header', $data );
}
protected function render( $type, array $data ) {
$data = SanitizerBuilder::createFromType( $type )->sanitize( $data );
return parent::render( $type, $data );
}
/**
* renders infobox hero component
*
* @param array $data - infobox hero component data
*
* @return string
*/
private function renderInfoboxHero( $data ) {
2016-12-29 13:17:48 +00:00
$helper = $this->getImageHelper();
2016-12-29 10:28:26 +00:00
$template = '';
// In Mercury SPA content of the first infobox's hero module has been moved to the article header.
$firstInfoboxAlredyRendered = \Wikia\PortableInfobox\Helpers\PortableInfoboxDataBag::getInstance()
->isFirstInfoboxAlredyRendered();
2016-12-29 10:28:26 +00:00
if ( isset( $data['image'] ) ) {
$image = $data['image'][0];
$image['context'] = self::MEDIA_CONTEXT_INFOBOX_HERO_IMAGE;
$image = $helper->extendImageData( $image, self::MOBILE_THUMBNAIL_WIDTH );
$data['image'] = $image;
2016-12-29 10:58:27 +00:00
if ( !$this->isMercury() ) {
return $this->renderItem( 'hero-mobile-wikiamobile', $data );
} elseif ( $firstInfoboxAlredyRendered ) {
return $this->renderItem( 'hero-mobile', $data );
}
2016-12-29 10:58:27 +00:00
} elseif ( !$this->isMercury() || $firstInfoboxAlredyRendered ) {
2016-12-29 10:28:26 +00:00
return $this->renderItem( 'title', $data['title'] );
}
2016-12-29 10:28:26 +00:00
return !empty( $template ) ? $this->renderItem( $template, $data['title'] ) : '';
}
2016-12-29 10:58:27 +00:00
/**
* checks if infobox data item is valid hero component data.
*
* @param array $item - infobox data item
* @param array $heroData - hero component data
*
* @return bool
*/
private function isValidHeroDataItem( $item, $heroData ) {
$type = $item['type'];
2018-02-14 09:57:33 +00:00
return ( $type === 'title' && !isset( $heroData['title'] ) ) ||
( $type === 'image' && !isset( $heroData['image'] ) &&
count( $item['data'] ) === 1 );
2016-12-29 10:58:27 +00:00
}
private function isMercury() {
global $wgArticleAsJson;
return !empty( $wgArticleAsJson );
}
}