forked from Snck3rs/contao-leaflet-maps
120 lines
3.1 KiB
PHP
120 lines
3.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package dev
|
|
* @author David Molineus <david.molineus@netzmacht.de>
|
|
* @copyright 2015 netzmacht creative David Molineus
|
|
* @license LGPL 3.0
|
|
* @filesource
|
|
*
|
|
*/
|
|
|
|
namespace Netzmacht\Contao\Leaflet\Mapper\UI;
|
|
|
|
use Netzmacht\Contao\Leaflet\Filter\Filter;
|
|
use Netzmacht\Contao\Leaflet\Mapper\AbstractMapper;
|
|
use Netzmacht\Contao\Leaflet\Mapper\DefinitionMapper;
|
|
use Netzmacht\Contao\Leaflet\Model\PopupModel;
|
|
use Netzmacht\LeafletPHP\Definition;
|
|
use Netzmacht\LeafletPHP\Definition\UI\Popup;
|
|
|
|
/**
|
|
* Class PopupMapper.
|
|
*
|
|
* @package Netzmacht\Contao\Leaflet\Mapper\UI
|
|
*/
|
|
class PopupMapper extends AbstractMapper
|
|
{
|
|
/**
|
|
* The definition class.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $definitionClass = 'Netzmacht\LeafletPHP\Definition\UI\Popup';
|
|
|
|
/**
|
|
* The model class.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $modelClass = 'Netzmacht\Contao\Leaflet\Model\PopupModel';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function initialize()
|
|
{
|
|
parent::initialize();
|
|
|
|
$this->optionsBuilder
|
|
->addConditionalOption('maxWidth')
|
|
->addConditionalOption('minWidth')
|
|
->addConditionalOption('maxHeight')
|
|
->addConditionalOption('className')
|
|
->addOptions('autoPan', 'keepInView', 'closeButton', 'zoomAnimation');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function build(
|
|
Definition $definition,
|
|
\Model $model,
|
|
DefinitionMapper $mapper,
|
|
Filter $filter = null,
|
|
Definition $parent = null
|
|
) {
|
|
parent::build($definition, $model, $mapper, $filter, $parent);
|
|
|
|
/** @var Popup $definition */
|
|
/** @var PopupModel $model */
|
|
|
|
$this->deserializePoint('offset', $definition, $model);
|
|
|
|
if ($model->autoPan) {
|
|
$padding = array_map(
|
|
function ($value) {
|
|
return array_map('intval', trimsplit(',', $value));
|
|
},
|
|
deserialize($model->autoPanPadding, true)
|
|
);
|
|
|
|
if ($padding[0] === $padding[1]) {
|
|
if (!empty($padding[0])) {
|
|
$definition->setAutoPanPadding($padding[0]);
|
|
}
|
|
} else {
|
|
if ($padding[0]) {
|
|
$definition->setAutoPanPaddingTopLeft($padding[0]);
|
|
}
|
|
if ($padding[1]) {
|
|
$definition->setAutoPanPaddingBottomRight($padding[1]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!$model->closeOnClick) {
|
|
$definition->setCloseOnClick(false);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Deserialize point value and add it as option.
|
|
*
|
|
* @param string $option The option name.
|
|
* @param Popup $definition The popup definition.
|
|
* @param PopupModel $model The popup model.
|
|
*
|
|
* @return $this
|
|
*/
|
|
protected function deserializePoint($option, Popup $definition, PopupModel $model)
|
|
{
|
|
if ($model->$option) {
|
|
$setter = 'set' . ucfirst($option);
|
|
$definition->$setter(array_map('intval', explode(',', $model->$option, 2)));
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
}
|