|
1 | 1 | /* @flow */
|
2 | 2 |
|
3 | 3 | 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' |
9 | 6 |
|
10 | 7 | function parseAttrName (name: string): string {
|
11 |
| - return camelize(name.replace(/^(v\-bind)?\:/, '')) |
| 8 | + return camelize(name.replace(bindRE, '')) |
12 | 9 | }
|
13 | 10 |
|
14 | 11 | 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 |
23 | 23 | }
|
24 |
| - }) |
25 |
| - el.hasBindings = false |
| 24 | + } |
26 | 25 | }
|
0 commit comments