52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Lucent\Schema\Ui;
|
|
|
|
use Lucent\Schema\FieldInfo;
|
|
use Lucent\Schema\FieldInterface;
|
|
use Lucent\Schema\FieldType;
|
|
use Lucent\Schema\Nullable;
|
|
use Lucent\Schema\Validator\RequiredInterface;
|
|
|
|
class Text implements FieldInterface, RequiredInterface
|
|
{
|
|
public FieldInfo $info;
|
|
|
|
public function __construct(
|
|
public string $name,
|
|
public string $label,
|
|
public bool $required = false,
|
|
public bool $nullable = false,
|
|
public ?int $min = null,
|
|
public ?int $max = null,
|
|
public string $help = "",
|
|
public string $default = "",
|
|
public bool $readonly = false,
|
|
public string $optionsFrom = "",
|
|
public string $optionsField = "",
|
|
public bool $optionsSuggest = false,
|
|
public ?array $selectOptions = null,
|
|
public string $group = "",
|
|
) {
|
|
$this->info = new FieldInfo("text", "Text", FieldType::STRING);
|
|
}
|
|
|
|
public function format(array $input, array $output): array
|
|
{
|
|
$value = !empty($input[$this->name])
|
|
? (string) $input[$this->name]
|
|
: null;
|
|
$output[$this->name] = Nullable::make(
|
|
$this->nullable,
|
|
$value,
|
|
"",
|
|
)->value();
|
|
return $output;
|
|
}
|
|
|
|
public function failRequired(mixed $value): bool
|
|
{
|
|
return empty(trim($value));
|
|
}
|
|
}
|