| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- import { decodeHTML } from 'entities'
- import { parseHTML } from './html-parser'
- import { parseText } from './text-parser'
- import { hyphenate, makeMap, cached } from '../../shared/util'
- import {
- getAndRemoveAttr,
- addProp,
- addAttr,
- addStaticAttr,
- addHandler,
- addDirective,
- getBindingAttr
- } from '../helpers'
- const dirRE = /^v-|^@|^:/
- const bindRE = /^:|^v-bind:/
- const onRE = /^@|^v-on:/
- const argRE = /:(.*)$/
- const modifierRE = /\.[^\.]+/g
- const forAliasRE = /(.*)\s+(?:in|of)\s+(.*)/
- const forIteratorRE = /\((.*),(.*)\)/
- const camelRE = /[a-z\d][A-Z]/
- const decodeHTMLCached = cached(decodeHTML)
- // attributes that should be using props for binding
- const mustUseProp = makeMap('value,selected,checked,muted')
- // this map covers namespace elements that can appear as template root nodes
- const isSVG = makeMap('svg,g,defs,symbol,use,image,text,circle,ellipse,line,path,polygon,polyline,rect', true)
- function getTagNamespace (tag) {
- if (isSVG(tag)) {
- return 'svg'
- }
- }
- // make warning customizable depending on environment.
- let warn
- const baseWarn = msg => console.error(`[Vue parser]: ${msg}`)
- /**
- * Convert HTML string to AST.
- *
- * @param {String} template
- * @param {Object} options
- * @return {Object}
- */
- export function parse (template, options) {
- options = options || {}
- warn = options.warn || baseWarn
- const stack = []
- let root
- let currentParent
- let inNamespace = false
- let namespaceIndex = -1
- let currentNamespace = ''
- let inPre = false
- let warned = false
- parseHTML(template, {
- html5: true,
- start (tag, attrs, unary) {
- // check camelCase tag
- if (camelRE.test(tag)) {
- process.env.NODE_ENV !== 'production' && warn(
- `Found camelCase tag in template: <${tag}>. ` +
- `I've converted it to <${hyphenate(tag)}> for you.`
- )
- tag = hyphenate(tag)
- }
- tag = tag.toLowerCase()
- const element = {
- tag,
- attrsList: attrs,
- attrsMap: makeAttrsMap(attrs),
- parent: currentParent,
- children: []
- }
- // check namespace
- const namespace = getTagNamespace(tag)
- if (inNamespace) {
- element.ns = currentNamespace
- } else if (namespace) {
- element.ns = namespace
- inNamespace = true
- currentNamespace = namespace
- namespaceIndex = stack.length
- }
- if (!inPre) {
- processPre(element)
- if (element.pre) {
- inPre = true
- }
- }
- if (inPre) {
- processRawAttrs(element)
- } else {
- processFor(element)
- processIf(element)
- processOnce(element)
- // determine whether this is a plain element after
- // removing if/for/once attributes
- element.plain = !attrs.length
- processRender(element)
- processSlot(element)
- processComponent(element)
- processClassBinding(element)
- processStyleBinding(element)
- processTransition(element)
- processAttrs(element)
- }
- // tree management
- if (!root) {
- root = element
- } else if (process.env.NODE_ENV !== 'production' && !stack.length && !warned) {
- warned = true
- warn(
- `Component template should contain exactly one root element:\n\n${template}`
- )
- }
- if (currentParent) {
- if (element.else) {
- processElse(element, currentParent)
- } else {
- currentParent.children.push(element)
- }
- }
- if (!unary) {
- currentParent = element
- stack.push(element)
- }
- },
- end (tag) {
- // remove trailing whitespace
- const element = stack[stack.length - 1]
- const lastNode = element.children[element.children.length - 1]
- if (lastNode && lastNode.text === ' ') element.children.pop()
- // pop stack
- stack.length -= 1
- currentParent = stack[stack.length - 1]
- // check namespace state
- if (inNamespace && stack.length <= namespaceIndex) {
- inNamespace = false
- currentNamespace = ''
- namespaceIndex = -1
- }
- // check pre state
- if (element.pre) {
- inPre = false
- }
- },
- chars (text) {
- if (!currentParent) {
- if (process.env.NODE_ENV !== 'production' && !warned) {
- warned = true
- warn(
- 'Component template should contain exactly one root element:\n\n' + template
- )
- }
- return
- }
- text = currentParent.tag === 'pre' || text.trim()
- ? decodeHTMLCached(text)
- // only preserve whitespace if its not right after a starting tag
- : options.preserveWhitespace && currentParent.children.length
- ? ' '
- : null
- if (text) {
- let expression
- if (!inPre && text !== ' ' && (expression = parseText(text))) {
- currentParent.children.push({ expression })
- } else {
- currentParent.children.push({ text })
- }
- }
- }
- })
- return root
- }
- function processPre (el) {
- if (getAndRemoveAttr(el, 'v-pre') != null) {
- el.pre = true
- }
- }
- function processRawAttrs (el) {
- const l = el.attrsList.length
- if (l) {
- el.attrs = new Array(l)
- for (let i = 0; i < l; i++) {
- el.attrs[i] = {
- name: el.attrsList[i].name,
- value: JSON.stringify(el.attrsList[i].value)
- }
- }
- }
- }
- function processFor (el) {
- let exp
- if ((exp = getAndRemoveAttr(el, 'v-for'))) {
- const inMatch = exp.match(forAliasRE)
- if (!inMatch) {
- process.env.NODE_ENV !== 'production' && warn(
- `Invalid v-for expression: ${exp}`
- )
- return
- }
- el.for = inMatch[2].trim()
- const alias = inMatch[1].trim()
- const iteratorMatch = alias.match(forIteratorRE)
- if (iteratorMatch) {
- el.iterator = iteratorMatch[1].trim()
- el.alias = iteratorMatch[2].trim()
- } else {
- el.alias = alias
- }
- if ((exp = getAndRemoveAttr(el, 'track-by'))) {
- el.key = exp === '$index'
- ? exp
- : el.alias + '["' + exp + '"]'
- }
- }
- }
- function processIf (el) {
- let exp = getAndRemoveAttr(el, 'v-if')
- if (exp) {
- el.if = exp
- }
- if (getAndRemoveAttr(el, 'v-else') != null) {
- el.else = true
- }
- }
- function processElse (el, parent) {
- const prev = findPrevElement(parent.children)
- if (prev && (prev.if || prev.attrsMap['v-show'])) {
- if (prev.if) {
- // v-if
- prev.elseBlock = el
- } else {
- // v-show: simply add a v-show with reversed value
- addDirective(el, 'show', `!(${prev.attrsMap['v-show']})`)
- // also copy its transition
- el.transition = prev.transition
- // als set show to true
- el.show = true
- parent.children.push(el)
- }
- } else if (process.env.NODE_ENV !== 'production') {
- warn(
- `v-else used on element <${el.tag}> without corresponding v-if/v-show.`
- )
- }
- }
- function processOnce (el) {
- const once = getAndRemoveAttr(el, 'v-once')
- if (once != null) {
- el.once = true
- }
- }
- function processRender (el) {
- if (el.tag === 'render') {
- el.render = true
- el.renderMethod = el.attrsMap.method
- el.renderArgs = el.attrsMap[':args'] || el.attrsMap['v-bind:args']
- if (process.env.NODE_ENV !== 'production') {
- if (!el.renderMethod) {
- warn('method attribute is required on <render>.')
- }
- if (el.attrsMap.args) {
- warn('<render> args should use a dynamic binding, e.g. `:args="..."`.')
- }
- }
- }
- }
- function processSlot (el) {
- if (el.tag === 'slot') {
- el.slotName = getBindingAttr(el, 'name')
- } else {
- const slotTarget = getBindingAttr(el, 'slot')
- if (slotTarget) {
- el.slotTarget = slotTarget
- }
- }
- }
- function processComponent (el) {
- if (el.tag === 'component') {
- el.component = getBindingAttr(el, 'is')
- }
- }
- function processClassBinding (el) {
- const staticClass = getAndRemoveAttr(el, 'class')
- el.staticClass = parseText(staticClass) || JSON.stringify(staticClass)
- const classBinding = getBindingAttr(el, 'class', false /* getStatic */)
- if (classBinding) {
- el.classBinding = classBinding
- }
- }
- function processStyleBinding (el) {
- const styleBinding = getBindingAttr(el, 'style', false /* getStatic */)
- if (styleBinding) {
- el.styleBinding = styleBinding
- }
- }
- function processTransition (el) {
- let transition = getBindingAttr(el, 'transition')
- if (transition === '""') {
- transition = true
- }
- if (transition) {
- el.transition = transition
- el.transitionOnAppear = getBindingAttr(el, 'transition-on-appear') != null
- }
- }
- function processAttrs (el) {
- const list = el.attrsList
- let i, l, name, value, arg, modifiers
- for (i = 0, l = list.length; i < l; i++) {
- name = list[i].name
- value = list[i].value
- if (dirRE.test(name)) {
- // modifiers
- modifiers = parseModifiers(name)
- if (modifiers) {
- name = name.replace(modifierRE, '')
- }
- if (bindRE.test(name)) { // v-bind
- name = name.replace(bindRE, '')
- if (mustUseProp(name)) {
- addProp(el, name, value)
- } else {
- addAttr(el, name, value)
- }
- } else if (onRE.test(name)) { // v-on
- name = name.replace(onRE, '')
- addHandler(el, name, value, modifiers)
- } else { // normal directives
- name = name.replace(dirRE, '')
- // parse arg
- if ((arg = name.match(argRE)) && (arg = arg[1])) {
- name = name.slice(0, -(arg.length + 1))
- }
- addDirective(el, name, value, arg, modifiers)
- }
- } else {
- // literal attribute
- let expression = parseText(value)
- if (expression) {
- addAttr(el, name, expression)
- } else {
- addStaticAttr(el, name, JSON.stringify(value))
- }
- }
- }
- }
- function parseModifiers (name) {
- const match = name.match(modifierRE)
- if (match) {
- const ret = {}
- match.forEach(m => { ret[m.slice(1)] = true })
- return ret
- }
- }
- function makeAttrsMap (attrs) {
- const map = {}
- for (let i = 0, l = attrs.length; i < l; i++) {
- if (process.env.NODE_ENV !== 'production' && map[attrs[i].name]) {
- warn('duplicate attribute: ' + attrs[i].name)
- }
- map[attrs[i].name] = attrs[i].value
- }
- return map
- }
- function findPrevElement (children) {
- let i = children.length
- while (i--) {
- if (children[i].tag) return children[i]
- }
- }
|