<?php

declare(strict_types=1);

namespace Doctrine\RST\HTML\Directives;

use Doctrine\RST\Directives\SubDirective;
use Doctrine\RST\Nodes\Node;
use Doctrine\RST\Parser;
use RuntimeException;

use function uniqid;

/**
 * Wraps a sub document in a div with a given class
 */
final class Wrap extends SubDirective
{
    /** @var string */
    private $class;

    /** @var bool */
    private $uniqid;

    public function __construct(string $class, bool $uniqid = false)
    {
        $this->class  = $class;
        $this->uniqid = $uniqid;
    }

    public function getName(): string
    {
        return $this->class;
    }

    /** @param string[] $options */
    public function processSub(
        Parser $parser,
        ?Node $document,
        string $variable,
        string $data,
        array $options
    ): ?Node {
        // if there is a "Wrap" directive (e.g. a note::), blank content is unexpected
        if ($document === null) {
            throw new RuntimeException('Content expected, none found.');
        }

        if ($this->uniqid) {
            $id = uniqid($this->class);
        } else {
            $id = '';
        }

        $divOpen = $parser->renderTemplate('div-open.html.twig', [
            'id' => $id,
            'class' => $this->class,
        ]);

        return $parser->getNodeFactory()->createWrapperNode(
            $document,
            $divOpen,
            '</div>'
        );
    }
}