Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
12 / 12 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
FloatComponentProvider | |
100.00% |
12 / 12 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
supports | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
createComponentFor | |
100.00% |
10 / 10 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\HtmlBuilders\Factories\Concrete; |
3 | |
4 | use Apie\Core\Attributes\CmsSingleInput; |
5 | use Apie\Core\Enums\ScalarType; |
6 | use Apie\Core\Metadata\MetadataFactory; |
7 | use Apie\HtmlBuilders\Components\Forms\SingleInput; |
8 | use Apie\HtmlBuilders\FormBuildContext; |
9 | use Apie\HtmlBuilders\Interfaces\ComponentInterface; |
10 | use Apie\HtmlBuilders\Interfaces\FormComponentProviderInterface; |
11 | use ReflectionType; |
12 | |
13 | class FloatComponentProvider implements FormComponentProviderInterface |
14 | { |
15 | public function supports(ReflectionType $type, FormBuildContext $context): bool |
16 | { |
17 | $metadata = MetadataFactory::getCreationMetadata($type, $context->getApieContext()); |
18 | return $metadata->toScalarType() === ScalarType::FLOAT; |
19 | } |
20 | |
21 | public function createComponentFor(ReflectionType $type, FormBuildContext $context): ComponentInterface |
22 | { |
23 | return new SingleInput( |
24 | $context->getFormName(), |
25 | $context->getFilledInValue(), |
26 | $context->createTranslationLabel(), |
27 | $type->allowsNull(), |
28 | $type, |
29 | new CmsSingleInput( |
30 | ['number', 'text'] |
31 | ) |
32 | ); |
33 | } |
34 | } |