Newer
Older

Yassine Doghri
committed
<?php
declare(strict_types=1);
namespace App\Views\Components\Forms;

Yassine Doghri
committed
use ViewComponents\Component;
/**
* Form Checkbox Switch
*
* Abstracts form_label to stylize it as a switch toggle
*/
class Toggler extends Component
{
/**
* @var array<string, string>
*/
protected array $attributes = [
'id' => '',
'name' => '',
'value' => '',
'class' => '',
];
protected string $label = '';
protected string $hint = '';
protected bool $checked = false;

Yassine Doghri
committed
public function setChecked(string $value): void
{
$this->checked = $value !== '';
}

Yassine Doghri
committed
public function render(): string
{

Yassine Doghri
committed
unset($this->attributes['checked']);

Yassine Doghri
committed
$wrapperClass = $this->attributes['class'];
unset($this->attributes['class']);
$this->attributes['class'] = 'form-switch';

Yassine Doghri
committed
helper('form');

Yassine Doghri
committed
$checkbox = form_checkbox($this->attributes, $this->attributes['value'], $this->checked);

Yassine Doghri
committed
$hint = $this->hint === '' ? '' : hint_tooltip($this->hint, 'ml-1');
return <<<HTML

Yassine Doghri
committed
<label class="relative inline-flex items-center {$wrapperClass}">
{$checkbox}
<span class="form-switch-slider"></span>

Yassine Doghri
committed
<span class="ml-2">{$this->slot}{$hint}</span>

Yassine Doghri
committed
</label>

Yassine Doghri
committed
HTML;