mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
70 lines
1.9 KiB
PHP
70 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Views\Components\Forms;
|
|
|
|
use App\Views\Components\Hint;
|
|
use Override;
|
|
|
|
class RadioGroup extends FormComponent
|
|
{
|
|
protected array $props = ['label', 'options', 'hint', 'helper'];
|
|
|
|
protected array $casts = [
|
|
'options' => 'array',
|
|
];
|
|
|
|
protected string $label;
|
|
|
|
/**
|
|
* @var array{value:string,label:string,hint?:string}
|
|
*/
|
|
protected array $options = [];
|
|
|
|
protected string $helper = '';
|
|
|
|
protected string $hint = '';
|
|
|
|
#[Override]
|
|
public function render(): string
|
|
{
|
|
$this->mergeClass('flex flex-col');
|
|
|
|
$options = '';
|
|
foreach ($this->options as $option) {
|
|
$options .= (new RadioButton([
|
|
'value' => $option['value'],
|
|
'name' => $this->name,
|
|
'slot' => $option['label'],
|
|
'hint' => $option['hint'] ?? '',
|
|
'isSelected' => var_export($this->value === null ? ($option['value'] === $this->options[array_key_first($this->options)]['value']) : ($this->value === $option['value']), true),
|
|
'isRequired' => var_export($this->isRequired, true),
|
|
]))->render();
|
|
}
|
|
|
|
$helperText = '';
|
|
if ($this->helper !== '') {
|
|
$helperId = $this->name . 'Help';
|
|
$helperText = (new Helper([
|
|
'id' => $helperId,
|
|
'slot' => $this->helper,
|
|
]))->render();
|
|
$this->attributes['aria-describedby'] = $helperId;
|
|
}
|
|
|
|
$hint = $this->hint === '' ? '' : (new Hint([
|
|
'class' => 'ml-1',
|
|
'slot' => $this->hint,
|
|
]))->render();
|
|
|
|
return <<<HTML
|
|
<fieldset {$this->getStringifiedAttributes()}>
|
|
<legend class="-mb-1 text-sm font-semibold">{$this->label}{$hint}</legend>
|
|
{$helperText}
|
|
<div class="flex gap-1 mt-1">{$options}</div>
|
|
</fieldset>
|
|
HTML;
|
|
}
|
|
}
|