You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
2.5 KiB
129 lines
2.5 KiB
3 years ago
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
* FormText.php
|
||
|
* User: ChenLong
|
||
|
* DateTime: 2020/3/11 14:40
|
||
|
*/
|
||
|
|
||
|
|
||
|
namespace sdModule\makeAdminBasics\htmlUnit;
|
||
|
|
||
|
|
||
|
use sdModule\makeAdminBasics\Basics;
|
||
|
|
||
|
/**
|
||
|
* 时间
|
||
|
* Class FormTime
|
||
|
* @package sdModule\makeAdminBasics\htmlUnit
|
||
|
*/
|
||
|
class Time
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $label;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $name;
|
||
|
|
||
|
/**
|
||
|
* @var
|
||
|
*/
|
||
|
private $default;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $timeType = 'datetime';
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* FormText constructor.
|
||
|
* @param string $label
|
||
|
* @param string $name
|
||
|
*/
|
||
|
public function __construct(string $label, string $name)
|
||
|
{
|
||
|
$this->label = $label;
|
||
|
$this->name = $name;
|
||
|
JsFacade::registerLayUIModule('laydate');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 设置默认值
|
||
|
* @param $value
|
||
|
* @return $this
|
||
|
*/
|
||
|
public function setDefault($value)
|
||
|
{
|
||
|
$value and $this->default = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取html
|
||
|
* @param bool $showLabel 是否显示label
|
||
|
* @return mixed|string
|
||
|
*/
|
||
|
public function getHtml(bool $showLabel = true)
|
||
|
{
|
||
|
return <<<HTML
|
||
|
|
||
|
<div class="layui-form-item">{$this->getLabel($showLabel)}
|
||
|
<div class="layui-input-block">{$this->getForm($showLabel)}</div>
|
||
|
</div>
|
||
|
|
||
|
HTML;
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取label
|
||
|
* @param $lineFeed
|
||
|
* @return string
|
||
|
*/
|
||
|
private function getLabel($lineFeed)
|
||
|
{
|
||
|
return $lineFeed ?
|
||
|
Basics::indentAndLineFeed(4, Basics::BEFORE) . "<label class=\"layui-form-label\">{$this->label}</label>"
|
||
|
: "";
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取表单html文本
|
||
|
* @param $showLabel
|
||
|
* @return string
|
||
|
*/
|
||
|
private function getForm($showLabel)
|
||
|
{
|
||
|
$placeholder = $showLabel ? "{:lang('please enter')}" : $this->label;
|
||
|
$html = Basics::indentAndLineFeed(5, Basics::BEFORE) .
|
||
|
"<input type=\"text\" name=\"{$this->name}\" id='{$this->name}' required placeholder=\"{$placeholder}\" value=\"{$this->default}\" autocomplete=\"off\" class=\"layui-input\">"
|
||
|
. Basics::indentAndLineFeed(4, Basics::BEFORE);
|
||
|
|
||
|
JsFacade::layUICode(self::timeRender());
|
||
|
return $html;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 时间选择js渲染
|
||
|
* @return string
|
||
|
*/
|
||
|
private function timeRender()
|
||
|
{
|
||
|
return <<<JS
|
||
|
|
||
|
laydate.render({
|
||
|
elem: '#{$this->name}'
|
||
|
,type: '{$this->timeType}'
|
||
|
});
|
||
|
|
||
|
JS;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|