Textarea   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
A errorFieldName() 0 3 1
A modelName() 0 3 1
A render() 0 3 1
A __construct() 0 12 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 Textarea extends Component
12
{
13
    public string $uuid;
14
15
    public function __construct(
16
        public ?string $label = null,
17
        public ?string $hint = null,
18
        public ?string $hintClass = 'fieldset-label',
19
        public ?bool $inline = false,
20
21
        // Validations
22
        public ?string $errorClass = 'text-error',
23
        public ?bool $omitError = false,
24
        public ?bool $firstErrorOnly = false,
25
    ) {
26
        $this->uuid = md5(serialize($this));
27
    }
28
29
    public function modelName(): ?string
30
    {
31
        return $this->attributes->whereStartsWith('wire:model')->first();
32
    }
33
34
    public function errorFieldName(): ?string
35
    {
36
        return $this->modelName() ?? $this->attributes->whereStartsWith('name')->first();
37
    }
38
39
    /**
40
     * Get the view / contents that represent the component.
41
     */
42
    public function render(): View|Closure|string
43
    {
44
        return view('components.textarea');
45
    }
46
}
47