phug-php/compiler

View on GitHub
Compiler/NodeCompiler/MixinNodeCompiler.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Compiler\NodeCompiler;

use Phug\Compiler\AbstractNodeCompiler;
use Phug\Formatter\Element\AttributeElement;
use Phug\Formatter\Element\ExpressionElement;
use Phug\Formatter\Element\MixinElement;
use Phug\Formatter\ElementInterface;
use Phug\Parser\Node\AttributeNode;
use Phug\Parser\Node\MixinNode;
use Phug\Parser\NodeInterface;

class MixinNodeCompiler extends AbstractNodeCompiler
{
    public function compileNode(NodeInterface $node, ElementInterface $parent = null)
    {
        $compiler = $this->getCompiler();
        $compiler->assert(
            $node instanceof MixinNode,
            'Unexpected '.get_class($node).' given to mixin compiler.',
            $node
        );

        /** @var MixinNode $node */
        $name = strval($node->getName());
        $mixin = new MixinElement();
        $mixin->setName($name);

        foreach ($node->getAttributes() as $attribute) {
            /* @var AttributeNode $attribute */
            /* @var AttributeElement $attributeElement */
            $attributeElement = $compiler->compileNode($attribute, $parent);
            if (is_null($attribute->getValue())) {
                $attributeElement->setValue(new ExpressionElement('null', $attribute));
            }
            $mixin->getAttributes()->attach($attributeElement);
        }

        $this->compileNodeChildren($node, $mixin);

        return $mixin;
    }
}