Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
9.09% covered (danger)
9.09%
2 / 22
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
BooleanComponentProvider
9.09% covered (danger)
9.09%
2 / 22
50.00% covered (danger)
50.00%
1 / 2
33.05
0.00% covered (danger)
0.00%
0 / 1
 supports
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 createComponentFor
0.00% covered (danger)
0.00%
0 / 20
0.00% covered (danger)
0.00%
0 / 1
30
1<?php
2namespace Apie\HtmlBuilders\Factories\Concrete;
3
4use Apie\Core\Attributes\CmsSingleInput;
5use Apie\Core\Dto\CmsInputOption;
6use Apie\Core\Dto\ValueOption;
7use Apie\Core\Enums\ScalarType;
8use Apie\Core\Lists\ValueOptionList;
9use Apie\Core\Metadata\MetadataFactory;
10use Apie\Core\ValueObjects\Utils;
11use Apie\HtmlBuilders\Components\Forms\SingleInput;
12use Apie\HtmlBuilders\FormBuildContext;
13use Apie\HtmlBuilders\Interfaces\ComponentInterface;
14use Apie\HtmlBuilders\Interfaces\FormComponentProviderInterface;
15use ReflectionType;
16
17/**
18 * Creates a form field for a boolean.
19 */
20class BooleanComponentProvider implements FormComponentProviderInterface
21{
22    public function supports(ReflectionType $type, FormBuildContext $context): bool
23    {
24        $metadata = MetadataFactory::getCreationMetadata($type, $context->getApieContext());
25        return $metadata->toScalarType() === ScalarType::BOOLEAN;
26    }
27
28    public function createComponentFor(ReflectionType $type, FormBuildContext $context): ComponentInterface
29    {
30        $value = $context->getFilledInValue($type->allowsNull() ? null : false);
31        if ($value !== null) {
32            $value = Utils::toBoolean($value);
33        }
34        return new SingleInput(
35            $context->getFormName(),
36            $value,
37            $context->createTranslationLabel(),
38            $type->allowsNull(),
39            $type,
40            new CmsSingleInput(
41                $type->allowsNull() ? ['select'] : ['checkbox', 'select'],
42                new CmsInputOption(
43                    options: new ValueOptionList([
44                        new ValueOption('On', true),
45                        new ValueOption('Off', false),
46                        ...($type->allowsNull() ? [new ValueOption('-', null)] : [])
47                    ])
48                )
49            )
50        );
51    }
52}