Skip to content

Commit 8b893c1

Browse files
Hanks10100yyx990803
authored andcommitted
feat($compiler): supports compiling v-bind to the weex native directive in recycle-list
1 parent c104cc5 commit 8b893c1

File tree

5 files changed

+48
-6
lines changed

5 files changed

+48
-6
lines changed

src/compiler/codegen/index.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -483,15 +483,22 @@ function genComponent (
483483
})`
484484
}
485485

486-
function genProps (props: Array<{ name: string, value: string }>): string {
486+
function genProps (props: Array<{ name: string, value: any }>): string {
487487
let res = ''
488488
for (let i = 0; i < props.length; i++) {
489489
const prop = props[i]
490-
res += `"${prop.name}":${transformSpecialNewlines(prop.value)},`
490+
res += `"${prop.name}":${generateValue(prop.value)},`
491491
}
492492
return res.slice(0, -1)
493493
}
494494

495+
function generateValue (value) {
496+
if (typeof value === 'string') {
497+
return transformSpecialNewlines(value)
498+
}
499+
return JSON.stringify(value)
500+
}
501+
495502
// #3895, #4268
496503
function transformSpecialNewlines (text: string): string {
497504
return text

src/compiler/helpers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export function addProp (el: ASTElement, name: string, value: string) {
2020
(el.props || (el.props = [])).push({ name, value })
2121
}
2222

23-
export function addAttr (el: ASTElement, name: string, value: string) {
23+
export function addAttr (el: ASTElement, name: string, value: any) {
2424
(el.attrs || (el.attrs = [])).push({ name, value })
2525
}
2626

src/platforms/weex/compiler/modules/recycle-list/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* @flow */
22

33
import { transformText } from './text'
4+
import { transformVBind } from './v-bind'
45

56
let currentRecycleList = null
67

@@ -22,6 +23,7 @@ function postTransformNode (el: ASTElement) {
2223
if (el.tag === 'text') {
2324
transformText(el)
2425
}
26+
transformVBind(el)
2527
}
2628
if (el === currentRecycleList) {
2729
currentRecycleList = null

src/platforms/weex/compiler/modules/recycle-list/text.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ function genText (node: ASTNode) {
1616
export function transformText (el: ASTElement) {
1717
// weex <text> can only contain text, so the parser
1818
// always generates a single child.
19-
addAttr(el, 'value', genText(el.children[0]))
20-
el.children = []
21-
el.plain = false
19+
if (el.children.length) {
20+
addAttr(el, 'value', genText(el.children[0]))
21+
el.children = []
22+
el.plain = false
23+
}
2224
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/* @flow */
2+
3+
import { getAndRemoveAttr, addAttr } from 'compiler/helpers'
4+
5+
function isBindingAttr (name) {
6+
return /^(v\-bind)?\:/.test(name)
7+
}
8+
9+
function parseRealName (name: string): string {
10+
return name.replace(/^(v\-bind)?\:/, '')
11+
}
12+
13+
export function transformVBind (el: ASTElement) {
14+
if (!el.attrsList.length) {
15+
return
16+
}
17+
el.attrsList.forEach(attr => {
18+
// console.log('is binding attr:', attr.name, isBindingAttr(attr.name))
19+
if (isBindingAttr(attr.name)) {
20+
const realName: string = parseRealName(attr.name)
21+
const binding = getAndRemoveAttr(el, attr.name)
22+
if (el.attrs) {
23+
el.attrs = el.attrs.filter(at => at.name !== realName) // omit duplicated
24+
}
25+
getAndRemoveAttr(el, realName)
26+
addAttr(el, realName, { '@binding': binding })
27+
}
28+
})
29+
el.hasBindings = false
30+
// el.plain = true
31+
}

0 commit comments

Comments
 (0)