Skip to content

Commit 5254ee3

Browse files
committed
feat(weex): recycle-list support WIP
1 parent 2488031 commit 5254ee3

File tree

9 files changed

+85
-24
lines changed

9 files changed

+85
-24
lines changed

flow/compiler.js

+1
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ declare type ASTExpression = {
155155
type: 2;
156156
expression: string;
157157
text: string;
158+
tokens: Array<string | Object>;
158159
static?: boolean;
159160
// 2.4 ssr optimization
160161
ssrOptimizability?: number;

src/compiler/parser/index.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,18 @@ export function parse (
9898
}
9999
}
100100

101-
function endPre (element) {
101+
function closeElement (element) {
102102
// check pre state
103103
if (element.pre) {
104104
inVPre = false
105105
}
106106
if (platformIsPreTag(element.tag)) {
107107
inPre = false
108108
}
109+
// apply post-transforms
110+
for (let i = 0; i < postTransforms.length; i++) {
111+
postTransforms[i](element, options)
112+
}
109113
}
110114

111115
parseHTML(template, {
@@ -219,7 +223,7 @@ export function parse (
219223
currentParent = element
220224
stack.push(element)
221225
} else {
222-
endPre(element)
226+
closeElement(element)
223227
}
224228
},
225229

@@ -233,12 +237,7 @@ export function parse (
233237
// pop stack
234238
stack.length -= 1
235239
currentParent = stack[stack.length - 1]
236-
endPre(element)
237-
238-
// apply post-transforms
239-
for (let i = 0; i < postTransforms.length; i++) {
240-
postTransforms[i](element, options)
241-
}
240+
closeElement(element)
242241
},
243242

244243
chars (text: string) {
@@ -270,11 +269,12 @@ export function parse (
270269
// only preserve whitespace if its not right after a starting tag
271270
: preserveWhitespace && children.length ? ' ' : ''
272271
if (text) {
273-
let expression
274-
if (!inVPre && text !== ' ' && (expression = parseText(text, delimiters))) {
272+
let res
273+
if (!inVPre && text !== ' ' && (res = parseText(text, delimiters))) {
275274
children.push({
276275
type: 2,
277-
expression,
276+
expression: res.expression,
277+
tokens: res.tokens,
278278
text
279279
})
280280
} else if (text !== ' ' || !children.length || children[children.length - 1].text !== ' ') {
@@ -571,8 +571,8 @@ function processAttrs (el) {
571571
} else {
572572
// literal attribute
573573
if (process.env.NODE_ENV !== 'production') {
574-
const expression = parseText(value, delimiters)
575-
if (expression) {
574+
const res = parseText(value, delimiters)
575+
if (res) {
576576
warn(
577577
`${name}="${value}": ` +
578578
'Interpolation inside attributes has been removed. ' +

src/compiler/parser/text-parser.js

+17-5
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,42 @@ const buildRegex = cached(delimiters => {
1212
return new RegExp(open + '((?:.|\\n)+?)' + close, 'g')
1313
})
1414

15+
type TextParseResult = {
16+
expression: string,
17+
tokens: Array<string | { '@binding': string }>
18+
}
19+
1520
export function parseText (
1621
text: string,
1722
delimiters?: [string, string]
18-
): string | void {
23+
): TextParseResult | void {
1924
const tagRE = delimiters ? buildRegex(delimiters) : defaultTagRE
2025
if (!tagRE.test(text)) {
2126
return
2227
}
2328
const tokens = []
29+
const rawTokens = []
2430
let lastIndex = tagRE.lastIndex = 0
25-
let match, index
31+
let match, index, tokenValue
2632
while ((match = tagRE.exec(text))) {
2733
index = match.index
2834
// push text token
2935
if (index > lastIndex) {
30-
tokens.push(JSON.stringify(text.slice(lastIndex, index)))
36+
rawTokens.push(tokenValue = text.slice(lastIndex, index))
37+
tokens.push(JSON.stringify(tokenValue))
3138
}
3239
// tag token
3340
const exp = parseFilters(match[1].trim())
3441
tokens.push(`_s(${exp})`)
42+
rawTokens.push({ '@binding': exp })
3543
lastIndex = index + match[0].length
3644
}
3745
if (lastIndex < text.length) {
38-
tokens.push(JSON.stringify(text.slice(lastIndex)))
46+
rawTokens.push(tokenValue = text.slice(lastIndex))
47+
tokens.push(JSON.stringify(tokenValue))
48+
}
49+
return {
50+
expression: tokens.join('+'),
51+
tokens: rawTokens
3952
}
40-
return tokens.join('+')
4153
}

src/platforms/web/compiler/modules/class.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ function transformNode (el: ASTElement, options: CompilerOptions) {
1111
const warn = options.warn || baseWarn
1212
const staticClass = getAndRemoveAttr(el, 'class')
1313
if (process.env.NODE_ENV !== 'production' && staticClass) {
14-
const expression = parseText(staticClass, options.delimiters)
15-
if (expression) {
14+
const res = parseText(staticClass, options.delimiters)
15+
if (res) {
1616
warn(
1717
`class="${staticClass}": ` +
1818
'Interpolation inside attributes has been removed. ' +

src/platforms/web/compiler/modules/style.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ function transformNode (el: ASTElement, options: CompilerOptions) {
1414
if (staticStyle) {
1515
/* istanbul ignore if */
1616
if (process.env.NODE_ENV !== 'production') {
17-
const expression = parseText(staticStyle, options.delimiters)
18-
if (expression) {
17+
const res = parseText(staticStyle, options.delimiters)
18+
if (res) {
1919
warn(
2020
`style="${staticStyle}": ` +
2121
'Interpolation inside attributes has been removed. ' +

src/platforms/weex/compiler/modules/class.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function parseStaticClass (staticClass: ?string, options: CompilerOptions): Stat
5555
const result = parseText(name, options.delimiters)
5656
if (result) {
5757
dynamic = true
58-
return result
58+
return result.expression
5959
}
6060
return JSON.stringify(name)
6161
})

src/platforms/weex/compiler/modules/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ import klass from './class'
22
import style from './style'
33
import props from './props'
44
import append from './append'
5+
import recycleList from './recycle-list/index'
56

67
export default [
8+
recycleList,
79
klass,
810
style,
911
props,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/* @flow */
2+
3+
import { addAttr } from 'compiler/helpers'
4+
5+
let currentRecycleList = null
6+
7+
function preTransformNode (el: ASTElement) {
8+
if (el.tag === 'recycle-list') {
9+
currentRecycleList = el
10+
}
11+
}
12+
13+
function transformNode (el: ASTElement) {
14+
if (currentRecycleList) {
15+
// TODO
16+
}
17+
}
18+
19+
function postTransformNode (el: ASTElement) {
20+
if (currentRecycleList) {
21+
// <text>: transform children text into value attr
22+
if (el.tag === 'text') {
23+
addAttr(el, 'value', genText(el.children[0]))
24+
el.children = []
25+
el.plain = false
26+
}
27+
}
28+
if (el === currentRecycleList) {
29+
currentRecycleList = null
30+
}
31+
}
32+
33+
function genText (node) {
34+
const value = node.type === 3
35+
? node.text
36+
: node.tokens.length === 1
37+
? node.tokens[0]
38+
: node.tokens
39+
return JSON.stringify(value)
40+
}
41+
42+
export default {
43+
preTransformNode,
44+
transformNode,
45+
postTransformNode
46+
}

src/platforms/weex/compiler/modules/style.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function parseStaticStyle (staticStyle: ?string, options: CompilerOptions): Stat
6464
const dynamicValue = parseText(value, options.delimiters)
6565
if (dynamicValue) {
6666
dynamic = true
67-
return key + ':' + dynamicValue
67+
return key + ':' + dynamicValue.expression
6868
}
6969
return key + ':' + JSON.stringify(value)
7070
}).filter(result => result)

0 commit comments

Comments
 (0)