birzha/modules/cms/twig/FrameworkNode.php

75 lines
3.4 KiB
PHP
Raw Normal View History

2014-05-14 13:24:20 +00:00
<?php namespace Cms\Twig;
use System\Classes\CombineAssets;
use Twig\Node\Node as TwigNode;
use Twig\Compiler as TwigCompiler;
2014-05-14 13:24:20 +00:00
/**
* Represents a "framework" node
*
* @package october\cms
* @author Alexey Bobkov, Samuel Georges
*/
class FrameworkNode extends TwigNode
2014-05-14 13:24:20 +00:00
{
public function __construct($name, $lineno, $tag = 'framework')
{
parent::__construct([], ['name' => $name], $lineno, $tag);
}
/**
* Compiles the node to PHP.
*
* @param TwigCompiler $compiler A TwigCompiler instance
2014-05-14 13:24:20 +00:00
*/
public function compile(TwigCompiler $compiler)
2014-05-14 13:24:20 +00:00
{
$attrib = $this->getAttribute('name');
$includeExtras = strtolower(trim($attrib)) == 'extras';
$compiler
->addDebugInfo($this)
->write("\$_minify = ".CombineAssets::class."::instance()->useMinify;" . PHP_EOL);
2014-05-14 13:24:20 +00:00
if ($includeExtras) {
$compiler
->write("if (\$_minify) {" . PHP_EOL)
->indent()
->write("echo '<script async src=\"'. Request::getBasePath()
.'/modules/system/assets/js/framework.combined-min.js\" importance=\"low\"></script>'.PHP_EOL;" . PHP_EOL)
->write("echo '<link rel=\"preload\" href=\"'. Request::getBasePath()
.'/modules/system/assets/js/framework.combined-min.js\" as=\"script\" importance=\"low\">'.PHP_EOL;" . PHP_EOL)
->outdent()
->write("}" . PHP_EOL)
->write("else {" . PHP_EOL)
->indent()
->write("echo '<script async src=\"'. Request::getBasePath()
.'/modules/system/assets/js/framework.js\" importance=\"low\"></script>'.PHP_EOL;" . PHP_EOL)
->write("echo '<script async src=\"'. Request::getBasePath()
.'/modules/system/assets/js/framework.extras.js\" importance=\"low\"></script>'.PHP_EOL;" . PHP_EOL)
->write("echo '<link rel=\"preload\" href=\"'. Request::getBasePath()
.'/modules/system/assets/js/framework.js\" as=\"script\" importance=\"low\"></script>'.PHP_EOL;" . PHP_EOL)
->write("echo '<link rel=\"preload\" href=\"'. Request::getBasePath()
.'/modules/system/assets/js/framework.extras.js\" as=\"script\" importance=\"low\"></script>'.PHP_EOL;" . PHP_EOL)
->outdent()
->write("}" . PHP_EOL)
->write("echo '<link rel=\"stylesheet\" property=\"stylesheet\" href=\"'. Request::getBasePath()
.'/modules/system/assets/css/framework.extras'.(\$_minify ? '-min' : '').'.css\" importance=\"low\">'.PHP_EOL;" . PHP_EOL)
->write("echo '<link rel=\"preload\" href=\"'. Request::getBasePath()
.'/modules/system/assets/css/framework.extras'.(\$_minify ? '-min' : '').'.css\" as=\"style\" importance=\"low\">'.PHP_EOL;" . PHP_EOL)
2014-05-14 13:24:20 +00:00
;
}
else {
$compiler->write("echo '<script async src=\"'. Request::getBasePath()
.'/modules/system/assets/js/framework'.(\$_minify ? '-min' : '').'.js\" importance=\"low\"></script>
<link rel=\"preload\" href=\"'. Request::getBasePath()
.'/modules/system/assets/js/framework'.(\$_minify ? '-min' : '').'.js\" as=\"script\" importance=\"low\">'.PHP_EOL;" . PHP_EOL)
;
}
$compiler->write('unset($_minify);' . PHP_EOL);
2014-05-14 13:24:20 +00:00
}
2014-10-10 23:42:04 +00:00
}