Checkbox   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
dl 0
loc 36
rs 10
c 1
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A modelName() 0 3 1
A render() 0 3 1
A errorFieldName() 0 3 1
A __construct() 0 14 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Xetaravel\View\Components;
6
7
use Closure;
8
use Illuminate\Contracts\View\View;
9
use Illuminate\View\Component;
10
11
class Checkbox extends Component
12
{
13
    public string $uuid;
14
15
    public function __construct(
16
        public ?string $id = null,
17
        public ?string $label = null,
18
        public ?string $text = null,
19
        public ?bool $right = false,
20
        public ?string $hint = null,
21
        public ?string $hintClass = 'fieldset-label',
22
23
        // Validations
24
        public ?string $errorClass = 'text-error',
25
        public ?bool $omitError = false,
26
        public ?bool $firstErrorOnly = false,
27
    ) {
28
        $this->uuid = md5(serialize($this)) . $id;
29
    }
30
31
    public function modelName(): ?string
32
    {
33
        return $this->attributes->whereStartsWith('wire:model')->first();
34
    }
35
36
    public function errorFieldName(): ?string
37
    {
38
        return $this->modelName() ?? $this->attributes->whereStartsWith('name')->first();
39
    }
40
41
    /**
42
     * Get the view / contents that represent the component.
43
     */
44
    public function render(): View|Closure|string
45
    {
46
        return view('components.checkbox');
47
    }
48
}
49