Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
28.57% covered (danger)
28.57%
6 / 21
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
HideUuidAsIdComponentProvider
28.57% covered (danger)
28.57%
6 / 21
0.00% covered (danger)
0.00%
0 / 2
31.32
0.00% covered (danger)
0.00%
0 / 1
 supports
85.71% covered (warning)
85.71%
6 / 7
0.00% covered (danger)
0.00%
0 / 1
6.10
 createComponentFor
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2namespace Apie\HtmlBuilders\Factories\Concrete;
3
4use Apie\Core\Attributes\CmsSingleInput;
5use Apie\Core\Dto\CmsInputOption;
6use Apie\Core\Identifiers\Uuid;
7use Apie\Core\Identifiers\UuidV4;
8use Apie\Core\ValueObjects\Utils;
9use Apie\HtmlBuilders\Components\Forms\SingleInput;
10use Apie\HtmlBuilders\FormBuildContext;
11use Apie\HtmlBuilders\Interfaces\ComponentInterface;
12use Apie\HtmlBuilders\Interfaces\FormComponentProviderInterface;
13use ReflectionNamedType;
14use ReflectionType;
15
16class HideUuidAsIdComponentProvider implements FormComponentProviderInterface
17{
18    public function supports(ReflectionType $type, FormBuildContext $context): bool
19    {
20        if (
21            !$type instanceof ReflectionNamedType
22            || $type->allowsNull()
23            || $type->isBuiltIn()
24            || !$context->getFormName()->hasChildFormFieldName()
25            || $context->getFormName()->getChildFormFieldName() !== 'id'
26        ) {
27            return false;
28        }
29        return is_subclass_of($type->getName(), Uuid::class, true);
30    }
31
32    public function createComponentFor(ReflectionType $type, FormBuildContext $context): ComponentInterface
33    {
34        $id = Utils::toString($context->getFilledInValue('', true));
35        if (!preg_match(Uuid::getRegularExpression(), $id)) {
36            $id = UuidV4::createRandom()->toNative();
37        };
38        return new SingleInput(
39            $context->getFormName(),
40            $context->getFilledInValue(),
41            $context->createTranslationLabel(),
42            $type->allowsNull(),
43            $type,
44            new CmsSingleInput(
45                ['forced_hidden', 'hidden'],
46                new CmsInputOption(forcedValue: $id)
47            ),
48        );
49    }
50}