|
1 | 1 | /* @flow */
|
2 | 2 |
|
3 |
| -import { transformText } from './text' |
4 |
| -import { transformVBind } from './v-bind' |
5 |
| -import { transformVIf } from './v-if' |
6 |
| -import { transformVFor } from './v-for' |
| 3 | +import { postTransformText } from './text' |
| 4 | +import { preTransformVBind } from './v-bind' |
| 5 | +import { preTransformVIf } from './v-if' |
| 6 | +import { preTransformVFor } from './v-for' |
7 | 7 | import { postTransformVOn } from './v-on'
|
8 | 8 |
|
9 | 9 | let currentRecycleList = null
|
10 | 10 |
|
| 11 | +function shouldCompile (el: ASTElement, options: CompilerOptions) { |
| 12 | + return options.recyclable || |
| 13 | + (currentRecycleList && el !== currentRecycleList) |
| 14 | +} |
| 15 | + |
11 | 16 | function preTransformNode (el: ASTElement, options: CompilerOptions) {
|
12 | 17 | if (el.tag === 'recycle-list') {
|
13 | 18 | currentRecycleList = el
|
14 | 19 | }
|
15 |
| - if (currentRecycleList) { |
16 |
| - // TODO |
17 |
| - transformVBind(el) |
18 |
| - transformVIf(el, options) // and v-else-if and v-else |
19 |
| - transformVFor(el, options) |
| 20 | + if (shouldCompile(el, options)) { |
| 21 | + preTransformVBind(el, options) |
| 22 | + preTransformVIf(el, options) // also v-else-if and v-else |
| 23 | + preTransformVFor(el, options) |
20 | 24 | }
|
21 | 25 | }
|
22 | 26 |
|
23 |
| -function transformNode (el: ASTElement) { |
24 |
| - if (currentRecycleList) { |
25 |
| - // TODO |
| 27 | +function transformNode (el: ASTElement, options: CompilerOptions) { |
| 28 | + if (shouldCompile(el, options)) { |
| 29 | + // do nothing yet |
26 | 30 | }
|
27 | 31 | }
|
28 | 32 |
|
29 |
| -function postTransformNode (el: ASTElement) { |
30 |
| - if (currentRecycleList) { |
| 33 | +function postTransformNode (el: ASTElement, options: CompilerOptions) { |
| 34 | + if (shouldCompile(el, options)) { |
31 | 35 | // <text>: transform children text into value attr
|
32 | 36 | if (el.tag === 'text') {
|
33 |
| - transformText(el) |
| 37 | + postTransformText(el, options) |
34 | 38 | }
|
35 |
| - postTransformVOn(el) |
| 39 | + postTransformVOn(el, options) |
36 | 40 | }
|
37 | 41 | if (el === currentRecycleList) {
|
38 | 42 | currentRecycleList = null
|
|
0 commit comments