保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 26a09f08cf1ed43c640879f23fdad56c5c9282f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* @flow */
 
import { parseFor } from 'compiler/parser/index'
import { getAndRemoveAttr, addRawAttr } from 'compiler/helpers'
 
/**
 * Map the following syntax to corresponding attrs:
 *
 * <recycle-list for="(item, i) in longList" switch="cellType">
 *   <cell-slot case="A"> ... </cell-slot>
 *   <cell-slot case="B"> ... </cell-slot>
 * </recycle-list>
 */
 
export function preTransformRecycleList (
  el: ASTElement,
  options: WeexCompilerOptions
) {
  const exp = getAndRemoveAttr(el, 'for')
  if (!exp) {
    if (options.warn) {
      options.warn(`Invalid <recycle-list> syntax: missing "for" expression.`)
    }
    return
  }
 
  const res = parseFor(exp)
  if (!res) {
    if (options.warn) {
      options.warn(`Invalid <recycle-list> syntax: ${exp}.`)
    }
    return
  }
 
  addRawAttr(el, ':list-data', res.for)
  addRawAttr(el, 'binding-expression', res.for)
  addRawAttr(el, 'alias', res.alias)
  if (res.iterator2) {
    // (item, key, index) for object iteration
    // is this even supported?
    addRawAttr(el, 'index', res.iterator2)
  } else if (res.iterator1) {
    addRawAttr(el, 'index', res.iterator1)
  }
 
  const switchKey = getAndRemoveAttr(el, 'switch')
  if (switchKey) {
    addRawAttr(el, 'switch', switchKey)
  }
}