coolify/app/View/Components/Forms/Textarea.php

68 lines
2 KiB
PHP
Raw Normal View History

2023-07-13 11:16:24 +00:00
<?php
namespace App\View\Components\Forms;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\Support\Facades\Gate;
2023-07-13 11:16:24 +00:00
use Illuminate\View\Component;
use Visus\Cuid2\Cuid2;
class Textarea extends Component
{
/**
* Create a new component instance.
*/
public function __construct(
public ?string $id = null,
public ?string $name = null,
public ?string $type = 'text',
public ?string $value = null,
public ?string $label = null,
public ?string $placeholder = null,
public ?string $monacoEditorLanguage = '',
public bool $useMonacoEditor = false,
2024-06-10 20:43:34 +00:00
public bool $required = false,
public bool $disabled = false,
public bool $readonly = false,
public bool $allowTab = false,
public bool $spellcheck = false,
2025-10-16 07:48:32 +00:00
public bool $autofocus = false,
public ?string $helper = null,
2024-06-10 20:43:34 +00:00
public bool $realtimeValidation = false,
public bool $allowToPeak = true,
public string $defaultClass = 'input scrollbar font-mono',
public string $defaultClassInput = 'input',
public ?int $minlength = null,
public ?int $maxlength = null,
public ?string $canGate = null,
public mixed $canResource = null,
public bool $autoDisable = true,
2023-08-11 18:48:52 +00:00
) {
// Handle authorization-based disabling
if ($this->canGate && $this->canResource && $this->autoDisable) {
$hasPermission = Gate::allows($this->canGate, $this->canResource);
if (! $hasPermission) {
$this->disabled = true;
}
}
2023-07-13 11:16:24 +00:00
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
2024-06-10 20:43:34 +00:00
if (is_null($this->id)) {
2024-07-25 11:31:59 +00:00
$this->id = new Cuid2;
2024-06-10 20:43:34 +00:00
}
if (is_null($this->name)) {
$this->name = $this->id;
}
2023-07-13 11:16:24 +00:00
// $this->label = Str::title($this->label);
2023-07-13 11:16:24 +00:00
return view('components.forms.textarea');
}
}