-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.js
218 lines (199 loc) · 5.61 KB
/
index.js
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// 介绍这个之前,可以先用 simplehtmlparser.js 做例子
import { parseHTML } from './html-parser'
import { parseText } from './text-parser'
import {
addProp,
addAttr,
baseWarn,
addHandler,
addDirective,
getBindingAttr,
getAndRemoveAttr,
pluckModuleFunction
} from '../helpers'
export const onRE = /^@|^v-on:/
export const dirRE = /^v-|^@|^:/
export const forAliasRE = /(.*?)\s+(?:in|of)\s+(.*)/
export const forIteratorRE = /\((\{[^}]*\}|[^,]*),([^,]*)(?:,([^,]*))?\)/
const argRE = /:(.*)$/
const bindRE = /^:|^v-bind:/
const modifierRE = /\.[^.]+/g
/**
* Convert HTML string to AST.
*/
export function parse (
template: string,
options: CompilerOptions
): ASTElement | void {
// 节点栈
const stack = []
// 根节点,最终改回返回
let root
// 当前的父节点
let currentParent
parseHTML(template, {
// node 的开始
start (tag, attrs, unary) {
// unary 是否一元标签,如 <img/>
const element = {
type: 1,
tag,
// attrsList 数组形式
attrsList: attrs,
// attrsMap 对象形式,如 {id: 'app', 'v-text': 'xxx'}
attrsMap: makeAttrsMap(attrs),
parent: currentParent,
children: []
}
// 处理 v-for ,生成 element.for, element.alias
processFor(element)
// 处理 v-if ,生成 element.if, element.else, element.elseif
processIf(element)
// 处理 v-once ,生成 element.once
processOnce(element)
// 处理 key ,生成 element.key
processKey(element)
// 处理属性
// 第一,处理指令:v-bind v-on 以及其他指令的处理
// 第二,处理普通的 html 属性,如 style class 等
processAttrs(element)
// tree management
if (!root) {
// 确定根节点
root = element
}
if (currentParent) {
// 当前有根节点
currentParent.children.push(element)
element.parent = currentParent
}
if (!unary) {
// 不是一元标签(<img/> 等)
currentParent = element
stack.push(element)
}
},
// node 的结束
end () {
// pop stack
stack.length -= 1
currentParent = stack[stack.length - 1]
},
// 字符
chars (text: string) {
const children = currentParent.children
let expression
// 处理字符
expression = parseText(text) // 如 '_s(price)+" 元"' ,_s 在 core/instance/render.js 中定义
children.push({
type: 2,
expression,
text
})
},
// 注释内容
comment (text: string) {
currentParent.children.push({
type: 3,
text,
isComment: true
})
}
})
return root
}
function makeAttrsMap (attrs: Array<Object>): Object {
const map = {}
for (let i = 0, l = attrs.length; i < l; i++) {
map[attrs[i].name] = attrs[i].value
}
return map
}
// 处理 v-for
function processFor (el) {
let exp
// 获取表达式,例如 'item in list'
if ((exp = getAndRemoveAttr(el, 'v-for'))) {
// inMatch 即 ['item in list', 'item', 'list']
const inMatch = exp.match(forAliasRE)
if (!inMatch) {
return
}
el.for = inMatch[2].trim() // 'list'
const alias = inMatch[1].trim() // 'item'
// 如果是 '(item, index) in list' 情况下
// iteratorMatch 即 ["(item, index)", "item", "index", undefined]
const iteratorMatch = alias.match(forIteratorRE)
if (iteratorMatch) {
el.alias = iteratorMatch[1].trim() // 'item'
el.iterator1 = iteratorMatch[2].trim() // 'index'
if (iteratorMatch[3]) {
el.iterator2 = iteratorMatch[3].trim()
}
} else {
// 普通的 'item in list' 这种情况
el.alias = alias // 'item'
}
}
}
// 处理 v-if
function processIf (el) {
// 获取表达式
const exp = getAndRemoveAttr(el, 'v-if')
if (exp) {
el.if = exp
} else {
if (getAndRemoveAttr(el, 'v-else') != null) {
el.else = true
}
const elseif = getAndRemoveAttr(el, 'v-else-if')
if (elseif) {
el.elseif = elseif
}
}
}
// 处理 v-once
function processOnce (el) {
const once = getAndRemoveAttr(el, 'v-once')
if (once != null) {
el.once = true
}
}
// 处理 key
function processKey (el) {
const exp = getBindingAttr(el, 'key')
if (exp) {
el.key = exp
}
}
function processAttrs (el) {
// 获取属性列表
const list = el.attrsList
let i, l, name, rawName, value, modifiers, isProp
for (i = 0, l = list.length; i < l; i++) {
// 获取属性的 name 和 value
name = rawName = list[i].name
value = list[i].value
if (dirRE.test(name)) { // 如果该属性是指令,如 v- @ : 特性
// mark element as dynamic
el.hasBindings = true
if (bindRE.test(name)) { // v-bind ,如 'v-bind:class'
name = name.replace(bindRE, '') // 去掉 name 中的 'v-bind:'
// el.attrs.push(name, value)
addAttr(el, name, value)
} else if (onRE.test(name)) { // v-on ,如 'v-on:click'
name = name.replace(onRE, '') // 去掉 name 中的 'v-on'
// el.events[name] = [{value: value}, ...] // 多个事件就数组形式,单个时间就普通对象形式 {value: value}
addHandler(el, name, value)
} else { // 普通指令 如 v-show
name = name.replace(dirRE, '') // 去掉指令前缀 'v-show' -> 'show'
// el.directives.push({name, rawname, value})
addDirective(el, name, rawName, value);
}
} else { // 不是指令
// 普通属性加入 el.attrs
// el.attrs.push(name, value)
addAttr(el, name, JSON.stringify(value))
}
}
}