2021-09-15 15:58:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace App\Views\Components\Forms;
|
|
|
|
|
|
|
|
class Radio extends FormComponent
|
|
|
|
{
|
|
|
|
protected bool $isChecked = false;
|
|
|
|
|
|
|
|
public function setIsChecked(string $value): void
|
|
|
|
{
|
|
|
|
$this->isChecked = $value === 'true';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render(): string
|
|
|
|
{
|
|
|
|
$radioInput = form_radio(
|
|
|
|
[
|
|
|
|
'id' => $this->value,
|
|
|
|
'name' => $this->name,
|
2021-11-05 14:36:34 +00:00
|
|
|
'class' => 'text-accent-base bg-elevated border-contrast border-3 focus:ring-accent w-6 h-6',
|
2021-09-15 15:58:21 +00:00
|
|
|
],
|
|
|
|
$this->value,
|
|
|
|
old($this->name) ? old($this->name) === $this->value : $this->isChecked,
|
|
|
|
);
|
|
|
|
|
|
|
|
return <<<HTML
|
2021-10-21 13:12:38 +00:00
|
|
|
<label class="inline-flex items-center {$this->class}">{$radioInput}<span class="ml-2">{$this->slot}</span></label>
|
2021-09-15 15:58:21 +00:00
|
|
|
HTML;
|
|
|
|
}
|
|
|
|
}
|