Skip to content

Commit 7ad368e

Browse files
Hanks10100yyx990803
authored andcommitted
feat(compile): supports compiling v-if to the weex native directive
1 parent 8b893c1 commit 7ad368e

File tree

4 files changed

+42
-16
lines changed

4 files changed

+42
-16
lines changed

flow/compiler.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ declare type ASTNode = ASTElement | ASTText | ASTExpression;
7676
declare type ASTElement = {
7777
type: 1;
7878
tag: string;
79-
attrsList: Array<{ name: string; value: string }>;
80-
attrsMap: { [key: string]: string | null };
79+
attrsList: Array<{ name: string; value: any }>;
80+
attrsMap: { [key: string]: any };
8181
parent: ASTElement | void;
8282
children: Array<ASTNode>;
8383

@@ -90,7 +90,7 @@ declare type ASTElement = {
9090
hasBindings?: boolean;
9191

9292
text?: string;
93-
attrs?: Array<{ name: string; value: string }>;
93+
attrs?: Array<{ name: string; value: any }>;
9494
props?: Array<{ name: string; value: string }>;
9595
plain?: boolean;
9696
pre?: true;

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import { transformText } from './text'
44
import { transformVBind } from './v-bind'
5+
import { transformVIf } from './v-if'
56

67
let currentRecycleList = null
78

@@ -14,6 +15,8 @@ function preTransformNode (el: ASTElement) {
1415
function transformNode (el: ASTElement) {
1516
if (currentRecycleList) {
1617
// TODO
18+
transformVIf(el)
19+
transformVBind(el)
1720
}
1821
}
1922

@@ -23,7 +26,6 @@ function postTransformNode (el: ASTElement) {
2326
if (el.tag === 'text') {
2427
transformText(el)
2528
}
26-
transformVBind(el)
2729
}
2830
if (el === currentRecycleList) {
2931
currentRecycleList = null
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,26 @@
11
/* @flow */
22

3+
import { camelize } from 'shared/util'
34
import { getAndRemoveAttr, addAttr } from 'compiler/helpers'
45

5-
function isBindingAttr (name) {
6+
function isBindingAttr (name: string): boolean {
67
return /^(v\-bind)?\:/.test(name)
78
}
89

9-
function parseRealName (name: string): string {
10-
return name.replace(/^(v\-bind)?\:/, '')
10+
function parseAttrName (name: string): string {
11+
return camelize(name.replace(/^(v\-bind)?\:/, ''))
1112
}
1213

1314
export function transformVBind (el: ASTElement) {
14-
if (!el.attrsList.length) {
15+
if (!el.attrsList || !el.attrsList.length) {
1516
return
1617
}
1718
el.attrsList.forEach(attr => {
18-
// console.log('is binding attr:', attr.name, isBindingAttr(attr.name))
1919
if (isBindingAttr(attr.name)) {
20-
const realName: string = parseRealName(attr.name)
20+
const name: string = parseAttrName(attr.name)
2121
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 })
22+
addAttr(el, name, { '@binding': binding })
2723
}
2824
})
2925
el.hasBindings = false
30-
// el.plain = true
3126
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/* @flow */
2+
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+
}
8+
9+
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+
}
28+
}
29+
}

0 commit comments

Comments
 (0)