Skip to content

Commit 2d09ee3

Browse files
Hanks10100yyx990803
authored andcommitted
feat($compiler): compile weex native directives in preTransformNode
1 parent 9bd1483 commit 2d09ee3

File tree

5 files changed

+49
-67
lines changed

5 files changed

+49
-67
lines changed

src/compiler/parser/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const forIteratorRE = /,([^,\}\]]*)(?:,([^,\}\]]*))?$/
2626
const stripParensRE = /^\(|\)$/g
2727

2828
const argRE = /:(.*)$/
29-
const bindRE = /^:|^v-bind:/
29+
export const bindRE = /^:|^v-bind:/
3030
const modifierRE = /\.[^.]+/g
3131

3232
const literalValueRE = /^(\{.*\}|\[.*\])$/

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

+6-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@ function preTransformNode (el: ASTElement) {
1111
if (el.tag === 'recycle-list') {
1212
currentRecycleList = el
1313
}
14+
if (currentRecycleList) {
15+
// TODO
16+
transformVBind(el)
17+
transformVIf(el)
18+
transformVFor(el)
19+
}
1420
}
1521

1622
function transformNode (el: ASTElement) {
1723
if (currentRecycleList) {
1824
// TODO
19-
transformVIf(el)
20-
transformVFor(el)
21-
transformVBind(el)
2225
}
2326
}
2427

Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
/* @flow */
22

33
import { camelize } from 'shared/util'
4-
import { getAndRemoveAttr, addAttr } from 'compiler/helpers'
5-
6-
function isBindingAttr (name: string): boolean {
7-
return /^(v\-bind)?\:/.test(name)
8-
}
4+
import { bindRE } from 'compiler/parser/index'
5+
import { getAndRemoveAttr } from 'compiler/helpers'
96

107
function parseAttrName (name: string): string {
11-
return camelize(name.replace(/^(v\-bind)?\:/, ''))
8+
return camelize(name.replace(bindRE, ''))
129
}
1310

1411
export function transformVBind (el: ASTElement) {
15-
if (!el.attrsList || !el.attrsList.length) {
16-
return
17-
}
18-
el.attrsList.forEach(attr => {
19-
if (isBindingAttr(attr.name)) {
20-
const name: string = parseAttrName(attr.name)
21-
const binding = getAndRemoveAttr(el, attr.name)
22-
addAttr(el, name, { '@binding': binding })
12+
for (const attr in el.attrsMap) {
13+
if (bindRE.test(attr)) {
14+
const name: string = parseAttrName(attr)
15+
const value = {
16+
'@binding': getAndRemoveAttr(el, attr)
17+
}
18+
delete el.attrsMap[attr]
19+
el.attrsMap[name] = value
20+
el.attrsList.push({ name, value })
21+
// addAttr(el, name, value)
22+
// el.hasBindings = false
2323
}
24-
})
25-
el.hasBindings = false
24+
}
2625
}
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,31 @@
11
/* @flow */
22

3-
import { addAttr } from 'compiler/helpers'
4-
5-
function isVForAttr (name: string): boolean {
6-
return /^v\-for/.test(name)
7-
}
3+
import { forAliasRE, forIteratorRE } from 'compiler/parser/index'
4+
import { getAndRemoveAttr } from 'compiler/helpers'
85

96
export function transformVFor (el: ASTElement) {
10-
for (const attr in el.attrsMap) {
11-
if (!isVForAttr(attr)) {
12-
continue
13-
}
7+
const exp = getAndRemoveAttr(el, 'v-for')
8+
if (!exp) {
9+
return
10+
}
11+
const inMatch = exp.match(forAliasRE)
12+
if (inMatch) {
13+
const alias = inMatch[1].trim()
1414
const desc: Object = {
15-
'@expression': el.for,
16-
'@alias': el.alias
17-
}
18-
if (el.iterator1) {
19-
desc['@index'] = el.iterator1
15+
'@expression': inMatch[2].trim(),
16+
'@alias': alias
2017
}
21-
if (el.iterator2) {
22-
desc['@key'] = el.iterator1
23-
desc['@index'] = el.iterator2
18+
const iteratorMatch = alias.match(forIteratorRE)
19+
if (iteratorMatch) {
20+
desc['@alias'] = iteratorMatch[1].trim()
21+
desc['@index'] = iteratorMatch[2].trim()
22+
if (iteratorMatch[3]) {
23+
desc['@key'] = iteratorMatch[2].trim()
24+
desc['@index'] = iteratorMatch[3].trim()
25+
}
2426
}
25-
addAttr(el, '[[repeat]]', desc)
27+
delete el.attrsMap['v-for']
2628
el.attrsMap['[[repeat]]'] = desc
2729
el.attrsList.push({ name: '[[repeat]]', value: desc })
28-
delete el.attrsMap[attr]
29-
delete el.for
30-
delete el.alias
31-
delete el.key
32-
delete el.iterator1
33-
delete el.iterator2
3430
}
3531
}
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,13 @@
11
/* @flow */
22

3-
import { getAndRemoveAttr, addAttr } from 'compiler/helpers'
4-
5-
function isConditionAttr (name: string): boolean {
6-
return /^v\-if|v\-else|v\-else\-if/.test(name)
7-
}
3+
import { getAndRemoveAttr } from 'compiler/helpers'
84

95
export function transformVIf (el: ASTElement) {
10-
for (const attr in el.attrsMap) {
11-
if (!isConditionAttr(attr)) {
12-
continue
13-
}
14-
const binding = getAndRemoveAttr(el, attr)
15-
switch (attr) {
16-
case 'v-if': {
17-
addAttr(el, '[[match]]', binding)
18-
el.attrsMap['[[match]]'] = binding
19-
el.attrsList.push({ name: '[[match]]', value: binding })
20-
delete el.attrsMap[attr]
21-
delete el.if
22-
delete el.ifConditions
23-
break
24-
}
25-
26-
// TODO: support v-else and v-else-if
27-
}
6+
const exp = getAndRemoveAttr(el, 'v-if')
7+
if (exp) {
8+
el.attrsMap['[[match]]'] = exp
9+
el.attrsList.push({ name: '[[match]]', value: exp })
10+
delete el.attrsMap['v-if']
2811
}
12+
// TODO: support v-else and v-else-if
2913
}

0 commit comments

Comments
 (0)