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.
141 lines
2.7 KiB
141 lines
2.7 KiB
<?php |
|
/** |
|
* |
|
* FormText.php |
|
* User: ChenLong |
|
* DateTime: 2020/3/11 14:40 |
|
*/ |
|
|
|
|
|
namespace sdModule\makeAdminBasics\htmlUnit; |
|
|
|
|
|
use sdModule\makeAdminBasics\Basics; |
|
|
|
/** |
|
* 文本 |
|
* Class FormText |
|
* @package sdModule\makeAdminBasics\htmlUnit |
|
*/ |
|
class FormEditor implements FormUnitInterface |
|
{ |
|
|
|
/** |
|
* @var string |
|
*/ |
|
private $label; |
|
|
|
/** |
|
* @var string |
|
*/ |
|
private $name; |
|
|
|
/** |
|
* @var |
|
*/ |
|
private $default; |
|
|
|
/** |
|
* 上传图片的路径 |
|
* @var bool |
|
*/ |
|
private $upImgUrl = false; |
|
|
|
/** |
|
* |
|
* FormText constructor. |
|
* @param string $label |
|
* @param string $name |
|
*/ |
|
public function __construct(string $label, string $name) |
|
{ |
|
$this->label = $label; |
|
$this->name = $name; |
|
} |
|
|
|
/** |
|
* 设置上传路径 |
|
* @param string $url |
|
*/ |
|
public function setUploadUrl(string $url) |
|
{ |
|
$url and $this->upImgUrl = $url; |
|
} |
|
|
|
/** |
|
* 获取html |
|
* @return mixed|string |
|
*/ |
|
public function getHtml() |
|
{ |
|
return <<<HTML |
|
|
|
<div class="layui-form-item">{$this->getLabel()} |
|
<div class="layui-input-block">{$this->getForm()}</div> |
|
</div> |
|
|
|
HTML; |
|
|
|
} |
|
|
|
/** |
|
* 获取label |
|
* @return string |
|
*/ |
|
private function getLabel() |
|
{ |
|
return Basics::indentAndLineFeed(4, Basics::BEFORE) . "<label class=\"layui-form-label\">{$this->label}</label>"; |
|
} |
|
|
|
/** |
|
* 获取表单html文本 |
|
* @return string |
|
*/ |
|
private function getForm() |
|
{ |
|
JsFacade::normalJS($this->editor()); |
|
JsFacade::resetCode($this->resetCode()); |
|
JsFacade::loadJs('admin_static/editor/ueditor.config.js'); |
|
JsFacade::loadJs('admin_static/editor/ueditor.all.js'); |
|
return Basics::indentAndLineFeed(5, Basics::BEFORE) . |
|
"<script id=\"{$this->name}-ue\" name=\"{$this->name}\" type=\"text/plain\">{$this->default}</script>" |
|
. Basics::indentAndLineFeed(4, Basics::BEFORE); |
|
} |
|
|
|
/** |
|
* 富文本的js |
|
* @return string |
|
*/ |
|
private function editor() |
|
{ |
|
return <<<EDITOR |
|
|
|
let ue_{$this->name} = custom.editorRender(UE, "{$this->name}-ue"); |
|
|
|
EDITOR; |
|
|
|
} |
|
|
|
private function resetCode() |
|
{ |
|
return <<<JST |
|
|
|
ue_{$this->name}.ready(()=>{ |
|
ue_{$this->name}.setContent('{:html_entity_decode(\$data.{$this->name})}'); |
|
}); |
|
JST; |
|
|
|
} |
|
|
|
/** |
|
* 设置默认值 |
|
* @param $value |
|
* @return $this|mixed |
|
*/ |
|
public function setDefault($value) |
|
{ |
|
$value and $this->default = html_entity_decode($value); |
|
return $this; |
|
} |
|
} |
|
|
|
|