2023-06-16 08:32:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\View\Components\Forms;
|
|
|
|
|
|
|
|
use Closure;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
use Visus\Cuid2\Cuid2;
|
|
|
|
|
|
|
|
class Input extends Component
|
|
|
|
{
|
|
|
|
public function __construct(
|
2024-03-15 19:40:50 +00:00
|
|
|
public ?string $id = null,
|
|
|
|
public ?string $name = null,
|
|
|
|
public ?string $type = 'text',
|
|
|
|
public ?string $value = null,
|
|
|
|
public ?string $label = null,
|
2024-06-10 20:43:34 +00:00
|
|
|
public bool $required = false,
|
|
|
|
public bool $disabled = false,
|
|
|
|
public bool $readonly = false,
|
2024-03-15 19:40:50 +00:00
|
|
|
public ?string $helper = null,
|
2024-06-10 20:43:34 +00:00
|
|
|
public bool $allowToPeak = true,
|
|
|
|
public bool $isMultiline = false,
|
|
|
|
public string $defaultClass = 'input',
|
2023-08-11 18:48:52 +00:00
|
|
|
) {
|
2023-06-16 08:32:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function render(): View|Closure|string
|
|
|
|
{
|
2024-06-10 20:43:34 +00:00
|
|
|
if (is_null($this->id)) {
|
|
|
|
$this->id = new Cuid2(7);
|
|
|
|
}
|
|
|
|
if (is_null($this->name)) {
|
|
|
|
$this->name = $this->id;
|
|
|
|
}
|
2024-03-22 12:09:02 +00:00
|
|
|
if ($this->type === 'password') {
|
2024-06-10 20:43:34 +00:00
|
|
|
$this->defaultClass = $this->defaultClass.' pr-[2.8rem]';
|
2024-03-22 12:09:02 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-07-28 08:55:26 +00:00
|
|
|
// $this->label = Str::title($this->label);
|
2023-06-16 08:32:29 +00:00
|
|
|
return view('components.forms.input');
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
}
|