-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKanbanViewRegistry.php
98 lines (77 loc) · 2.42 KB
/
KanbanViewRegistry.php
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
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/*
* This file is part of the Klipper package.
*
* (c) François Pluchino <francois.pluchino@klipper.dev>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Klipper\Component\KanbanView;
use Klipper\Component\KanbanView\Exception\KanbanViewNotFoundException;
use Klipper\Component\KanbanView\Loader\KanbanViewLoaderInterface;
/**
* @author François Pluchino <francois.pluchino@klipper.dev>
*/
class KanbanViewRegistry implements KanbanViewRegistryInterface
{
/**
* @var KanbanViewLoaderInterface[]
*/
private array $loaders = [];
/**
* @var array<string, array<string, false|KanbanViewInterface>>
*/
private array $views = [];
public function __construct(array $loaders = [])
{
foreach ($loaders as $loader) {
$this->addLoader($loader);
}
}
public function addLoader(KanbanViewLoaderInterface $loader): void
{
$this->loaders[] = $loader;
}
public function registerView(KanbanViewInterface $view): self
{
$this->views[$view->getType()][$view->getName()] = $view;
return $this;
}
public function unregisterView(string $type, string $name): self
{
unset($this->views[$type][$name]);
return $this;
}
public function hasView(string $type, string $name): bool
{
if (isset($this->views[$type][$name])) {
return false !== $this->views[$type][$name];
}
$this->load($type, $name);
return false !== $this->views[$type][$name];
}
public function getView(string $type, string $name): KanbanViewInterface
{
if ($this->hasView($type, $name)) {
return $this->views[$type][$name];
}
throw new KanbanViewNotFoundException($type, $name);
}
private function load(string $type, string $name): void
{
if (isset($this->views[$type][$name]) && false !== $this->views[$type][$name]) {
return;
}
$this->views[$type][$name] = false;
foreach ($this->loaders as $loader) {
if ($loader->supports($type, $name)) {
$views = $loader->load($type, $name);
foreach ($views as $view) {
$this->views[$view->getType()][$view->getName()] = $view;
}
break;
}
}
}
}