summaryrefslogtreecommitdiff
path: root/src/SvgService.php
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2024-06-15 11:16:44 +0100
committerSam Light <samlight1994@gmail.com>2024-06-15 11:16:44 +0100
commit65c94080f6b8eae4a8217751de0dc847579c923d (patch)
tree59fa65cebc576c4c953cf1c534811ce827613246 /src/SvgService.php
Initial commit
Diffstat (limited to 'src/SvgService.php')
-rw-r--r--src/SvgService.php53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/SvgService.php b/src/SvgService.php
new file mode 100644
index 0000000..436e9ec
--- /dev/null
+++ b/src/SvgService.php
@@ -0,0 +1,53 @@
+<?php
+
+namespace Lightscale\LaralightSvg;
+
+class SvgService
+{
+ protected array $collections = [];
+
+ public function __construct()
+ {
+ $collections = config('svg.collections');
+
+ foreach ($collections as $k => $collection) {
+ $this->addCollectionConfig($k, $collection);
+ }
+ }
+
+ protected function addCollectionFromConfig(
+ string $collectionName,
+ array $collectionConfig
+ ): void
+ {
+ $c = new SvgCollection($collectionName);
+
+ foreach ($collectionConfig['paths'] as $p) {
+ $c->addPath($p);
+ }
+
+ $this->addCollection($c);
+ }
+
+
+ public function addCollection(SvgCollection $collection): void
+ {
+ $this->collections[$collection->getName()] = $collection;
+ }
+
+ public function registerCollection(string $collection): void
+ {
+ $this->addCollection(new SvgCollection($collection));
+ }
+
+ public function addCollectionPath(string $collection, string $path): void
+ {
+ $this->collections[$collection]->addPath($path);
+ }
+
+ public function getSvgUrl(string $collection, string $svg): string
+ {
+ return $this->collections[$collection]->getSvgUrl($collection, $svg);
+ }
+
+}