| Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-translation/Model/Json/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/magento/module-translation/Model/Json/PreProcessor.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Translation\Model\Json;
use Magento\Framework\App\Area;
use Magento\Framework\App\AreaList;
use Magento\Framework\TranslateInterface;
use Magento\Framework\View\Asset\File\FallbackContext;
use Magento\Framework\View\Asset\PreProcessor\Chain;
use Magento\Framework\View\Asset\PreProcessorInterface;
use Magento\Framework\View\DesignInterface;
use Magento\Backend\App\Area\FrontNameResolver;
use Magento\Translation\Model\Js\Config;
use Magento\Translation\Model\Js\DataProviderInterface;
/**
* PreProcessor responsible for providing js translation dictionary
*/
class PreProcessor implements PreProcessorInterface
{
/**
* Js translation configuration
*
* @var Config
*/
protected $config;
/**
* Translation data provider
*
* @var DataProviderInterface
*/
protected $dataProvider;
/**
* @var AreaList
*/
protected $areaList;
/**
* @var TranslateInterface
*/
protected $translate;
/**
* @var DesignInterface
*/
private $viewDesign;
/**
* @param Config $config
* @param DataProviderInterface $dataProvider
* @param AreaList $areaList
* @param TranslateInterface $translate
* @param DesignInterface $viewDesign
*/
public function __construct(
Config $config,
DataProviderInterface $dataProvider,
AreaList $areaList,
TranslateInterface $translate,
DesignInterface $viewDesign
) {
$this->config = $config;
$this->dataProvider = $dataProvider;
$this->areaList = $areaList;
$this->translate = $translate;
$this->viewDesign = $viewDesign;
}
/**
* Transform content and/or content type for the specified preprocessing chain object
*
* @param Chain $chain
*
* @return void
*/
public function process(Chain $chain)
{
if ($this->isDictionaryPath($chain->getTargetAssetPath())) {
$context = $chain->getAsset()->getContext();
$themePath = '*/*';
$areaCode = FrontNameResolver::AREA_CODE;
if ($context instanceof FallbackContext) {
$themePath = $context->getThemePath();
$areaCode = $context->getAreaCode();
$this->viewDesign->setDesignTheme($themePath, $areaCode);
}
if ($areaCode !== FrontNameResolver::AREA_CODE) {
$area = $this->areaList->getArea($areaCode);
$area->load(Area::PART_TRANSLATE);
}
$this->translate->setLocale($context->getLocale())->loadData($areaCode, true);
$chain->setContent(json_encode($this->dataProvider->getData($themePath)));
$chain->setContentType('json');
}
}
/**
* Is provided path the path to translation dictionary
*
* @param string $path
*
* @return bool
*/
protected function isDictionaryPath($path)
{
return $path !== null && strpos($path, (string) $this->config->getDictionaryFileName()) !== false;
}
}