支持用户自定义标签库

This commit is contained in:
TOP糯米 2019-07-27 21:24:47 +08:00
parent 1dd547d04f
commit f63375ee08
11 changed files with 105 additions and 42 deletions

View File

@ -21,6 +21,9 @@ return [
], ],
'view' => [ 'view' => [
'engine' => 'Top', 'engine' => 'Top',
'tagLib' => [
\app\home\taglib\Extend::class
],
'ext' => 'html', 'ext' => 'html',
'dir' => APP_PATH . 'home/view/', 'dir' => APP_PATH . 'home/view/',
'cacheDir' => './runtime/cache/application/home/', 'cacheDir' => './runtime/cache/application/home/',

View File

@ -0,0 +1,23 @@
<?php
namespace app\home\taglib;
use top\library\template\driver\tags\Engine;
class Extend extends Engine
{
protected $tags = [
'say' => ['attr' => 'what', 'close' => 0]
];
protected function _say_start($tag)
{
return 'echo \'' . $tag['what'] . '\';';
}
protected function _say_end($tag, $content)
{
return "echo '{$content}123';";
}
}

View File

View File

@ -0,0 +1,2 @@
a.html
<include file="Base/b" />

View File

@ -0,0 +1 @@
b.html

View File

@ -3,4 +3,15 @@
<block name="body"> <block name="body">
BODY BODY
{$num} {$num}
<assign name="b" value="1" />
<raw>
<volist name="b" id="vo">
<if condition="$a == 1">
{$a}
<else condition="$a == 2" />
{$b}
</if>
</volist>
</raw>
<include file="Base/a" />
</block> </block>

View File

@ -70,6 +70,12 @@ class Top implements TemplateIfs
} }
$content = file_get_contents($filename); $content = file_get_contents($filename);
$content = $this->engine->compile($content); $content = $this->engine->compile($content);
if (isset($this->config['tagLib']) && !empty($this->config['tagLib'])) {
foreach ($this->config['tagLib'] as $lib) {
$object = new $lib();
$content = $object->parseCustomizeTags($content);
}
}
$content = $this->engine->returnRaw($content); $content = $this->engine->returnRaw($content);
file_put_contents($compileFileName, $content); file_put_contents($compileFileName, $content);
} }

View File

@ -38,8 +38,14 @@ class Engine
'if' => ['attr' => 'condition', 'close' => 1], 'if' => ['attr' => 'condition', 'close' => 1],
'else' => ['attr' => 'condition', 'close' => 0], 'else' => ['attr' => 'condition', 'close' => 0],
'volist' => ['attr' => 'name,id,key', 'close' => 1], 'volist' => ['attr' => 'name,id,key', 'close' => 1],
'assign' => ['attr' => 'name,value', 'close' => 0]
]; ];
/**
* 构造方法
* Engine constructor.
* @throws \Exception
*/
public function __construct() public function __construct()
{ {
$this->config = Register::get('Config')->get('view'); $this->config = Register::get('Config')->get('view');
@ -187,27 +193,30 @@ class Engine
private function parseTags($tmpl, $tags) private function parseTags($tmpl, $tags)
{ {
foreach ($tags as $name => $item) { foreach ($tags as $name => $item) {
$pattern = '#' . $this->left . $name . ' +(.*?)'; $pattern = '#' . $this->left . $name . ' +(.*?)' . ($item['close'] ? $this->right : '\/' . $this->right . '#');
$pattern .= ((!$item['close']) ? '\/' . $this->right : $this->right) . '#'; if ($item['close']) {
$tmpl = preg_replace_callback($pattern, function ($matches) use ($name, $item) { $pattern .= '([\s\S]*?)' . $this->left . '\/' . $name . $this->right . '#';
$function = '_' . $name . '_start'; }
$pattern = '#(.*?)=[\'"](.*?)[\'"]#'; preg_match_all($pattern, $tmpl, $matches);
preg_match_all($pattern, $matches[1], $result); for ($i = 0; $i < count($matches[0]); $i++) {
$attrPattern = '#(.*?)=[\'"](.*?)[\'"]#';
preg_match_all($attrPattern, $matches[1][$i], $result);
$tag = []; $tag = [];
if (!empty($result)) { if (!empty($result)) {
foreach ($result[1] as $key => $value) { foreach ($result[1] as $key => $value) {
$tag[trim($value, ' ')] = $result[2][$key]; $tag[trim($value, ' ')] = $result[2][$key];
} }
} }
return '<?php ' . $this->{$function}($tag) . ' ?>'; if ($item['close']) {
}, $tmpl); $tagContent = $matches[2][$i];
// 处理闭合标签 $content = $this->{'_' . $name . '_start'}($tag, $tagContent);
if ($item['close']) { if ($item['close']) {
$pattern = '#' . $this->left . '\/' . $name . '' . $this->right . '#'; $content .= $this->{'_' . $name . '_end'}($tag, $tagContent);
$tmpl = preg_replace_callback($pattern, function ($matches) use ($name) { }
$function = '_' . $name . '_end'; } else {
return '<?php ' . $this->{$function}() . ' ?>'; $content = $this->{'_' . $name . '_start'}($tag);
}, $tmpl); }
$tmpl = str_replace($matches[0][$i], $content, $tmpl);
} }
} }
return preg_replace('#\?>([\r|\n|\s]*?)<\?php#', '', $tmpl); return preg_replace('#\?>([\r|\n|\s]*?)<\?php#', '', $tmpl);
@ -255,9 +264,9 @@ class Engine
* @param $tag * @param $tag
* @return string * @return string
*/ */
private function _if_start($tag) private function _if_start($tag, $content)
{ {
return 'if (' . $tag['condition'] . '):'; return '<?php if (' . $tag['condition'] . '): ?>' . $content;
} }
/** /**
@ -266,7 +275,7 @@ class Engine
*/ */
private function _if_end() private function _if_end()
{ {
return 'endif;'; return '<?php endif; ?>';
} }
/** /**
@ -277,11 +286,11 @@ class Engine
private function _else_start($tag) private function _else_start($tag)
{ {
if (isset($tag['condition'])) { if (isset($tag['condition'])) {
$content = 'elseif (' . $tag['condition'] . '):'; $parse = '<?php elseif (' . $tag['condition'] . '): ?>';
} else { } else {
$content = 'else:'; $parse = '<?php else: ?>';
} }
return $content; return $parse;
} }
/** /**
@ -289,17 +298,17 @@ class Engine
* @param $tag * @param $tag
* @return null|string * @return null|string
*/ */
private function _volist_start($tag) private function _volist_start($tag, $content)
{ {
if (substr($tag['name'], 0, 1) == ':') { if (substr($tag['name'], 0, 1) == ':') {
$name = substr($tag['name'], 1); $name = substr($tag['name'], 1);
} else { } else {
$name = '$' . $tag['name']; $name = '$' . $tag['name'];
} }
$str = (empty($tag['key'])) ? null : '$' . $tag['key'] . ' = 0; '; $parse = (empty($tag['key'])) ? null : '$' . $tag['key'] . ' = 0; ';
$str .= 'foreach (' . $name . ' as $' . $tag['id'] . '):'; $parse .= '<?php foreach (' . $name . ' as $' . $tag['id'] . '): ?>' . $content;
$str .= (empty($tag['key']) ? null : '$' . $tag['key'] . '++;'); $parse .= (empty($tag['key']) ? null : '$' . $tag['key'] . '++;');
return $str; return $parse;
} }
/** /**
@ -308,7 +317,16 @@ class Engine
*/ */
private function _volist_end() private function _volist_end()
{ {
return 'endforeach;'; return '<?php endforeach; ?>';
}
/**
* assign标签
* @return string
*/
private function _assign_start($tag)
{
return '<?php $'. $tag['name'] .' = ' . $tag['value'] . '; ?>';
} }
/** /**
@ -317,6 +335,7 @@ class Engine
*/ */
public function compile($tmpl) public function compile($tmpl)
{ {
// 处理raw标签
$tmpl = $this->parseRaw($tmpl); $tmpl = $this->parseRaw($tmpl);
// 处理模板继承标签 // 处理模板继承标签
$tmpl = $this->parseExtend($tmpl); $tmpl = $this->parseExtend($tmpl);

View File

@ -7,7 +7,7 @@ require '../framework/Framework.php';
// 可能你会使用到下面这些配置 // 可能你会使用到下面这些配置
// 调试模式缺省值false // 调试模式缺省值false
// Framework::debug(true); Framework::debug(true);
// 可使用常量DEBUG取得该值 // 可使用常量DEBUG取得该值
// 项目目录,缺省值:./application/ // 项目目录,缺省值:./application/

View File

@ -1,13 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
父级模板
BODY
49999985000001
</body>
</html>

View File

@ -8,7 +8,18 @@
父级模板 父级模板
BODY BODY
<?php echo $num; ?> <?php echo $num; $b = 1; ?>
<volist name="b" id="vo">
<if condition="$a == 1">
{$a}
<else condition="$a == 2" />
{$b}
</if>
</volist>
a.html
b.html
</body> </body>
</html> </html>