Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
737c4036
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3172
Star
105
Fork
804
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
67
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
67
合并请求
67
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
737c4036
编写于
2月 15, 2022
作者:
M
mehaotian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 代码预览块新增选项卡
上级
3de7475c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
116 addition
and
14 deletion
+116
-14
docs/.vuepress/theme/global-components/CodeSimulator.vue
docs/.vuepress/theme/global-components/CodeSimulator.vue
+114
-13
docs/.vuepress/theme/index.js
docs/.vuepress/theme/index.js
+2
-1
未找到文件。
docs/.vuepress/theme/global-components/CodeSimulator.vue
浏览文件 @
737c4036
<
template
>
<div
class=
"page-runtime"
>
<div
class=
"page-snippet"
>
<slot></slot>
</div>
<div
class=
"code-content"
>
<iframe
class=
"code-iframe"
:src=
"src"
frameborder=
"0"
></iframe>
</div>
</div>
</
template
>
<
script
>
<
script
>
export
default
{
export
default
{
...
@@ -17,8 +7,79 @@ export default {
...
@@ -17,8 +7,79 @@ export default {
default
:
''
default
:
''
}
}
},
},
created
(){
data
(){
console
.
log
(
'
this.src
'
,
this
.
src
);
return
{
activeIndex
:
0
}
},
created
(){},
methods
:{
onClick
(
index
){
this
.
activeIndex
=
index
},
createdDom
(
h
,
node
){
let
headerDom
=
[]
node
.
forEach
((
v
,
index
)
=>
{
headerDom
.
push
(
h
(
'
p
'
,{
class
:
`pages-tabs-header-text
${
this
.
activeIndex
===
index
?
'
pages-tabs--active
'
:
''
}
`
,
on
:{
click
:(
e
)
=>
{
this
.
onClick
(
index
)
}}},
v
.
title
),)
})
return
this
.
renderDom
(
h
,
h
(
'
div
'
,{
class
:
'
page-tabs
'
},[
h
(
'
div
'
,{
class
:
'
pages-tabs-header
'
},
headerDom
),
h
(
'
div
'
,{
class
:
'
page-snippet-code
'
,
key
:
this
.
activeIndex
},[
node
[
this
.
activeIndex
].
node
]),
]))
},
renderDom
(
h
,
node
){
return
h
(
'
div
'
,{
class
:
'
page-runtime
'
},
[
h
(
'
div
'
,{
class
:
'
page-snippet
'
},[
node
]),
h
(
'
div
'
,{
class
:
'
code-content
'
,
style
:{
display
:
this
.
src
?
'
block
'
:
'
none
'
}},[
h
(
'
iframe
'
,{
class
:
'
code-iframe
'
,
attrs
:{
src
:
this
.
src
,
frameborder
:
'
0
'
}})
]),
]
)
}
},
render
(
h
){
const
columns
=
this
.
$slots
.
default
||
[]
let
boxObj
=
[]
let
realDom
=
[]
columns
.
forEach
((
v
,
i
)
=>
{
if
(
v
.
tag
&&
v
.
children
){
realDom
.
push
(
v
)
}
})
realDom
.
forEach
((
vnode
,
index
)
=>
{
let
code
=
vnode
.
children
[
0
]
if
(
vnode
.
tag
===
'
div
'
&&
code
.
tag
===
'
pre
'
){
let
i
=
index
-
1
if
(
i
>=
0
){
let
textDom
=
realDom
[
i
]
if
(
textDom
.
tag
===
'
blockquote
'
){
let
text
=
textDom
.
children
[
0
]
let
p
=
text
.
children
[
0
]
boxObj
.
push
({
title
:
p
.
text
,
node
:
vnode
})
}
}
}
})
if
(
boxObj
.
length
>
0
){
return
h
(
'
div
'
,
null
,[
this
.
createdDom
(
h
,
boxObj
)])
}
else
{
if
(
this
.
src
){
return
this
.
renderDom
(
h
,
this
.
$slots
.
default
)
}
else
{
return
h
(
'
div
'
,
null
,
this
.
$slots
.
default
)
}
}
}
}
}
}
</
script
>
</
script
>
...
@@ -27,12 +88,52 @@ export default {
...
@@ -27,12 +88,52 @@ export default {
.page-runtime
{
.page-runtime
{
display
:
flex
;
display
:
flex
;
height
:
667px
;
height
:
667px
;
border
:
1px
#eee
solid
;
}
}
.page-snippet
{
.page-snippet
{
width
:
100%
;
width
:
100%
;
overflow
:
hidden
;
overflow
:
hidden
;
}
}
.page-snippet-code
{
height
:
calc
(
100%
-
50px
);
}
.page-tabs
{
height
:
100%
;
box-sizing
:
border-box
;
}
.pages-tabs-header
{
display
:
flex
;
height
:
50px
;
background-color
:
#222
;
}
.pages-tabs-header-text
{
display
:
flex
;
flex-direction
:
column
;
justify-content
:
center
;
margin
:
5px
;
margin-bottom
:
0px
;
border-top-left-radius
:
5px
;
border-top-right-radius
:
5px
;
padding
:
0
45px
;
text-align
:
center
;
font-size
:
18px
;
color
:
#eee
;
background
:
transparent
;
cursor
:
pointer
;
-moz-user-select
:
none
;
/*火狐*/
-webkit-user-select
:
none
;
/*webkit浏览器*/
-ms-user-select
:
none
;
/*IE10*/
-khtml-user-select
:
none
;
/*早期浏览器*/
user-select
:
none
;
}
.pages-tabs--active
{
background
:
#282c34
;
color
:
#fff
;
font-weight
:
bold
;
}
.page-snippet
div
[
class
*=
"language-"
]
{
.page-snippet
div
[
class
*=
"language-"
]
{
width
:
100%
;
width
:
100%
;
height
:
100%
;
height
:
100%
;
...
@@ -42,7 +143,7 @@ export default {
...
@@ -42,7 +143,7 @@ export default {
}
}
.page-snippet
pre
[
class
*=
"language-"
]
{
.page-snippet
pre
[
class
*=
"language-"
]
{
margin
:
0
;
margin
:
0
;
padding
:
1
0px
;
padding
:
20px
2
0px
;
width
:
100%
;
width
:
100%
;
height
:
100%
;
height
:
100%
;
overflow
:
scroll
;
overflow
:
scroll
;
...
...
docs/.vuepress/theme/index.js
浏览文件 @
737c4036
...
@@ -4,7 +4,8 @@ module.exports = {
...
@@ -4,7 +4,8 @@ module.exports = {
[
'
container
'
,
{
[
'
container
'
,
{
type
:
'
preview
'
,
type
:
'
preview
'
,
validate
:
(
params
)
=>
{
validate
:
(
params
)
=>
{
return
params
.
trim
().
match
(
/^preview
\s
+
(
.*
)
$/
);
// return params.trim().match(/^preview\s+(.*)$/);
return
params
.
trim
().
match
(
/^preview/
);
},
},
render
:
(
tokens
,
idx
,
otps
,
event
)
=>
{
render
:
(
tokens
,
idx
,
otps
,
event
)
=>
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录