- Move 12 markdown files from root to docs/ subdirectories - Organize documentation by category: • docs/troubleshooting/ (1 file) - Technical troubleshooting guides • docs/deployment/ (4 files) - Deployment and security documentation • docs/guides/ (3 files) - Feature-specific guides • docs/planning/ (4 files) - Planning and improvement proposals Root directory cleanup: - Reduced from 16 to 4 markdown files in root - Only essential project files remain: • CLAUDE.md (AI instructions) • README.md (Main project readme) • CLEANUP_PLAN.md (Current cleanup plan) • SRC_STRUCTURE_IMPROVEMENTS.md (Structure improvements) This improves: ✅ Documentation discoverability ✅ Logical organization by purpose ✅ Clean root directory ✅ Better maintainability
80 lines
2.0 KiB
PHP
80 lines
2.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Framework\Admin\FormFields\Fields;
|
|
|
|
use App\Framework\Admin\FormFields\FormField;
|
|
use App\Framework\Admin\FormFields\ValueObjects\FieldAttributes;
|
|
use App\Framework\Admin\FormFields\ValueObjects\FieldMetadata;
|
|
use App\Framework\Admin\FormFields\Components\FieldWrapper;
|
|
use App\Framework\View\FormBuilder;
|
|
use App\Framework\View\ValueObjects\FormElement;
|
|
|
|
/**
|
|
* Text Input Field
|
|
*
|
|
* Standard text input field using composition
|
|
*/
|
|
final readonly class TextField implements FormField
|
|
{
|
|
public function __construct(
|
|
private FieldMetadata $metadata,
|
|
private FieldAttributes $attributes,
|
|
private FieldWrapper $wrapper,
|
|
private mixed $value = null
|
|
) {}
|
|
|
|
public static function create(
|
|
string $name,
|
|
string $label,
|
|
mixed $value = null,
|
|
bool $required = false,
|
|
?string $placeholder = null,
|
|
?string $help = null
|
|
): self {
|
|
return new self(
|
|
metadata: new FieldMetadata($name, $label, $help),
|
|
attributes: new FieldAttributes(
|
|
name: $name,
|
|
id: $name,
|
|
required: $required,
|
|
placeholder: $placeholder
|
|
),
|
|
wrapper: new FieldWrapper(),
|
|
value: $value
|
|
);
|
|
}
|
|
|
|
public function render(FormBuilder $form): FormBuilder
|
|
{
|
|
$attrs = $this->attributes->withAdditional(['type' => 'text']);
|
|
|
|
$attrArray = $attrs->toArray();
|
|
|
|
if ($this->value !== null && $this->value !== '') {
|
|
$attrArray['value'] = (string) $this->value;
|
|
}
|
|
|
|
$input = FormElement::create('input', $attrArray);
|
|
$wrapped = $this->wrapper->wrap($input, $this->metadata);
|
|
|
|
return $form->addElement($wrapped);
|
|
}
|
|
|
|
public function getName(): string
|
|
{
|
|
return $this->metadata->name;
|
|
}
|
|
|
|
public function getValue(): mixed
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
public function getLabel(): string
|
|
{
|
|
return $this->metadata->label;
|
|
}
|
|
}
|