Example #1
0
 /**
  * Transform content and/or content type for the specified preprocessing chain object
  *
  * @param PreProcessor\Chain $chain
  * @return void
  */
 public function process(PreProcessor\Chain $chain)
 {
     if ($this->minification->isEnabled(pathinfo($chain->getTargetAssetPath(), PATHINFO_EXTENSION)) && $this->minification->isMinifiedFilename($chain->getTargetAssetPath()) && !$this->minification->isMinifiedFilename($chain->getOrigAssetPath())) {
         $content = $this->adapter->minify($chain->getContent());
         $chain->setContent($content);
     }
 }
 /**
  * {@inheritdoc}
  */
 public function process(Chain $chain)
 {
     $callback = function ($path) {
         return $this->notationResolver->convertVariableNotation($path);
     };
     $chain->setContent($this->cssResolver->replaceRelativeUrls($chain->getContent(), $callback));
 }
 /**
  * {@inheritdoc}
  */
 public function process(Chain $chain)
 {
     $asset = $chain->getAsset();
     $callback = function ($path) use($asset) {
         return $this->notationResolver->convertModuleNotationToPath($asset, $path);
     };
     $chain->setContent($this->cssResolver->replaceRelativeUrls($chain->getContent(), $callback));
 }
 /**
  * {@inheritdoc}
  */
 public function process(\Magento\Framework\View\Asset\PreProcessor\Chain $chain)
 {
     $asset = $chain->getAsset();
     $replaceCallback = function ($matchContent) use($asset) {
         return $this->replace($matchContent, $asset);
     };
     $chain->setContent(preg_replace_callback(self::REPLACE_PATTERN, $replaceCallback, $chain->getContent()));
 }
 /**
  * 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 = $context instanceof FallbackContext ? $context->getThemePath() : '*/*';
         $chain->setContent(json_encode($this->dataProvider->getData($themePath)));
         $chain->setContentType('json');
     }
 }
Example #6
0
 /**
  * {@inheritdoc}
  */
 public function process(\Magento\Framework\View\Asset\PreProcessor\Chain $chain)
 {
     $asset = $chain->getAsset();
     $contentType = $chain->getContentType();
     $replaceCallback = function ($matchContent) use($asset, $contentType) {
         return $this->replace($matchContent, $asset, $contentType);
     };
     $content = $this->removeComments($chain->getContent());
     $processedContent = preg_replace_callback(self::REPLACE_PATTERN, $replaceCallback, $content);
     if ($processedContent !== $content) {
         $chain->setContent($processedContent);
     }
 }
 /**
  * Transform content and/or content type for the specified preprocessing chain object
  *
  * @param Chain $chain
  * @return void
  */
 public function process(Chain $chain)
 {
     if ($this->config->isEmbeddedStrategy()) {
         $context = $chain->getAsset()->getContext();
         $areaCode = \Magento\Backend\App\Area\FrontNameResolver::AREA_CODE;
         if ($context instanceof FallbackContext) {
             $areaCode = $context->getAreaCode();
             $this->translate->setLocale($context->getLocale());
         }
         $area = $this->areaList->getArea($areaCode);
         $area->load(\Magento\Framework\App\Area::PART_TRANSLATE);
         $chain->setContent($this->translate($chain->getContent()));
     }
 }
Example #8
0
 /**
  * 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 = \Magento\Backend\App\Area\FrontNameResolver::AREA_CODE;
         if ($context instanceof FallbackContext) {
             $themePath = $context->getThemePath();
             $areaCode = $context->getAreaCode();
             $this->translate->setLocale($context->getLocale());
         }
         $area = $this->areaList->getArea($areaCode);
         $area->load(\Magento\Framework\App\Area::PART_TRANSLATE);
         $chain->setContent(json_encode($this->dataProvider->getData($themePath)));
         $chain->setContentType('json');
     }
 }
 /**
  * Transform content and/or content type for the specified preprocessing chain object
  *
  * @param PreProcessor\Chain $chain
  * @return void
  */
 public function process(PreProcessor\Chain $chain)
 {
     $content = $chain->getContent();
     if (trim($content) !== '') {
         return;
     }
     try {
         $this->lockerProcess->lockProcess($this->lockName);
         $path = $chain->getAsset()->getFilePath();
         $module = $chain->getAsset()->getModule();
         /** @var FallbackContext $context */
         $context = $chain->getAsset()->getContext();
         $chain->setContent($this->processContent($path, $content, $module, $context));
     } finally {
         $this->lockerProcess->unlockProcess();
     }
 }
Example #10
0
 /**
  * A callback for affecting preprocessor chain in the test
  *
  * @param Chain $chain
  */
 public function chainTestCallback(Chain $chain)
 {
     $chain->setContentType('ext');
     $chain->setContent('processed');
 }
Example #11
0
 /**
  * @param string $content
  * @param string $type
  * @param bool $expected
  * @dataProvider isChangedDataProvider
  */
 public function testIsChanged($content, $type, $expected)
 {
     $this->object->setContent($content);
     $this->object->setContentType($type);
     $this->assertEquals($expected, $this->object->isChanged());
 }
Example #12
0
 /**
  * A callback for affecting preprocessor chain in the test
  *
  * @param \Magento\Framework\View\Asset\PreProcessor\Chain $chain
  */
 public function chainTestCallback(\Magento\Framework\View\Asset\PreProcessor\Chain $chain)
 {
     $chain->setContentType('ext');
     $chain->setContent('processed');
 }
Example #13
0
 /**
  * Transform content and/or content type for the specified preprocessing chain object
  *
  * @param Chain $chain
  * @return void
  */
 public function process(Chain $chain)
 {
     if ($this->config->isEmbeddedStrategy()) {
         $chain->setContent($this->translate($chain->getContent()));
     }
 }