Checkbox::modelName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 1
b 0
f 0
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