summaryrefslogtreecommitdiff
path: root/src/SvgSpriteCompiler.php
blob: b4ed89fd0f9ecb4986a59f03577512a507a23e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php

namespace Lightscale\LaralightSvg;

use DOMDocument;
use DOMNode;
use DOMElement;

class SvgSpriteCompiler
{
    protected bool $isNew = false;

    private DOMDocument $svg;
    private DOMNode $defs;

    public function __construct(string $svg)
    {
        $svg = empty($svg) ? $this->newSvg() : $svg;
;
        if (!$this->loadSvg($svg)) {
            $this->loadSvg($this->newSvg());
        }

        $this->defs = $this->svg->getElementsByTagName('defs')[0];

    }

    protected function loadSvg(string $svg): bool
    {
        $this->svg = new DOMDocument();
        return $this->svg->loadXML($svg, LIBXML_NOXMLDECL);
    }

    protected function newSvg(): string
    {
        $this->isNew = true;
        return '<svg xmlns="http://www.w3.org/2000/svg"><defs></defs></svg>';
    }

    public function isNew(): bool
    {
        return $this->isNew;
    }

    public function getSvg(): string
    {
        return $this->svg->saveXML(null, LIBXML_NOXMLDECL);
    }

    public function addSvg(string $name, string $svg): bool
    {
        $doc = new DOMDocument;
        if (!$doc->loadXML($svg)) return false;

        $svg = $doc->getElementsByTagName('svg')->item(0);
        if ($svg instanceof DOMElement) {
            $this->defs->appendChild($this->createSymbol($name, $svg));
            return true;
        }
        else {
            return false;
        }
    }

    private function createSymbol(string $name, DOMElement $svg): DOMElement
    {
        $attributes = ['width', 'height', 'x', 'y', 'viewBox', 'preserveAspectRatio'];
        $symbol = $this->svg->createElement('symbol');

        $symbol->setAttribute('id', $name);
        foreach ($attributes as $attr) {
            if ($svg->hasAttribute($attr)) {
                $value = $svg->getAttribute($attr);
                $symbol->setAttribute($attr, $value);
            }
        }

        foreach ($svg->childNodes as $node) {
            $symbol->appendChild($this->svg->importNode($node, true));
        }

        return $symbol;
    }

}