Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
f4aa5576
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
726
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f4aa5576
编写于
3月 20, 2020
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(v3): Dynamic Slot Names
上级
70b4f9da
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
24 addition
and
7 deletion
+24
-7
packages/uni-template-compiler/__tests__/compiler-app-plus-extra.service.spec.js
...ompiler/__tests__/compiler-app-plus-extra.service.spec.js
+7
-1
packages/uni-template-compiler/__tests__/compiler-app-plus-extra.view.spec.js
...e-compiler/__tests__/compiler-app-plus-extra.view.spec.js
+6
-0
packages/uni-template-compiler/__tests__/demo.js
packages/uni-template-compiler/__tests__/demo.js
+1
-1
packages/uni-template-compiler/lib/app/service.js
packages/uni-template-compiler/lib/app/service.js
+3
-2
packages/uni-template-compiler/lib/app/util.js
packages/uni-template-compiler/lib/app/util.js
+3
-0
packages/uni-template-compiler/lib/app/view.js
packages/uni-template-compiler/lib/app/view.js
+4
-3
未找到文件。
packages/uni-template-compiler/__tests__/compiler-app-plus-extra.service.spec.js
浏览文件 @
f4aa5576
...
@@ -147,5 +147,11 @@ describe('codegen', () => {
...
@@ -147,5 +147,11 @@ describe('codegen', () => {
`with(this){return (_$s(0,'i',a))?_c('text'):(_$s(1,'e',b))?_c('text'):(_$s(2,'e',c))?_c('text'):_c('text')}`
`with(this){return (_$s(0,'i',a))?_c('text'):(_$s(1,'e',b))?_c('text'):(_$s(2,'e',c))?_c('text'):_c('text')}`
)
)
})
})
it
(
'
generate dynamic slot
'
,
()
=>
{
assertCodegen
(
'
<base-layout><template v-slot:[dynamicSlotName]></template></base-layout>
'
,
`with(this){return _c('base-layout',{attrs:{"_i":0},scopedSlots:_u([{key:_$s(1,'st',dynamicSlotName),fn:function(_empty_, _svm, _si){return undefined}}],null,true)})}`
)
})
})
})
/* eslint-enable quotes */
/* eslint-enable quotes */
packages/uni-template-compiler/__tests__/compiler-app-plus-extra.view.spec.js
浏览文件 @
f4aa5576
...
@@ -88,5 +88,11 @@ describe('codegen', () => {
...
@@ -88,5 +88,11 @@ describe('codegen', () => {
`with(this){return (_$g(0,'i'))?_c('v-uni-text',{attrs:{"_i":0}},[_v("1")]):(_$g(1,'e'))?_c('v-uni-text',{attrs:{"_i":1}},[_v("2")]):(_$g(2,'e'))?_c('v-uni-text',{attrs:{"_i":2}},[_v("3")]):_c('v-uni-text',{attrs:{"_i":3}},[_v("d")])}`
`with(this){return (_$g(0,'i'))?_c('v-uni-text',{attrs:{"_i":0}},[_v("1")]):(_$g(1,'e'))?_c('v-uni-text',{attrs:{"_i":1}},[_v("2")]):(_$g(2,'e'))?_c('v-uni-text',{attrs:{"_i":2}},[_v("3")]):_c('v-uni-text',{attrs:{"_i":3}},[_v("d")])}`
)
)
})
})
it
(
'
generate dynamic slot
'
,
()
=>
{
assertCodegen
(
'
<base-layout><template v-slot:[dynamicSlotName]></template></base-layout>
'
,
`with(this){return _c('base-layout',{attrs:{"_i":0},scopedSlots:_u([{key:_$g(1,'st'),fn:function(_empty_, _svm, _si){return undefined}}],null,true)})}`
)
})
})
})
/* eslint-enable quotes */
/* eslint-enable quotes */
packages/uni-template-compiler/__tests__/demo.js
浏览文件 @
f4aa5576
...
@@ -19,7 +19,7 @@ const scopedPath = path.resolve(__dirname, '../../')
...
@@ -19,7 +19,7 @@ const scopedPath = path.resolve(__dirname, '../../')
const
compiler
=
require
(
'
../lib
'
)
const
compiler
=
require
(
'
../lib
'
)
const
res
=
compiler
.
compile
(
const
res
=
compiler
.
compile
(
`
`
<
view>{{obj.param1}}123123{{obj.param1}}123123{{obj.param1}}<text> -{{obj.param3}}---{{obj.param3}} </text>{{obj.param2}}aaaa{{obj.param2}}aaaa{{obj.param2}}</view
>
<
base-layout><template v-slot:[dynamicSlotName]></template></base-layout
>
`
,
{
`
,
{
miniprogram
:
true
,
miniprogram
:
true
,
resourcePath
:
'
/User/fxy/Documents/test.wxml
'
,
resourcePath
:
'
/User/fxy/Documents/test.wxml
'
,
...
...
packages/uni-template-compiler/lib/app/service.js
浏览文件 @
f4aa5576
...
@@ -163,6 +163,7 @@ function postTransformNode (el, options) {
...
@@ -163,6 +163,7 @@ function postTransformNode (el, options) {
options
.
root
=
el
options
.
root
=
el
}
}
traverseNode
(
el
,
false
,
{
traverseNode
(
el
,
false
,
{
createGenVar
,
forIteratorId
:
0
,
forIteratorId
:
0
,
transformNode
,
transformNode
,
filterModules
:
options
.
filterModules
filterModules
:
options
.
filterModules
...
...
packages/uni-template-compiler/lib/app/util.js
浏览文件 @
f4aa5576
...
@@ -207,6 +207,9 @@ function traverseNode (el, parent, state, isScopedSlot) {
...
@@ -207,6 +207,9 @@ function traverseNode (el, parent, state, isScopedSlot) {
el
.
scopedSlots
&&
Object
.
values
(
el
.
scopedSlots
).
forEach
((
slot
,
index
)
=>
{
el
.
scopedSlots
&&
Object
.
values
(
el
.
scopedSlots
).
forEach
((
slot
,
index
)
=>
{
state
.
childIndex
=
index
state
.
childIndex
=
index
slot
.
slotScope
=
`
${
slot
.
slotScope
}
, _svm, _si`
slot
.
slotScope
=
`
${
slot
.
slotScope
}
, _svm, _si`
if
(
slot
.
slotTargetDynamic
&&
slot
.
slotTarget
)
{
slot
.
slotTarget
=
state
.
createGenVar
(
slot
.
attrsMap
[
ID
])(
'
st
'
,
slot
.
slotTarget
)
}
traverseNode
(
slot
,
el
,
state
,
true
)
traverseNode
(
slot
,
el
,
state
,
true
)
})
})
}
}
...
...
packages/uni-template-compiler/lib/app/view.js
浏览文件 @
f4aa5576
...
@@ -162,6 +162,7 @@ function postTransformNode (el, options) {
...
@@ -162,6 +162,7 @@ function postTransformNode (el, options) {
options
.
root
=
el
options
.
root
=
el
}
}
traverseNode
(
el
,
false
,
{
traverseNode
(
el
,
false
,
{
createGenVar
,
forIteratorId
:
0
,
forIteratorId
:
0
,
transformNode
,
transformNode
,
filterModules
:
options
.
filterModules
filterModules
:
options
.
filterModules
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录