ocr scan
This commit is contained in:
BIN
express-server/node_modules/vue/src/compiler/.DS_Store
generated
vendored
Normal file
BIN
express-server/node_modules/vue/src/compiler/.DS_Store
generated
vendored
Normal file
Binary file not shown.
50
express-server/node_modules/vue/src/compiler/codeframe.js
generated
vendored
Normal file
50
express-server/node_modules/vue/src/compiler/codeframe.js
generated
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
/* @flow */
|
||||
|
||||
const range = 2
|
||||
|
||||
export function generateCodeFrame (
|
||||
source: string,
|
||||
start: number = 0,
|
||||
end: number = source.length
|
||||
): string {
|
||||
const lines = source.split(/\r?\n/)
|
||||
let count = 0
|
||||
const res = []
|
||||
for (let i = 0; i < lines.length; i++) {
|
||||
count += lines[i].length + 1
|
||||
if (count >= start) {
|
||||
for (let j = i - range; j <= i + range || end > count; j++) {
|
||||
if (j < 0 || j >= lines.length) continue
|
||||
res.push(`${j + 1}${repeat(` `, 3 - String(j + 1).length)}| ${lines[j]}`)
|
||||
const lineLength = lines[j].length
|
||||
if (j === i) {
|
||||
// push underline
|
||||
const pad = start - (count - lineLength) + 1
|
||||
const length = end > count ? lineLength - pad : end - start
|
||||
res.push(` | ` + repeat(` `, pad) + repeat(`^`, length))
|
||||
} else if (j > i) {
|
||||
if (end > count) {
|
||||
const length = Math.min(end - count, lineLength)
|
||||
res.push(` | ` + repeat(`^`, length))
|
||||
}
|
||||
count += lineLength + 1
|
||||
}
|
||||
}
|
||||
break
|
||||
}
|
||||
}
|
||||
return res.join('\n')
|
||||
}
|
||||
|
||||
function repeat (str, n) {
|
||||
let result = ''
|
||||
if (n > 0) {
|
||||
while (true) { // eslint-disable-line
|
||||
if (n & 1) result += str
|
||||
n >>>= 1
|
||||
if (n <= 0) break
|
||||
str += str
|
||||
}
|
||||
}
|
||||
return result
|
||||
}
|
190
express-server/node_modules/vue/src/compiler/codegen/events.js
generated
vendored
Normal file
190
express-server/node_modules/vue/src/compiler/codegen/events.js
generated
vendored
Normal file
@ -0,0 +1,190 @@
|
||||
/* @flow */
|
||||
|
||||
const fnExpRE = /^([\w$_]+|\([^)]*?\))\s*=>|^function\s*\(/
|
||||
const fnInvokeRE = /\([^)]*?\);*$/
|
||||
const simplePathRE = /^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/
|
||||
|
||||
// KeyboardEvent.keyCode aliases
|
||||
const keyCodes: { [key: string]: number | Array<number> } = {
|
||||
esc: 27,
|
||||
tab: 9,
|
||||
enter: 13,
|
||||
space: 32,
|
||||
up: 38,
|
||||
left: 37,
|
||||
right: 39,
|
||||
down: 40,
|
||||
'delete': [8, 46]
|
||||
}
|
||||
|
||||
// KeyboardEvent.key aliases
|
||||
const keyNames: { [key: string]: string | Array<string> } = {
|
||||
// #7880: IE11 and Edge use `Esc` for Escape key name.
|
||||
esc: ['Esc', 'Escape'],
|
||||
tab: 'Tab',
|
||||
enter: 'Enter',
|
||||
// #9112: IE11 uses `Spacebar` for Space key name.
|
||||
space: [' ', 'Spacebar'],
|
||||
// #7806: IE11 uses key names without `Arrow` prefix for arrow keys.
|
||||
up: ['Up', 'ArrowUp'],
|
||||
left: ['Left', 'ArrowLeft'],
|
||||
right: ['Right', 'ArrowRight'],
|
||||
down: ['Down', 'ArrowDown'],
|
||||
// #9112: IE11 uses `Del` for Delete key name.
|
||||
'delete': ['Backspace', 'Delete', 'Del']
|
||||
}
|
||||
|
||||
// #4868: modifiers that prevent the execution of the listener
|
||||
// need to explicitly return null so that we can determine whether to remove
|
||||
// the listener for .once
|
||||
const genGuard = condition => `if(${condition})return null;`
|
||||
|
||||
const modifierCode: { [key: string]: string } = {
|
||||
stop: '$event.stopPropagation();',
|
||||
prevent: '$event.preventDefault();',
|
||||
self: genGuard(`$event.target !== $event.currentTarget`),
|
||||
ctrl: genGuard(`!$event.ctrlKey`),
|
||||
shift: genGuard(`!$event.shiftKey`),
|
||||
alt: genGuard(`!$event.altKey`),
|
||||
meta: genGuard(`!$event.metaKey`),
|
||||
left: genGuard(`'button' in $event && $event.button !== 0`),
|
||||
middle: genGuard(`'button' in $event && $event.button !== 1`),
|
||||
right: genGuard(`'button' in $event && $event.button !== 2`)
|
||||
}
|
||||
|
||||
export function genHandlers (
|
||||
events: ASTElementHandlers,
|
||||
isNative: boolean
|
||||
): string {
|
||||
const prefix = isNative ? 'nativeOn:' : 'on:'
|
||||
let staticHandlers = ``
|
||||
let dynamicHandlers = ``
|
||||
for (const name in events) {
|
||||
const handlerCode = genHandler(events[name])
|
||||
if (events[name] && events[name].dynamic) {
|
||||
dynamicHandlers += `${name},${handlerCode},`
|
||||
} else {
|
||||
staticHandlers += `"${name}":${handlerCode},`
|
||||
}
|
||||
}
|
||||
staticHandlers = `{${staticHandlers.slice(0, -1)}}`
|
||||
if (dynamicHandlers) {
|
||||
return prefix + `_d(${staticHandlers},[${dynamicHandlers.slice(0, -1)}])`
|
||||
} else {
|
||||
return prefix + staticHandlers
|
||||
}
|
||||
}
|
||||
|
||||
// Generate handler code with binding params on Weex
|
||||
/* istanbul ignore next */
|
||||
function genWeexHandler (params: Array<any>, handlerCode: string) {
|
||||
let innerHandlerCode = handlerCode
|
||||
const exps = params.filter(exp => simplePathRE.test(exp) && exp !== '$event')
|
||||
const bindings = exps.map(exp => ({ '@binding': exp }))
|
||||
const args = exps.map((exp, i) => {
|
||||
const key = `$_${i + 1}`
|
||||
innerHandlerCode = innerHandlerCode.replace(exp, key)
|
||||
return key
|
||||
})
|
||||
args.push('$event')
|
||||
return '{\n' +
|
||||
`handler:function(${args.join(',')}){${innerHandlerCode}},\n` +
|
||||
`params:${JSON.stringify(bindings)}\n` +
|
||||
'}'
|
||||
}
|
||||
|
||||
function genHandler (handler: ASTElementHandler | Array<ASTElementHandler>): string {
|
||||
if (!handler) {
|
||||
return 'function(){}'
|
||||
}
|
||||
|
||||
if (Array.isArray(handler)) {
|
||||
return `[${handler.map(handler => genHandler(handler)).join(',')}]`
|
||||
}
|
||||
|
||||
const isMethodPath = simplePathRE.test(handler.value)
|
||||
const isFunctionExpression = fnExpRE.test(handler.value)
|
||||
const isFunctionInvocation = simplePathRE.test(handler.value.replace(fnInvokeRE, ''))
|
||||
|
||||
if (!handler.modifiers) {
|
||||
if (isMethodPath || isFunctionExpression) {
|
||||
return handler.value
|
||||
}
|
||||
/* istanbul ignore if */
|
||||
if (__WEEX__ && handler.params) {
|
||||
return genWeexHandler(handler.params, handler.value)
|
||||
}
|
||||
return `function($event){${
|
||||
isFunctionInvocation ? `return ${handler.value}` : handler.value
|
||||
}}` // inline statement
|
||||
} else {
|
||||
let code = ''
|
||||
let genModifierCode = ''
|
||||
const keys = []
|
||||
for (const key in handler.modifiers) {
|
||||
if (modifierCode[key]) {
|
||||
genModifierCode += modifierCode[key]
|
||||
// left/right
|
||||
if (keyCodes[key]) {
|
||||
keys.push(key)
|
||||
}
|
||||
} else if (key === 'exact') {
|
||||
const modifiers: ASTModifiers = (handler.modifiers: any)
|
||||
genModifierCode += genGuard(
|
||||
['ctrl', 'shift', 'alt', 'meta']
|
||||
.filter(keyModifier => !modifiers[keyModifier])
|
||||
.map(keyModifier => `$event.${keyModifier}Key`)
|
||||
.join('||')
|
||||
)
|
||||
} else {
|
||||
keys.push(key)
|
||||
}
|
||||
}
|
||||
if (keys.length) {
|
||||
code += genKeyFilter(keys)
|
||||
}
|
||||
// Make sure modifiers like prevent and stop get executed after key filtering
|
||||
if (genModifierCode) {
|
||||
code += genModifierCode
|
||||
}
|
||||
const handlerCode = isMethodPath
|
||||
? `return ${handler.value}($event)`
|
||||
: isFunctionExpression
|
||||
? `return (${handler.value})($event)`
|
||||
: isFunctionInvocation
|
||||
? `return ${handler.value}`
|
||||
: handler.value
|
||||
/* istanbul ignore if */
|
||||
if (__WEEX__ && handler.params) {
|
||||
return genWeexHandler(handler.params, code + handlerCode)
|
||||
}
|
||||
return `function($event){${code}${handlerCode}}`
|
||||
}
|
||||
}
|
||||
|
||||
function genKeyFilter (keys: Array<string>): string {
|
||||
return (
|
||||
// make sure the key filters only apply to KeyboardEvents
|
||||
// #9441: can't use 'keyCode' in $event because Chrome autofill fires fake
|
||||
// key events that do not have keyCode property...
|
||||
`if(!$event.type.indexOf('key')&&` +
|
||||
`${keys.map(genFilterCode).join('&&')})return null;`
|
||||
)
|
||||
}
|
||||
|
||||
function genFilterCode (key: string): string {
|
||||
const keyVal = parseInt(key, 10)
|
||||
if (keyVal) {
|
||||
return `$event.keyCode!==${keyVal}`
|
||||
}
|
||||
const keyCode = keyCodes[key]
|
||||
const keyName = keyNames[key]
|
||||
return (
|
||||
`_k($event.keyCode,` +
|
||||
`${JSON.stringify(key)},` +
|
||||
`${JSON.stringify(keyCode)},` +
|
||||
`$event.key,` +
|
||||
`${JSON.stringify(keyName)}` +
|
||||
`)`
|
||||
)
|
||||
}
|
618
express-server/node_modules/vue/src/compiler/codegen/index.js
generated
vendored
Normal file
618
express-server/node_modules/vue/src/compiler/codegen/index.js
generated
vendored
Normal file
@ -0,0 +1,618 @@
|
||||
/* @flow */
|
||||
|
||||
import { genHandlers } from './events'
|
||||
import baseDirectives from '../directives/index'
|
||||
import { camelize, no, extend } from 'shared/util'
|
||||
import { baseWarn, pluckModuleFunction } from '../helpers'
|
||||
import { emptySlotScopeToken } from '../parser/index'
|
||||
|
||||
type TransformFunction = (el: ASTElement, code: string) => string;
|
||||
type DataGenFunction = (el: ASTElement) => string;
|
||||
type DirectiveFunction = (el: ASTElement, dir: ASTDirective, warn: Function) => boolean;
|
||||
|
||||
export class CodegenState {
|
||||
options: CompilerOptions;
|
||||
warn: Function;
|
||||
transforms: Array<TransformFunction>;
|
||||
dataGenFns: Array<DataGenFunction>;
|
||||
directives: { [key: string]: DirectiveFunction };
|
||||
maybeComponent: (el: ASTElement) => boolean;
|
||||
onceId: number;
|
||||
staticRenderFns: Array<string>;
|
||||
pre: boolean;
|
||||
|
||||
constructor (options: CompilerOptions) {
|
||||
this.options = options
|
||||
this.warn = options.warn || baseWarn
|
||||
this.transforms = pluckModuleFunction(options.modules, 'transformCode')
|
||||
this.dataGenFns = pluckModuleFunction(options.modules, 'genData')
|
||||
this.directives = extend(extend({}, baseDirectives), options.directives)
|
||||
const isReservedTag = options.isReservedTag || no
|
||||
this.maybeComponent = (el: ASTElement) => !!el.component || !isReservedTag(el.tag)
|
||||
this.onceId = 0
|
||||
this.staticRenderFns = []
|
||||
this.pre = false
|
||||
}
|
||||
}
|
||||
|
||||
export type CodegenResult = {
|
||||
render: string,
|
||||
staticRenderFns: Array<string>
|
||||
};
|
||||
|
||||
export function generate (
|
||||
ast: ASTElement | void,
|
||||
options: CompilerOptions
|
||||
): CodegenResult {
|
||||
const state = new CodegenState(options)
|
||||
const code = ast ? genElement(ast, state) : '_c("div")'
|
||||
return {
|
||||
render: `with(this){return ${code}}`,
|
||||
staticRenderFns: state.staticRenderFns
|
||||
}
|
||||
}
|
||||
|
||||
export function genElement (el: ASTElement, state: CodegenState): string {
|
||||
if (el.parent) {
|
||||
el.pre = el.pre || el.parent.pre
|
||||
}
|
||||
|
||||
if (el.staticRoot && !el.staticProcessed) {
|
||||
return genStatic(el, state)
|
||||
} else if (el.once && !el.onceProcessed) {
|
||||
return genOnce(el, state)
|
||||
} else if (el.for && !el.forProcessed) {
|
||||
return genFor(el, state)
|
||||
} else if (el.if && !el.ifProcessed) {
|
||||
return genIf(el, state)
|
||||
} else if (el.tag === 'template' && !el.slotTarget && !state.pre) {
|
||||
return genChildren(el, state) || 'void 0'
|
||||
} else if (el.tag === 'slot') {
|
||||
return genSlot(el, state)
|
||||
} else {
|
||||
// component or element
|
||||
let code
|
||||
if (el.component) {
|
||||
code = genComponent(el.component, el, state)
|
||||
} else {
|
||||
let data
|
||||
if (!el.plain || (el.pre && state.maybeComponent(el))) {
|
||||
data = genData(el, state)
|
||||
}
|
||||
|
||||
const children = el.inlineTemplate ? null : genChildren(el, state, true)
|
||||
code = `_c('${el.tag}'${
|
||||
data ? `,${data}` : '' // data
|
||||
}${
|
||||
children ? `,${children}` : '' // children
|
||||
})`
|
||||
}
|
||||
// module transforms
|
||||
for (let i = 0; i < state.transforms.length; i++) {
|
||||
code = state.transforms[i](el, code)
|
||||
}
|
||||
return code
|
||||
}
|
||||
}
|
||||
|
||||
// hoist static sub-trees out
|
||||
function genStatic (el: ASTElement, state: CodegenState): string {
|
||||
el.staticProcessed = true
|
||||
// Some elements (templates) need to behave differently inside of a v-pre
|
||||
// node. All pre nodes are static roots, so we can use this as a location to
|
||||
// wrap a state change and reset it upon exiting the pre node.
|
||||
const originalPreState = state.pre
|
||||
if (el.pre) {
|
||||
state.pre = el.pre
|
||||
}
|
||||
state.staticRenderFns.push(`with(this){return ${genElement(el, state)}}`)
|
||||
state.pre = originalPreState
|
||||
return `_m(${
|
||||
state.staticRenderFns.length - 1
|
||||
}${
|
||||
el.staticInFor ? ',true' : ''
|
||||
})`
|
||||
}
|
||||
|
||||
// v-once
|
||||
function genOnce (el: ASTElement, state: CodegenState): string {
|
||||
el.onceProcessed = true
|
||||
if (el.if && !el.ifProcessed) {
|
||||
return genIf(el, state)
|
||||
} else if (el.staticInFor) {
|
||||
let key = ''
|
||||
let parent = el.parent
|
||||
while (parent) {
|
||||
if (parent.for) {
|
||||
key = parent.key
|
||||
break
|
||||
}
|
||||
parent = parent.parent
|
||||
}
|
||||
if (!key) {
|
||||
process.env.NODE_ENV !== 'production' && state.warn(
|
||||
`v-once can only be used inside v-for that is keyed. `,
|
||||
el.rawAttrsMap['v-once']
|
||||
)
|
||||
return genElement(el, state)
|
||||
}
|
||||
return `_o(${genElement(el, state)},${state.onceId++},${key})`
|
||||
} else {
|
||||
return genStatic(el, state)
|
||||
}
|
||||
}
|
||||
|
||||
export function genIf (
|
||||
el: any,
|
||||
state: CodegenState,
|
||||
altGen?: Function,
|
||||
altEmpty?: string
|
||||
): string {
|
||||
el.ifProcessed = true // avoid recursion
|
||||
return genIfConditions(el.ifConditions.slice(), state, altGen, altEmpty)
|
||||
}
|
||||
|
||||
function genIfConditions (
|
||||
conditions: ASTIfConditions,
|
||||
state: CodegenState,
|
||||
altGen?: Function,
|
||||
altEmpty?: string
|
||||
): string {
|
||||
if (!conditions.length) {
|
||||
return altEmpty || '_e()'
|
||||
}
|
||||
|
||||
const condition = conditions.shift()
|
||||
if (condition.exp) {
|
||||
return `(${condition.exp})?${
|
||||
genTernaryExp(condition.block)
|
||||
}:${
|
||||
genIfConditions(conditions, state, altGen, altEmpty)
|
||||
}`
|
||||
} else {
|
||||
return `${genTernaryExp(condition.block)}`
|
||||
}
|
||||
|
||||
// v-if with v-once should generate code like (a)?_m(0):_m(1)
|
||||
function genTernaryExp (el) {
|
||||
return altGen
|
||||
? altGen(el, state)
|
||||
: el.once
|
||||
? genOnce(el, state)
|
||||
: genElement(el, state)
|
||||
}
|
||||
}
|
||||
|
||||
export function genFor (
|
||||
el: any,
|
||||
state: CodegenState,
|
||||
altGen?: Function,
|
||||
altHelper?: string
|
||||
): string {
|
||||
const exp = el.for
|
||||
const alias = el.alias
|
||||
const iterator1 = el.iterator1 ? `,${el.iterator1}` : ''
|
||||
const iterator2 = el.iterator2 ? `,${el.iterator2}` : ''
|
||||
|
||||
if (process.env.NODE_ENV !== 'production' &&
|
||||
state.maybeComponent(el) &&
|
||||
el.tag !== 'slot' &&
|
||||
el.tag !== 'template' &&
|
||||
!el.key
|
||||
) {
|
||||
state.warn(
|
||||
`<${el.tag} v-for="${alias} in ${exp}">: component lists rendered with ` +
|
||||
`v-for should have explicit keys. ` +
|
||||
`See https://vuejs.org/guide/list.html#key for more info.`,
|
||||
el.rawAttrsMap['v-for'],
|
||||
true /* tip */
|
||||
)
|
||||
}
|
||||
|
||||
el.forProcessed = true // avoid recursion
|
||||
return `${altHelper || '_l'}((${exp}),` +
|
||||
`function(${alias}${iterator1}${iterator2}){` +
|
||||
`return ${(altGen || genElement)(el, state)}` +
|
||||
'})'
|
||||
}
|
||||
|
||||
export function genData (el: ASTElement, state: CodegenState): string {
|
||||
let data = '{'
|
||||
|
||||
// directives first.
|
||||
// directives may mutate the el's other properties before they are generated.
|
||||
const dirs = genDirectives(el, state)
|
||||
if (dirs) data += dirs + ','
|
||||
|
||||
// key
|
||||
if (el.key) {
|
||||
data += `key:${el.key},`
|
||||
}
|
||||
// ref
|
||||
if (el.ref) {
|
||||
data += `ref:${el.ref},`
|
||||
}
|
||||
if (el.refInFor) {
|
||||
data += `refInFor:true,`
|
||||
}
|
||||
// pre
|
||||
if (el.pre) {
|
||||
data += `pre:true,`
|
||||
}
|
||||
// record original tag name for components using "is" attribute
|
||||
if (el.component) {
|
||||
data += `tag:"${el.tag}",`
|
||||
}
|
||||
// module data generation functions
|
||||
for (let i = 0; i < state.dataGenFns.length; i++) {
|
||||
data += state.dataGenFns[i](el)
|
||||
}
|
||||
// attributes
|
||||
if (el.attrs) {
|
||||
data += `attrs:${genProps(el.attrs)},`
|
||||
}
|
||||
// DOM props
|
||||
if (el.props) {
|
||||
data += `domProps:${genProps(el.props)},`
|
||||
}
|
||||
// event handlers
|
||||
if (el.events) {
|
||||
data += `${genHandlers(el.events, false)},`
|
||||
}
|
||||
if (el.nativeEvents) {
|
||||
data += `${genHandlers(el.nativeEvents, true)},`
|
||||
}
|
||||
// slot target
|
||||
// only for non-scoped slots
|
||||
if (el.slotTarget && !el.slotScope) {
|
||||
data += `slot:${el.slotTarget},`
|
||||
}
|
||||
// scoped slots
|
||||
if (el.scopedSlots) {
|
||||
data += `${genScopedSlots(el, el.scopedSlots, state)},`
|
||||
}
|
||||
// component v-model
|
||||
if (el.model) {
|
||||
data += `model:{value:${
|
||||
el.model.value
|
||||
},callback:${
|
||||
el.model.callback
|
||||
},expression:${
|
||||
el.model.expression
|
||||
}},`
|
||||
}
|
||||
// inline-template
|
||||
if (el.inlineTemplate) {
|
||||
const inlineTemplate = genInlineTemplate(el, state)
|
||||
if (inlineTemplate) {
|
||||
data += `${inlineTemplate},`
|
||||
}
|
||||
}
|
||||
data = data.replace(/,$/, '') + '}'
|
||||
// v-bind dynamic argument wrap
|
||||
// v-bind with dynamic arguments must be applied using the same v-bind object
|
||||
// merge helper so that class/style/mustUseProp attrs are handled correctly.
|
||||
if (el.dynamicAttrs) {
|
||||
data = `_b(${data},"${el.tag}",${genProps(el.dynamicAttrs)})`
|
||||
}
|
||||
// v-bind data wrap
|
||||
if (el.wrapData) {
|
||||
data = el.wrapData(data)
|
||||
}
|
||||
// v-on data wrap
|
||||
if (el.wrapListeners) {
|
||||
data = el.wrapListeners(data)
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
function genDirectives (el: ASTElement, state: CodegenState): string | void {
|
||||
const dirs = el.directives
|
||||
if (!dirs) return
|
||||
let res = 'directives:['
|
||||
let hasRuntime = false
|
||||
let i, l, dir, needRuntime
|
||||
for (i = 0, l = dirs.length; i < l; i++) {
|
||||
dir = dirs[i]
|
||||
needRuntime = true
|
||||
const gen: DirectiveFunction = state.directives[dir.name]
|
||||
if (gen) {
|
||||
// compile-time directive that manipulates AST.
|
||||
// returns true if it also needs a runtime counterpart.
|
||||
needRuntime = !!gen(el, dir, state.warn)
|
||||
}
|
||||
if (needRuntime) {
|
||||
hasRuntime = true
|
||||
res += `{name:"${dir.name}",rawName:"${dir.rawName}"${
|
||||
dir.value ? `,value:(${dir.value}),expression:${JSON.stringify(dir.value)}` : ''
|
||||
}${
|
||||
dir.arg ? `,arg:${dir.isDynamicArg ? dir.arg : `"${dir.arg}"`}` : ''
|
||||
}${
|
||||
dir.modifiers ? `,modifiers:${JSON.stringify(dir.modifiers)}` : ''
|
||||
}},`
|
||||
}
|
||||
}
|
||||
if (hasRuntime) {
|
||||
return res.slice(0, -1) + ']'
|
||||
}
|
||||
}
|
||||
|
||||
function genInlineTemplate (el: ASTElement, state: CodegenState): ?string {
|
||||
const ast = el.children[0]
|
||||
if (process.env.NODE_ENV !== 'production' && (
|
||||
el.children.length !== 1 || ast.type !== 1
|
||||
)) {
|
||||
state.warn(
|
||||
'Inline-template components must have exactly one child element.',
|
||||
{ start: el.start }
|
||||
)
|
||||
}
|
||||
if (ast && ast.type === 1) {
|
||||
const inlineRenderFns = generate(ast, state.options)
|
||||
return `inlineTemplate:{render:function(){${
|
||||
inlineRenderFns.render
|
||||
}},staticRenderFns:[${
|
||||
inlineRenderFns.staticRenderFns.map(code => `function(){${code}}`).join(',')
|
||||
}]}`
|
||||
}
|
||||
}
|
||||
|
||||
function genScopedSlots (
|
||||
el: ASTElement,
|
||||
slots: { [key: string]: ASTElement },
|
||||
state: CodegenState
|
||||
): string {
|
||||
// by default scoped slots are considered "stable", this allows child
|
||||
// components with only scoped slots to skip forced updates from parent.
|
||||
// but in some cases we have to bail-out of this optimization
|
||||
// for example if the slot contains dynamic names, has v-if or v-for on them...
|
||||
let needsForceUpdate = el.for || Object.keys(slots).some(key => {
|
||||
const slot = slots[key]
|
||||
return (
|
||||
slot.slotTargetDynamic ||
|
||||
slot.if ||
|
||||
slot.for ||
|
||||
containsSlotChild(slot) // is passing down slot from parent which may be dynamic
|
||||
)
|
||||
})
|
||||
|
||||
// #9534: if a component with scoped slots is inside a conditional branch,
|
||||
// it's possible for the same component to be reused but with different
|
||||
// compiled slot content. To avoid that, we generate a unique key based on
|
||||
// the generated code of all the slot contents.
|
||||
let needsKey = !!el.if
|
||||
|
||||
// OR when it is inside another scoped slot or v-for (the reactivity may be
|
||||
// disconnected due to the intermediate scope variable)
|
||||
// #9438, #9506
|
||||
// TODO: this can be further optimized by properly analyzing in-scope bindings
|
||||
// and skip force updating ones that do not actually use scope variables.
|
||||
if (!needsForceUpdate) {
|
||||
let parent = el.parent
|
||||
while (parent) {
|
||||
if (
|
||||
(parent.slotScope && parent.slotScope !== emptySlotScopeToken) ||
|
||||
parent.for
|
||||
) {
|
||||
needsForceUpdate = true
|
||||
break
|
||||
}
|
||||
if (parent.if) {
|
||||
needsKey = true
|
||||
}
|
||||
parent = parent.parent
|
||||
}
|
||||
}
|
||||
|
||||
const generatedSlots = Object.keys(slots)
|
||||
.map(key => genScopedSlot(slots[key], state))
|
||||
.join(',')
|
||||
|
||||
return `scopedSlots:_u([${generatedSlots}]${
|
||||
needsForceUpdate ? `,null,true` : ``
|
||||
}${
|
||||
!needsForceUpdate && needsKey ? `,null,false,${hash(generatedSlots)}` : ``
|
||||
})`
|
||||
}
|
||||
|
||||
function hash(str) {
|
||||
let hash = 5381
|
||||
let i = str.length
|
||||
while(i) {
|
||||
hash = (hash * 33) ^ str.charCodeAt(--i)
|
||||
}
|
||||
return hash >>> 0
|
||||
}
|
||||
|
||||
function containsSlotChild (el: ASTNode): boolean {
|
||||
if (el.type === 1) {
|
||||
if (el.tag === 'slot') {
|
||||
return true
|
||||
}
|
||||
return el.children.some(containsSlotChild)
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
function genScopedSlot (
|
||||
el: ASTElement,
|
||||
state: CodegenState
|
||||
): string {
|
||||
const isLegacySyntax = el.attrsMap['slot-scope']
|
||||
if (el.if && !el.ifProcessed && !isLegacySyntax) {
|
||||
return genIf(el, state, genScopedSlot, `null`)
|
||||
}
|
||||
if (el.for && !el.forProcessed) {
|
||||
return genFor(el, state, genScopedSlot)
|
||||
}
|
||||
const slotScope = el.slotScope === emptySlotScopeToken
|
||||
? ``
|
||||
: String(el.slotScope)
|
||||
const fn = `function(${slotScope}){` +
|
||||
`return ${el.tag === 'template'
|
||||
? el.if && isLegacySyntax
|
||||
? `(${el.if})?${genChildren(el, state) || 'undefined'}:undefined`
|
||||
: genChildren(el, state) || 'undefined'
|
||||
: genElement(el, state)
|
||||
}}`
|
||||
// reverse proxy v-slot without scope on this.$slots
|
||||
const reverseProxy = slotScope ? `` : `,proxy:true`
|
||||
return `{key:${el.slotTarget || `"default"`},fn:${fn}${reverseProxy}}`
|
||||
}
|
||||
|
||||
export function genChildren (
|
||||
el: ASTElement,
|
||||
state: CodegenState,
|
||||
checkSkip?: boolean,
|
||||
altGenElement?: Function,
|
||||
altGenNode?: Function
|
||||
): string | void {
|
||||
const children = el.children
|
||||
if (children.length) {
|
||||
const el: any = children[0]
|
||||
// optimize single v-for
|
||||
if (children.length === 1 &&
|
||||
el.for &&
|
||||
el.tag !== 'template' &&
|
||||
el.tag !== 'slot'
|
||||
) {
|
||||
const normalizationType = checkSkip
|
||||
? state.maybeComponent(el) ? `,1` : `,0`
|
||||
: ``
|
||||
return `${(altGenElement || genElement)(el, state)}${normalizationType}`
|
||||
}
|
||||
const normalizationType = checkSkip
|
||||
? getNormalizationType(children, state.maybeComponent)
|
||||
: 0
|
||||
const gen = altGenNode || genNode
|
||||
return `[${children.map(c => gen(c, state)).join(',')}]${
|
||||
normalizationType ? `,${normalizationType}` : ''
|
||||
}`
|
||||
}
|
||||
}
|
||||
|
||||
// determine the normalization needed for the children array.
|
||||
// 0: no normalization needed
|
||||
// 1: simple normalization needed (possible 1-level deep nested array)
|
||||
// 2: full normalization needed
|
||||
function getNormalizationType (
|
||||
children: Array<ASTNode>,
|
||||
maybeComponent: (el: ASTElement) => boolean
|
||||
): number {
|
||||
let res = 0
|
||||
for (let i = 0; i < children.length; i++) {
|
||||
const el: ASTNode = children[i]
|
||||
if (el.type !== 1) {
|
||||
continue
|
||||
}
|
||||
if (needsNormalization(el) ||
|
||||
(el.ifConditions && el.ifConditions.some(c => needsNormalization(c.block)))) {
|
||||
res = 2
|
||||
break
|
||||
}
|
||||
if (maybeComponent(el) ||
|
||||
(el.ifConditions && el.ifConditions.some(c => maybeComponent(c.block)))) {
|
||||
res = 1
|
||||
}
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
function needsNormalization (el: ASTElement): boolean {
|
||||
return el.for !== undefined || el.tag === 'template' || el.tag === 'slot'
|
||||
}
|
||||
|
||||
function genNode (node: ASTNode, state: CodegenState): string {
|
||||
if (node.type === 1) {
|
||||
return genElement(node, state)
|
||||
} else if (node.type === 3 && node.isComment) {
|
||||
return genComment(node)
|
||||
} else {
|
||||
return genText(node)
|
||||
}
|
||||
}
|
||||
|
||||
export function genText (text: ASTText | ASTExpression): string {
|
||||
return `_v(${text.type === 2
|
||||
? text.expression // no need for () because already wrapped in _s()
|
||||
: transformSpecialNewlines(JSON.stringify(text.text))
|
||||
})`
|
||||
}
|
||||
|
||||
export function genComment (comment: ASTText): string {
|
||||
return `_e(${JSON.stringify(comment.text)})`
|
||||
}
|
||||
|
||||
function genSlot (el: ASTElement, state: CodegenState): string {
|
||||
const slotName = el.slotName || '"default"'
|
||||
const children = genChildren(el, state)
|
||||
let res = `_t(${slotName}${children ? `,${children}` : ''}`
|
||||
const attrs = el.attrs || el.dynamicAttrs
|
||||
? genProps((el.attrs || []).concat(el.dynamicAttrs || []).map(attr => ({
|
||||
// slot props are camelized
|
||||
name: camelize(attr.name),
|
||||
value: attr.value,
|
||||
dynamic: attr.dynamic
|
||||
})))
|
||||
: null
|
||||
const bind = el.attrsMap['v-bind']
|
||||
if ((attrs || bind) && !children) {
|
||||
res += `,null`
|
||||
}
|
||||
if (attrs) {
|
||||
res += `,${attrs}`
|
||||
}
|
||||
if (bind) {
|
||||
res += `${attrs ? '' : ',null'},${bind}`
|
||||
}
|
||||
return res + ')'
|
||||
}
|
||||
|
||||
// componentName is el.component, take it as argument to shun flow's pessimistic refinement
|
||||
function genComponent (
|
||||
componentName: string,
|
||||
el: ASTElement,
|
||||
state: CodegenState
|
||||
): string {
|
||||
const children = el.inlineTemplate ? null : genChildren(el, state, true)
|
||||
return `_c(${componentName},${genData(el, state)}${
|
||||
children ? `,${children}` : ''
|
||||
})`
|
||||
}
|
||||
|
||||
function genProps (props: Array<ASTAttr>): string {
|
||||
let staticProps = ``
|
||||
let dynamicProps = ``
|
||||
for (let i = 0; i < props.length; i++) {
|
||||
const prop = props[i]
|
||||
const value = __WEEX__
|
||||
? generateValue(prop.value)
|
||||
: transformSpecialNewlines(prop.value)
|
||||
if (prop.dynamic) {
|
||||
dynamicProps += `${prop.name},${value},`
|
||||
} else {
|
||||
staticProps += `"${prop.name}":${value},`
|
||||
}
|
||||
}
|
||||
staticProps = `{${staticProps.slice(0, -1)}}`
|
||||
if (dynamicProps) {
|
||||
return `_d(${staticProps},[${dynamicProps.slice(0, -1)}])`
|
||||
} else {
|
||||
return staticProps
|
||||
}
|
||||
}
|
||||
|
||||
/* istanbul ignore next */
|
||||
function generateValue (value) {
|
||||
if (typeof value === 'string') {
|
||||
return transformSpecialNewlines(value)
|
||||
}
|
||||
return JSON.stringify(value)
|
||||
}
|
||||
|
||||
// #3895, #4268
|
||||
function transformSpecialNewlines (text: string): string {
|
||||
return text
|
||||
.replace(/\u2028/g, '\\u2028')
|
||||
.replace(/\u2029/g, '\\u2029')
|
||||
}
|
75
express-server/node_modules/vue/src/compiler/create-compiler.js
generated
vendored
Normal file
75
express-server/node_modules/vue/src/compiler/create-compiler.js
generated
vendored
Normal file
@ -0,0 +1,75 @@
|
||||
/* @flow */
|
||||
|
||||
import { extend } from 'shared/util'
|
||||
import { detectErrors } from './error-detector'
|
||||
import { createCompileToFunctionFn } from './to-function'
|
||||
|
||||
export function createCompilerCreator (baseCompile: Function): Function {
|
||||
return function createCompiler (baseOptions: CompilerOptions) {
|
||||
function compile (
|
||||
template: string,
|
||||
options?: CompilerOptions
|
||||
): CompiledResult {
|
||||
const finalOptions = Object.create(baseOptions)
|
||||
const errors = []
|
||||
const tips = []
|
||||
|
||||
let warn = (msg, range, tip) => {
|
||||
(tip ? tips : errors).push(msg)
|
||||
}
|
||||
|
||||
if (options) {
|
||||
if (process.env.NODE_ENV !== 'production' && options.outputSourceRange) {
|
||||
// $flow-disable-line
|
||||
const leadingSpaceLength = template.match(/^\s*/)[0].length
|
||||
|
||||
warn = (msg, range, tip) => {
|
||||
const data: WarningMessage = { msg }
|
||||
if (range) {
|
||||
if (range.start != null) {
|
||||
data.start = range.start + leadingSpaceLength
|
||||
}
|
||||
if (range.end != null) {
|
||||
data.end = range.end + leadingSpaceLength
|
||||
}
|
||||
}
|
||||
(tip ? tips : errors).push(data)
|
||||
}
|
||||
}
|
||||
// merge custom modules
|
||||
if (options.modules) {
|
||||
finalOptions.modules =
|
||||
(baseOptions.modules || []).concat(options.modules)
|
||||
}
|
||||
// merge custom directives
|
||||
if (options.directives) {
|
||||
finalOptions.directives = extend(
|
||||
Object.create(baseOptions.directives || null),
|
||||
options.directives
|
||||
)
|
||||
}
|
||||
// copy other options
|
||||
for (const key in options) {
|
||||
if (key !== 'modules' && key !== 'directives') {
|
||||
finalOptions[key] = options[key]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
finalOptions.warn = warn
|
||||
|
||||
const compiled = baseCompile(template.trim(), finalOptions)
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
detectErrors(compiled.ast, warn)
|
||||
}
|
||||
compiled.errors = errors
|
||||
compiled.tips = tips
|
||||
return compiled
|
||||
}
|
||||
|
||||
return {
|
||||
compile,
|
||||
compileToFunctions: createCompileToFunctionFn(compile)
|
||||
}
|
||||
}
|
||||
}
|
11
express-server/node_modules/vue/src/compiler/directives/bind.js
generated
vendored
Normal file
11
express-server/node_modules/vue/src/compiler/directives/bind.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
/* @flow */
|
||||
|
||||
export default function bind (el: ASTElement, dir: ASTDirective) {
|
||||
el.wrapData = (code: string) => {
|
||||
return `_b(${code},'${el.tag}',${dir.value},${
|
||||
dir.modifiers && dir.modifiers.prop ? 'true' : 'false'
|
||||
}${
|
||||
dir.modifiers && dir.modifiers.sync ? ',true' : ''
|
||||
})`
|
||||
}
|
||||
}
|
11
express-server/node_modules/vue/src/compiler/directives/index.js
generated
vendored
Normal file
11
express-server/node_modules/vue/src/compiler/directives/index.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
/* @flow */
|
||||
|
||||
import on from './on'
|
||||
import bind from './bind'
|
||||
import { noop } from 'shared/util'
|
||||
|
||||
export default {
|
||||
on,
|
||||
bind,
|
||||
cloak: noop
|
||||
}
|
148
express-server/node_modules/vue/src/compiler/directives/model.js
generated
vendored
Normal file
148
express-server/node_modules/vue/src/compiler/directives/model.js
generated
vendored
Normal file
@ -0,0 +1,148 @@
|
||||
/* @flow */
|
||||
|
||||
/**
|
||||
* Cross-platform code generation for component v-model
|
||||
*/
|
||||
export function genComponentModel (
|
||||
el: ASTElement,
|
||||
value: string,
|
||||
modifiers: ?ASTModifiers
|
||||
): ?boolean {
|
||||
const { number, trim } = modifiers || {}
|
||||
|
||||
const baseValueExpression = '$$v'
|
||||
let valueExpression = baseValueExpression
|
||||
if (trim) {
|
||||
valueExpression =
|
||||
`(typeof ${baseValueExpression} === 'string'` +
|
||||
`? ${baseValueExpression}.trim()` +
|
||||
`: ${baseValueExpression})`
|
||||
}
|
||||
if (number) {
|
||||
valueExpression = `_n(${valueExpression})`
|
||||
}
|
||||
const assignment = genAssignmentCode(value, valueExpression)
|
||||
|
||||
el.model = {
|
||||
value: `(${value})`,
|
||||
expression: JSON.stringify(value),
|
||||
callback: `function (${baseValueExpression}) {${assignment}}`
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Cross-platform codegen helper for generating v-model value assignment code.
|
||||
*/
|
||||
export function genAssignmentCode (
|
||||
value: string,
|
||||
assignment: string
|
||||
): string {
|
||||
const res = parseModel(value)
|
||||
if (res.key === null) {
|
||||
return `${value}=${assignment}`
|
||||
} else {
|
||||
return `$set(${res.exp}, ${res.key}, ${assignment})`
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse a v-model expression into a base path and a final key segment.
|
||||
* Handles both dot-path and possible square brackets.
|
||||
*
|
||||
* Possible cases:
|
||||
*
|
||||
* - test
|
||||
* - test[key]
|
||||
* - test[test1[key]]
|
||||
* - test["a"][key]
|
||||
* - xxx.test[a[a].test1[key]]
|
||||
* - test.xxx.a["asa"][test1[key]]
|
||||
*
|
||||
*/
|
||||
|
||||
let len, str, chr, index, expressionPos, expressionEndPos
|
||||
|
||||
type ModelParseResult = {
|
||||
exp: string,
|
||||
key: string | null
|
||||
}
|
||||
|
||||
export function parseModel (val: string): ModelParseResult {
|
||||
// Fix https://github.com/vuejs/vue/pull/7730
|
||||
// allow v-model="obj.val " (trailing whitespace)
|
||||
val = val.trim()
|
||||
len = val.length
|
||||
|
||||
if (val.indexOf('[') < 0 || val.lastIndexOf(']') < len - 1) {
|
||||
index = val.lastIndexOf('.')
|
||||
if (index > -1) {
|
||||
return {
|
||||
exp: val.slice(0, index),
|
||||
key: '"' + val.slice(index + 1) + '"'
|
||||
}
|
||||
} else {
|
||||
return {
|
||||
exp: val,
|
||||
key: null
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
str = val
|
||||
index = expressionPos = expressionEndPos = 0
|
||||
|
||||
while (!eof()) {
|
||||
chr = next()
|
||||
/* istanbul ignore if */
|
||||
if (isStringStart(chr)) {
|
||||
parseString(chr)
|
||||
} else if (chr === 0x5B) {
|
||||
parseBracket(chr)
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exp: val.slice(0, expressionPos),
|
||||
key: val.slice(expressionPos + 1, expressionEndPos)
|
||||
}
|
||||
}
|
||||
|
||||
function next (): number {
|
||||
return str.charCodeAt(++index)
|
||||
}
|
||||
|
||||
function eof (): boolean {
|
||||
return index >= len
|
||||
}
|
||||
|
||||
function isStringStart (chr: number): boolean {
|
||||
return chr === 0x22 || chr === 0x27
|
||||
}
|
||||
|
||||
function parseBracket (chr: number): void {
|
||||
let inBracket = 1
|
||||
expressionPos = index
|
||||
while (!eof()) {
|
||||
chr = next()
|
||||
if (isStringStart(chr)) {
|
||||
parseString(chr)
|
||||
continue
|
||||
}
|
||||
if (chr === 0x5B) inBracket++
|
||||
if (chr === 0x5D) inBracket--
|
||||
if (inBracket === 0) {
|
||||
expressionEndPos = index
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function parseString (chr: number): void {
|
||||
const stringQuote = chr
|
||||
while (!eof()) {
|
||||
chr = next()
|
||||
if (chr === stringQuote) {
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
10
express-server/node_modules/vue/src/compiler/directives/on.js
generated
vendored
Normal file
10
express-server/node_modules/vue/src/compiler/directives/on.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
/* @flow */
|
||||
|
||||
import { warn } from 'core/util/index'
|
||||
|
||||
export default function on (el: ASTElement, dir: ASTDirective) {
|
||||
if (process.env.NODE_ENV !== 'production' && dir.modifiers) {
|
||||
warn(`v-on without argument does not support modifiers.`)
|
||||
}
|
||||
el.wrapListeners = (code: string) => `_g(${code},${dir.value})`
|
||||
}
|
113
express-server/node_modules/vue/src/compiler/error-detector.js
generated
vendored
Normal file
113
express-server/node_modules/vue/src/compiler/error-detector.js
generated
vendored
Normal file
@ -0,0 +1,113 @@
|
||||
/* @flow */
|
||||
|
||||
import { dirRE, onRE } from './parser/index'
|
||||
|
||||
type Range = { start?: number, end?: number };
|
||||
|
||||
// these keywords should not appear inside expressions, but operators like
|
||||
// typeof, instanceof and in are allowed
|
||||
const prohibitedKeywordRE = new RegExp('\\b' + (
|
||||
'do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' +
|
||||
'super,throw,while,yield,delete,export,import,return,switch,default,' +
|
||||
'extends,finally,continue,debugger,function,arguments'
|
||||
).split(',').join('\\b|\\b') + '\\b')
|
||||
|
||||
// these unary operators should not be used as property/method names
|
||||
const unaryOperatorsRE = new RegExp('\\b' + (
|
||||
'delete,typeof,void'
|
||||
).split(',').join('\\s*\\([^\\)]*\\)|\\b') + '\\s*\\([^\\)]*\\)')
|
||||
|
||||
// strip strings in expressions
|
||||
const stripStringRE = /'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`/g
|
||||
|
||||
// detect problematic expressions in a template
|
||||
export function detectErrors (ast: ?ASTNode, warn: Function) {
|
||||
if (ast) {
|
||||
checkNode(ast, warn)
|
||||
}
|
||||
}
|
||||
|
||||
function checkNode (node: ASTNode, warn: Function) {
|
||||
if (node.type === 1) {
|
||||
for (const name in node.attrsMap) {
|
||||
if (dirRE.test(name)) {
|
||||
const value = node.attrsMap[name]
|
||||
if (value) {
|
||||
const range = node.rawAttrsMap[name]
|
||||
if (name === 'v-for') {
|
||||
checkFor(node, `v-for="${value}"`, warn, range)
|
||||
} else if (onRE.test(name)) {
|
||||
checkEvent(value, `${name}="${value}"`, warn, range)
|
||||
} else {
|
||||
checkExpression(value, `${name}="${value}"`, warn, range)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (node.children) {
|
||||
for (let i = 0; i < node.children.length; i++) {
|
||||
checkNode(node.children[i], warn)
|
||||
}
|
||||
}
|
||||
} else if (node.type === 2) {
|
||||
checkExpression(node.expression, node.text, warn, node)
|
||||
}
|
||||
}
|
||||
|
||||
function checkEvent (exp: string, text: string, warn: Function, range?: Range) {
|
||||
const stipped = exp.replace(stripStringRE, '')
|
||||
const keywordMatch: any = stipped.match(unaryOperatorsRE)
|
||||
if (keywordMatch && stipped.charAt(keywordMatch.index - 1) !== '$') {
|
||||
warn(
|
||||
`avoid using JavaScript unary operator as property name: ` +
|
||||
`"${keywordMatch[0]}" in expression ${text.trim()}`,
|
||||
range
|
||||
)
|
||||
}
|
||||
checkExpression(exp, text, warn, range)
|
||||
}
|
||||
|
||||
function checkFor (node: ASTElement, text: string, warn: Function, range?: Range) {
|
||||
checkExpression(node.for || '', text, warn, range)
|
||||
checkIdentifier(node.alias, 'v-for alias', text, warn, range)
|
||||
checkIdentifier(node.iterator1, 'v-for iterator', text, warn, range)
|
||||
checkIdentifier(node.iterator2, 'v-for iterator', text, warn, range)
|
||||
}
|
||||
|
||||
function checkIdentifier (
|
||||
ident: ?string,
|
||||
type: string,
|
||||
text: string,
|
||||
warn: Function,
|
||||
range?: Range
|
||||
) {
|
||||
if (typeof ident === 'string') {
|
||||
try {
|
||||
new Function(`var ${ident}=_`)
|
||||
} catch (e) {
|
||||
warn(`invalid ${type} "${ident}" in expression: ${text.trim()}`, range)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function checkExpression (exp: string, text: string, warn: Function, range?: Range) {
|
||||
try {
|
||||
new Function(`return ${exp}`)
|
||||
} catch (e) {
|
||||
const keywordMatch = exp.replace(stripStringRE, '').match(prohibitedKeywordRE)
|
||||
if (keywordMatch) {
|
||||
warn(
|
||||
`avoid using JavaScript keyword as property name: ` +
|
||||
`"${keywordMatch[0]}"\n Raw expression: ${text.trim()}`,
|
||||
range
|
||||
)
|
||||
} else {
|
||||
warn(
|
||||
`invalid expression: ${e.message} in\n\n` +
|
||||
` ${exp}\n\n` +
|
||||
` Raw expression: ${text.trim()}\n`,
|
||||
range
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
231
express-server/node_modules/vue/src/compiler/helpers.js
generated
vendored
Normal file
231
express-server/node_modules/vue/src/compiler/helpers.js
generated
vendored
Normal file
@ -0,0 +1,231 @@
|
||||
/* @flow */
|
||||
|
||||
import { emptyObject } from 'shared/util'
|
||||
import { parseFilters } from './parser/filter-parser'
|
||||
|
||||
type Range = { start?: number, end?: number };
|
||||
|
||||
/* eslint-disable no-unused-vars */
|
||||
export function baseWarn (msg: string, range?: Range) {
|
||||
console.error(`[Vue compiler]: ${msg}`)
|
||||
}
|
||||
/* eslint-enable no-unused-vars */
|
||||
|
||||
export function pluckModuleFunction<F: Function> (
|
||||
modules: ?Array<Object>,
|
||||
key: string
|
||||
): Array<F> {
|
||||
return modules
|
||||
? modules.map(m => m[key]).filter(_ => _)
|
||||
: []
|
||||
}
|
||||
|
||||
export function addProp (el: ASTElement, name: string, value: string, range?: Range, dynamic?: boolean) {
|
||||
(el.props || (el.props = [])).push(rangeSetItem({ name, value, dynamic }, range))
|
||||
el.plain = false
|
||||
}
|
||||
|
||||
export function addAttr (el: ASTElement, name: string, value: any, range?: Range, dynamic?: boolean) {
|
||||
const attrs = dynamic
|
||||
? (el.dynamicAttrs || (el.dynamicAttrs = []))
|
||||
: (el.attrs || (el.attrs = []))
|
||||
attrs.push(rangeSetItem({ name, value, dynamic }, range))
|
||||
el.plain = false
|
||||
}
|
||||
|
||||
// add a raw attr (use this in preTransforms)
|
||||
export function addRawAttr (el: ASTElement, name: string, value: any, range?: Range) {
|
||||
el.attrsMap[name] = value
|
||||
el.attrsList.push(rangeSetItem({ name, value }, range))
|
||||
}
|
||||
|
||||
export function addDirective (
|
||||
el: ASTElement,
|
||||
name: string,
|
||||
rawName: string,
|
||||
value: string,
|
||||
arg: ?string,
|
||||
isDynamicArg: boolean,
|
||||
modifiers: ?ASTModifiers,
|
||||
range?: Range
|
||||
) {
|
||||
(el.directives || (el.directives = [])).push(rangeSetItem({
|
||||
name,
|
||||
rawName,
|
||||
value,
|
||||
arg,
|
||||
isDynamicArg,
|
||||
modifiers
|
||||
}, range))
|
||||
el.plain = false
|
||||
}
|
||||
|
||||
function prependModifierMarker (symbol: string, name: string, dynamic?: boolean): string {
|
||||
return dynamic
|
||||
? `_p(${name},"${symbol}")`
|
||||
: symbol + name // mark the event as captured
|
||||
}
|
||||
|
||||
export function addHandler (
|
||||
el: ASTElement,
|
||||
name: string,
|
||||
value: string,
|
||||
modifiers: ?ASTModifiers,
|
||||
important?: boolean,
|
||||
warn?: ?Function,
|
||||
range?: Range,
|
||||
dynamic?: boolean
|
||||
) {
|
||||
modifiers = modifiers || emptyObject
|
||||
// warn prevent and passive modifier
|
||||
/* istanbul ignore if */
|
||||
if (
|
||||
process.env.NODE_ENV !== 'production' && warn &&
|
||||
modifiers.prevent && modifiers.passive
|
||||
) {
|
||||
warn(
|
||||
'passive and prevent can\'t be used together. ' +
|
||||
'Passive handler can\'t prevent default event.',
|
||||
range
|
||||
)
|
||||
}
|
||||
|
||||
// normalize click.right and click.middle since they don't actually fire
|
||||
// this is technically browser-specific, but at least for now browsers are
|
||||
// the only target envs that have right/middle clicks.
|
||||
if (modifiers.right) {
|
||||
if (dynamic) {
|
||||
name = `(${name})==='click'?'contextmenu':(${name})`
|
||||
} else if (name === 'click') {
|
||||
name = 'contextmenu'
|
||||
delete modifiers.right
|
||||
}
|
||||
} else if (modifiers.middle) {
|
||||
if (dynamic) {
|
||||
name = `(${name})==='click'?'mouseup':(${name})`
|
||||
} else if (name === 'click') {
|
||||
name = 'mouseup'
|
||||
}
|
||||
}
|
||||
|
||||
// check capture modifier
|
||||
if (modifiers.capture) {
|
||||
delete modifiers.capture
|
||||
name = prependModifierMarker('!', name, dynamic)
|
||||
}
|
||||
if (modifiers.once) {
|
||||
delete modifiers.once
|
||||
name = prependModifierMarker('~', name, dynamic)
|
||||
}
|
||||
/* istanbul ignore if */
|
||||
if (modifiers.passive) {
|
||||
delete modifiers.passive
|
||||
name = prependModifierMarker('&', name, dynamic)
|
||||
}
|
||||
|
||||
let events
|
||||
if (modifiers.native) {
|
||||
delete modifiers.native
|
||||
events = el.nativeEvents || (el.nativeEvents = {})
|
||||
} else {
|
||||
events = el.events || (el.events = {})
|
||||
}
|
||||
|
||||
const newHandler: any = rangeSetItem({ value: value.trim(), dynamic }, range)
|
||||
if (modifiers !== emptyObject) {
|
||||
newHandler.modifiers = modifiers
|
||||
}
|
||||
|
||||
const handlers = events[name]
|
||||
/* istanbul ignore if */
|
||||
if (Array.isArray(handlers)) {
|
||||
important ? handlers.unshift(newHandler) : handlers.push(newHandler)
|
||||
} else if (handlers) {
|
||||
events[name] = important ? [newHandler, handlers] : [handlers, newHandler]
|
||||
} else {
|
||||
events[name] = newHandler
|
||||
}
|
||||
|
||||
el.plain = false
|
||||
}
|
||||
|
||||
export function getRawBindingAttr (
|
||||
el: ASTElement,
|
||||
name: string
|
||||
) {
|
||||
return el.rawAttrsMap[':' + name] ||
|
||||
el.rawAttrsMap['v-bind:' + name] ||
|
||||
el.rawAttrsMap[name]
|
||||
}
|
||||
|
||||
export function getBindingAttr (
|
||||
el: ASTElement,
|
||||
name: string,
|
||||
getStatic?: boolean
|
||||
): ?string {
|
||||
const dynamicValue =
|
||||
getAndRemoveAttr(el, ':' + name) ||
|
||||
getAndRemoveAttr(el, 'v-bind:' + name)
|
||||
if (dynamicValue != null) {
|
||||
return parseFilters(dynamicValue)
|
||||
} else if (getStatic !== false) {
|
||||
const staticValue = getAndRemoveAttr(el, name)
|
||||
if (staticValue != null) {
|
||||
return JSON.stringify(staticValue)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// note: this only removes the attr from the Array (attrsList) so that it
|
||||
// doesn't get processed by processAttrs.
|
||||
// By default it does NOT remove it from the map (attrsMap) because the map is
|
||||
// needed during codegen.
|
||||
export function getAndRemoveAttr (
|
||||
el: ASTElement,
|
||||
name: string,
|
||||
removeFromMap?: boolean
|
||||
): ?string {
|
||||
let val
|
||||
if ((val = el.attrsMap[name]) != null) {
|
||||
const list = el.attrsList
|
||||
for (let i = 0, l = list.length; i < l; i++) {
|
||||
if (list[i].name === name) {
|
||||
list.splice(i, 1)
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
if (removeFromMap) {
|
||||
delete el.attrsMap[name]
|
||||
}
|
||||
return val
|
||||
}
|
||||
|
||||
export function getAndRemoveAttrByRegex (
|
||||
el: ASTElement,
|
||||
name: RegExp
|
||||
) {
|
||||
const list = el.attrsList
|
||||
for (let i = 0, l = list.length; i < l; i++) {
|
||||
const attr = list[i]
|
||||
if (name.test(attr.name)) {
|
||||
list.splice(i, 1)
|
||||
return attr
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function rangeSetItem (
|
||||
item: any,
|
||||
range?: { start?: number, end?: number }
|
||||
) {
|
||||
if (range) {
|
||||
if (range.start != null) {
|
||||
item.start = range.start
|
||||
}
|
||||
if (range.end != null) {
|
||||
item.end = range.end
|
||||
}
|
||||
}
|
||||
return item
|
||||
}
|
25
express-server/node_modules/vue/src/compiler/index.js
generated
vendored
Normal file
25
express-server/node_modules/vue/src/compiler/index.js
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
/* @flow */
|
||||
|
||||
import { parse } from './parser/index'
|
||||
import { optimize } from './optimizer'
|
||||
import { generate } from './codegen/index'
|
||||
import { createCompilerCreator } from './create-compiler'
|
||||
|
||||
// `createCompilerCreator` allows creating compilers that use alternative
|
||||
// parser/optimizer/codegen, e.g the SSR optimizing compiler.
|
||||
// Here we just export a default compiler using the default parts.
|
||||
export const createCompiler = createCompilerCreator(function baseCompile (
|
||||
template: string,
|
||||
options: CompilerOptions
|
||||
): CompiledResult {
|
||||
const ast = parse(template.trim(), options)
|
||||
if (options.optimize !== false) {
|
||||
optimize(ast, options)
|
||||
}
|
||||
const code = generate(ast, options)
|
||||
return {
|
||||
ast,
|
||||
render: code.render,
|
||||
staticRenderFns: code.staticRenderFns
|
||||
}
|
||||
})
|
128
express-server/node_modules/vue/src/compiler/optimizer.js
generated
vendored
Normal file
128
express-server/node_modules/vue/src/compiler/optimizer.js
generated
vendored
Normal file
@ -0,0 +1,128 @@
|
||||
/* @flow */
|
||||
|
||||
import { makeMap, isBuiltInTag, cached, no } from 'shared/util'
|
||||
|
||||
let isStaticKey
|
||||
let isPlatformReservedTag
|
||||
|
||||
const genStaticKeysCached = cached(genStaticKeys)
|
||||
|
||||
/**
|
||||
* Goal of the optimizer: walk the generated template AST tree
|
||||
* and detect sub-trees that are purely static, i.e. parts of
|
||||
* the DOM that never needs to change.
|
||||
*
|
||||
* Once we detect these sub-trees, we can:
|
||||
*
|
||||
* 1. Hoist them into constants, so that we no longer need to
|
||||
* create fresh nodes for them on each re-render;
|
||||
* 2. Completely skip them in the patching process.
|
||||
*/
|
||||
export function optimize (root: ?ASTElement, options: CompilerOptions) {
|
||||
if (!root) return
|
||||
isStaticKey = genStaticKeysCached(options.staticKeys || '')
|
||||
isPlatformReservedTag = options.isReservedTag || no
|
||||
// first pass: mark all non-static nodes.
|
||||
markStatic(root)
|
||||
// second pass: mark static roots.
|
||||
markStaticRoots(root, false)
|
||||
}
|
||||
|
||||
function genStaticKeys (keys: string): Function {
|
||||
return makeMap(
|
||||
'type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap' +
|
||||
(keys ? ',' + keys : '')
|
||||
)
|
||||
}
|
||||
|
||||
function markStatic (node: ASTNode) {
|
||||
node.static = isStatic(node)
|
||||
if (node.type === 1) {
|
||||
// do not make component slot content static. this avoids
|
||||
// 1. components not able to mutate slot nodes
|
||||
// 2. static slot content fails for hot-reloading
|
||||
if (
|
||||
!isPlatformReservedTag(node.tag) &&
|
||||
node.tag !== 'slot' &&
|
||||
node.attrsMap['inline-template'] == null
|
||||
) {
|
||||
return
|
||||
}
|
||||
for (let i = 0, l = node.children.length; i < l; i++) {
|
||||
const child = node.children[i]
|
||||
markStatic(child)
|
||||
if (!child.static) {
|
||||
node.static = false
|
||||
}
|
||||
}
|
||||
if (node.ifConditions) {
|
||||
for (let i = 1, l = node.ifConditions.length; i < l; i++) {
|
||||
const block = node.ifConditions[i].block
|
||||
markStatic(block)
|
||||
if (!block.static) {
|
||||
node.static = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function markStaticRoots (node: ASTNode, isInFor: boolean) {
|
||||
if (node.type === 1) {
|
||||
if (node.static || node.once) {
|
||||
node.staticInFor = isInFor
|
||||
}
|
||||
// For a node to qualify as a static root, it should have children that
|
||||
// are not just static text. Otherwise the cost of hoisting out will
|
||||
// outweigh the benefits and it's better off to just always render it fresh.
|
||||
if (node.static && node.children.length && !(
|
||||
node.children.length === 1 &&
|
||||
node.children[0].type === 3
|
||||
)) {
|
||||
node.staticRoot = true
|
||||
return
|
||||
} else {
|
||||
node.staticRoot = false
|
||||
}
|
||||
if (node.children) {
|
||||
for (let i = 0, l = node.children.length; i < l; i++) {
|
||||
markStaticRoots(node.children[i], isInFor || !!node.for)
|
||||
}
|
||||
}
|
||||
if (node.ifConditions) {
|
||||
for (let i = 1, l = node.ifConditions.length; i < l; i++) {
|
||||
markStaticRoots(node.ifConditions[i].block, isInFor)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function isStatic (node: ASTNode): boolean {
|
||||
if (node.type === 2) { // expression
|
||||
return false
|
||||
}
|
||||
if (node.type === 3) { // text
|
||||
return true
|
||||
}
|
||||
return !!(node.pre || (
|
||||
!node.hasBindings && // no dynamic bindings
|
||||
!node.if && !node.for && // not v-if or v-for or v-else
|
||||
!isBuiltInTag(node.tag) && // not a built-in
|
||||
isPlatformReservedTag(node.tag) && // not a component
|
||||
!isDirectChildOfTemplateFor(node) &&
|
||||
Object.keys(node).every(isStaticKey)
|
||||
))
|
||||
}
|
||||
|
||||
function isDirectChildOfTemplateFor (node: ASTElement): boolean {
|
||||
while (node.parent) {
|
||||
node = node.parent
|
||||
if (node.tag !== 'template') {
|
||||
return false
|
||||
}
|
||||
if (node.for) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
11
express-server/node_modules/vue/src/compiler/parser/entity-decoder.js
generated
vendored
Normal file
11
express-server/node_modules/vue/src/compiler/parser/entity-decoder.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
/* @flow */
|
||||
|
||||
let decoder
|
||||
|
||||
export default {
|
||||
decode (html: string): string {
|
||||
decoder = decoder || document.createElement('div')
|
||||
decoder.innerHTML = html
|
||||
return decoder.textContent
|
||||
}
|
||||
}
|
97
express-server/node_modules/vue/src/compiler/parser/filter-parser.js
generated
vendored
Normal file
97
express-server/node_modules/vue/src/compiler/parser/filter-parser.js
generated
vendored
Normal file
@ -0,0 +1,97 @@
|
||||
/* @flow */
|
||||
|
||||
const validDivisionCharRE = /[\w).+\-_$\]]/
|
||||
|
||||
export function parseFilters (exp: string): string {
|
||||
let inSingle = false
|
||||
let inDouble = false
|
||||
let inTemplateString = false
|
||||
let inRegex = false
|
||||
let curly = 0
|
||||
let square = 0
|
||||
let paren = 0
|
||||
let lastFilterIndex = 0
|
||||
let c, prev, i, expression, filters
|
||||
|
||||
for (i = 0; i < exp.length; i++) {
|
||||
prev = c
|
||||
c = exp.charCodeAt(i)
|
||||
if (inSingle) {
|
||||
if (c === 0x27 && prev !== 0x5C) inSingle = false
|
||||
} else if (inDouble) {
|
||||
if (c === 0x22 && prev !== 0x5C) inDouble = false
|
||||
} else if (inTemplateString) {
|
||||
if (c === 0x60 && prev !== 0x5C) inTemplateString = false
|
||||
} else if (inRegex) {
|
||||
if (c === 0x2f && prev !== 0x5C) inRegex = false
|
||||
} else if (
|
||||
c === 0x7C && // pipe
|
||||
exp.charCodeAt(i + 1) !== 0x7C &&
|
||||
exp.charCodeAt(i - 1) !== 0x7C &&
|
||||
!curly && !square && !paren
|
||||
) {
|
||||
if (expression === undefined) {
|
||||
// first filter, end of expression
|
||||
lastFilterIndex = i + 1
|
||||
expression = exp.slice(0, i).trim()
|
||||
} else {
|
||||
pushFilter()
|
||||
}
|
||||
} else {
|
||||
switch (c) {
|
||||
case 0x22: inDouble = true; break // "
|
||||
case 0x27: inSingle = true; break // '
|
||||
case 0x60: inTemplateString = true; break // `
|
||||
case 0x28: paren++; break // (
|
||||
case 0x29: paren--; break // )
|
||||
case 0x5B: square++; break // [
|
||||
case 0x5D: square--; break // ]
|
||||
case 0x7B: curly++; break // {
|
||||
case 0x7D: curly--; break // }
|
||||
}
|
||||
if (c === 0x2f) { // /
|
||||
let j = i - 1
|
||||
let p
|
||||
// find first non-whitespace prev char
|
||||
for (; j >= 0; j--) {
|
||||
p = exp.charAt(j)
|
||||
if (p !== ' ') break
|
||||
}
|
||||
if (!p || !validDivisionCharRE.test(p)) {
|
||||
inRegex = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (expression === undefined) {
|
||||
expression = exp.slice(0, i).trim()
|
||||
} else if (lastFilterIndex !== 0) {
|
||||
pushFilter()
|
||||
}
|
||||
|
||||
function pushFilter () {
|
||||
(filters || (filters = [])).push(exp.slice(lastFilterIndex, i).trim())
|
||||
lastFilterIndex = i + 1
|
||||
}
|
||||
|
||||
if (filters) {
|
||||
for (i = 0; i < filters.length; i++) {
|
||||
expression = wrapFilter(expression, filters[i])
|
||||
}
|
||||
}
|
||||
|
||||
return expression
|
||||
}
|
||||
|
||||
function wrapFilter (exp: string, filter: string): string {
|
||||
const i = filter.indexOf('(')
|
||||
if (i < 0) {
|
||||
// _f: resolveFilter
|
||||
return `_f("${filter}")(${exp})`
|
||||
} else {
|
||||
const name = filter.slice(0, i)
|
||||
const args = filter.slice(i + 1)
|
||||
return `_f("${name}")(${exp}${args !== ')' ? ',' + args : args}`
|
||||
}
|
||||
}
|
306
express-server/node_modules/vue/src/compiler/parser/html-parser.js
generated
vendored
Normal file
306
express-server/node_modules/vue/src/compiler/parser/html-parser.js
generated
vendored
Normal file
@ -0,0 +1,306 @@
|
||||
/**
|
||||
* Not type-checking this file because it's mostly vendor code.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* HTML Parser By John Resig (ejohn.org)
|
||||
* Modified by Juriy "kangax" Zaytsev
|
||||
* Original code by Erik Arvidsson, Mozilla Public License
|
||||
* http://erik.eae.net/simplehtmlparser/simplehtmlparser.js
|
||||
*/
|
||||
|
||||
import { makeMap, no } from 'shared/util'
|
||||
import { isNonPhrasingTag } from 'web/compiler/util'
|
||||
import { unicodeRegExp } from 'core/util/lang'
|
||||
|
||||
// Regular Expressions for parsing tags and attributes
|
||||
const attribute = /^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/
|
||||
const dynamicArgAttribute = /^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/
|
||||
const ncname = `[a-zA-Z_][\\-\\.0-9_a-zA-Z${unicodeRegExp.source}]*`
|
||||
const qnameCapture = `((?:${ncname}\\:)?${ncname})`
|
||||
const startTagOpen = new RegExp(`^<${qnameCapture}`)
|
||||
const startTagClose = /^\s*(\/?)>/
|
||||
const endTag = new RegExp(`^<\\/${qnameCapture}[^>]*>`)
|
||||
const doctype = /^<!DOCTYPE [^>]+>/i
|
||||
// #7298: escape - to avoid being pased as HTML comment when inlined in page
|
||||
const comment = /^<!\--/
|
||||
const conditionalComment = /^<!\[/
|
||||
|
||||
// Special Elements (can contain anything)
|
||||
export const isPlainTextElement = makeMap('script,style,textarea', true)
|
||||
const reCache = {}
|
||||
|
||||
const decodingMap = {
|
||||
'<': '<',
|
||||
'>': '>',
|
||||
'"': '"',
|
||||
'&': '&',
|
||||
' ': '\n',
|
||||
'	': '\t',
|
||||
''': "'"
|
||||
}
|
||||
const encodedAttr = /&(?:lt|gt|quot|amp|#39);/g
|
||||
const encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#39|#10|#9);/g
|
||||
|
||||
// #5992
|
||||
const isIgnoreNewlineTag = makeMap('pre,textarea', true)
|
||||
const shouldIgnoreFirstNewline = (tag, html) => tag && isIgnoreNewlineTag(tag) && html[0] === '\n'
|
||||
|
||||
function decodeAttr (value, shouldDecodeNewlines) {
|
||||
const re = shouldDecodeNewlines ? encodedAttrWithNewLines : encodedAttr
|
||||
return value.replace(re, match => decodingMap[match])
|
||||
}
|
||||
|
||||
export function parseHTML (html, options) {
|
||||
const stack = []
|
||||
const expectHTML = options.expectHTML
|
||||
const isUnaryTag = options.isUnaryTag || no
|
||||
const canBeLeftOpenTag = options.canBeLeftOpenTag || no
|
||||
let index = 0
|
||||
let last, lastTag
|
||||
while (html) {
|
||||
last = html
|
||||
// Make sure we're not in a plaintext content element like script/style
|
||||
if (!lastTag || !isPlainTextElement(lastTag)) {
|
||||
let textEnd = html.indexOf('<')
|
||||
if (textEnd === 0) {
|
||||
// Comment:
|
||||
if (comment.test(html)) {
|
||||
const commentEnd = html.indexOf('-->')
|
||||
|
||||
if (commentEnd >= 0) {
|
||||
if (options.shouldKeepComment) {
|
||||
options.comment(html.substring(4, commentEnd), index, index + commentEnd + 3)
|
||||
}
|
||||
advance(commentEnd + 3)
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
// http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment
|
||||
if (conditionalComment.test(html)) {
|
||||
const conditionalEnd = html.indexOf(']>')
|
||||
|
||||
if (conditionalEnd >= 0) {
|
||||
advance(conditionalEnd + 2)
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
// Doctype:
|
||||
const doctypeMatch = html.match(doctype)
|
||||
if (doctypeMatch) {
|
||||
advance(doctypeMatch[0].length)
|
||||
continue
|
||||
}
|
||||
|
||||
// End tag:
|
||||
const endTagMatch = html.match(endTag)
|
||||
if (endTagMatch) {
|
||||
const curIndex = index
|
||||
advance(endTagMatch[0].length)
|
||||
parseEndTag(endTagMatch[1], curIndex, index)
|
||||
continue
|
||||
}
|
||||
|
||||
// Start tag:
|
||||
const startTagMatch = parseStartTag()
|
||||
if (startTagMatch) {
|
||||
handleStartTag(startTagMatch)
|
||||
if (shouldIgnoreFirstNewline(startTagMatch.tagName, html)) {
|
||||
advance(1)
|
||||
}
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
let text, rest, next
|
||||
if (textEnd >= 0) {
|
||||
rest = html.slice(textEnd)
|
||||
while (
|
||||
!endTag.test(rest) &&
|
||||
!startTagOpen.test(rest) &&
|
||||
!comment.test(rest) &&
|
||||
!conditionalComment.test(rest)
|
||||
) {
|
||||
// < in plain text, be forgiving and treat it as text
|
||||
next = rest.indexOf('<', 1)
|
||||
if (next < 0) break
|
||||
textEnd += next
|
||||
rest = html.slice(textEnd)
|
||||
}
|
||||
text = html.substring(0, textEnd)
|
||||
}
|
||||
|
||||
if (textEnd < 0) {
|
||||
text = html
|
||||
}
|
||||
|
||||
if (text) {
|
||||
advance(text.length)
|
||||
}
|
||||
|
||||
if (options.chars && text) {
|
||||
options.chars(text, index - text.length, index)
|
||||
}
|
||||
} else {
|
||||
let endTagLength = 0
|
||||
const stackedTag = lastTag.toLowerCase()
|
||||
const reStackedTag = reCache[stackedTag] || (reCache[stackedTag] = new RegExp('([\\s\\S]*?)(</' + stackedTag + '[^>]*>)', 'i'))
|
||||
const rest = html.replace(reStackedTag, function (all, text, endTag) {
|
||||
endTagLength = endTag.length
|
||||
if (!isPlainTextElement(stackedTag) && stackedTag !== 'noscript') {
|
||||
text = text
|
||||
.replace(/<!\--([\s\S]*?)-->/g, '$1') // #7298
|
||||
.replace(/<!\[CDATA\[([\s\S]*?)]]>/g, '$1')
|
||||
}
|
||||
if (shouldIgnoreFirstNewline(stackedTag, text)) {
|
||||
text = text.slice(1)
|
||||
}
|
||||
if (options.chars) {
|
||||
options.chars(text)
|
||||
}
|
||||
return ''
|
||||
})
|
||||
index += html.length - rest.length
|
||||
html = rest
|
||||
parseEndTag(stackedTag, index - endTagLength, index)
|
||||
}
|
||||
|
||||
if (html === last) {
|
||||
options.chars && options.chars(html)
|
||||
if (process.env.NODE_ENV !== 'production' && !stack.length && options.warn) {
|
||||
options.warn(`Mal-formatted tag at end of template: "${html}"`, { start: index + html.length })
|
||||
}
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
// Clean up any remaining tags
|
||||
parseEndTag()
|
||||
|
||||
function advance (n) {
|
||||
index += n
|
||||
html = html.substring(n)
|
||||
}
|
||||
|
||||
function parseStartTag () {
|
||||
const start = html.match(startTagOpen)
|
||||
if (start) {
|
||||
const match = {
|
||||
tagName: start[1],
|
||||
attrs: [],
|
||||
start: index
|
||||
}
|
||||
advance(start[0].length)
|
||||
let end, attr
|
||||
while (!(end = html.match(startTagClose)) && (attr = html.match(dynamicArgAttribute) || html.match(attribute))) {
|
||||
attr.start = index
|
||||
advance(attr[0].length)
|
||||
attr.end = index
|
||||
match.attrs.push(attr)
|
||||
}
|
||||
if (end) {
|
||||
match.unarySlash = end[1]
|
||||
advance(end[0].length)
|
||||
match.end = index
|
||||
return match
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function handleStartTag (match) {
|
||||
const tagName = match.tagName
|
||||
const unarySlash = match.unarySlash
|
||||
|
||||
if (expectHTML) {
|
||||
if (lastTag === 'p' && isNonPhrasingTag(tagName)) {
|
||||
parseEndTag(lastTag)
|
||||
}
|
||||
if (canBeLeftOpenTag(tagName) && lastTag === tagName) {
|
||||
parseEndTag(tagName)
|
||||
}
|
||||
}
|
||||
|
||||
const unary = isUnaryTag(tagName) || !!unarySlash
|
||||
|
||||
const l = match.attrs.length
|
||||
const attrs = new Array(l)
|
||||
for (let i = 0; i < l; i++) {
|
||||
const args = match.attrs[i]
|
||||
const value = args[3] || args[4] || args[5] || ''
|
||||
const shouldDecodeNewlines = tagName === 'a' && args[1] === 'href'
|
||||
? options.shouldDecodeNewlinesForHref
|
||||
: options.shouldDecodeNewlines
|
||||
attrs[i] = {
|
||||
name: args[1],
|
||||
value: decodeAttr(value, shouldDecodeNewlines)
|
||||
}
|
||||
if (process.env.NODE_ENV !== 'production' && options.outputSourceRange) {
|
||||
attrs[i].start = args.start + args[0].match(/^\s*/).length
|
||||
attrs[i].end = args.end
|
||||
}
|
||||
}
|
||||
|
||||
if (!unary) {
|
||||
stack.push({ tag: tagName, lowerCasedTag: tagName.toLowerCase(), attrs: attrs, start: match.start, end: match.end })
|
||||
lastTag = tagName
|
||||
}
|
||||
|
||||
if (options.start) {
|
||||
options.start(tagName, attrs, unary, match.start, match.end)
|
||||
}
|
||||
}
|
||||
|
||||
function parseEndTag (tagName, start, end) {
|
||||
let pos, lowerCasedTagName
|
||||
if (start == null) start = index
|
||||
if (end == null) end = index
|
||||
|
||||
// Find the closest opened tag of the same type
|
||||
if (tagName) {
|
||||
lowerCasedTagName = tagName.toLowerCase()
|
||||
for (pos = stack.length - 1; pos >= 0; pos--) {
|
||||
if (stack[pos].lowerCasedTag === lowerCasedTagName) {
|
||||
break
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// If no tag name is provided, clean shop
|
||||
pos = 0
|
||||
}
|
||||
|
||||
if (pos >= 0) {
|
||||
// Close all the open elements, up the stack
|
||||
for (let i = stack.length - 1; i >= pos; i--) {
|
||||
if (process.env.NODE_ENV !== 'production' &&
|
||||
(i > pos || !tagName) &&
|
||||
options.warn
|
||||
) {
|
||||
options.warn(
|
||||
`tag <${stack[i].tag}> has no matching end tag.`,
|
||||
{ start: stack[i].start, end: stack[i].end }
|
||||
)
|
||||
}
|
||||
if (options.end) {
|
||||
options.end(stack[i].tag, start, end)
|
||||
}
|
||||
}
|
||||
|
||||
// Remove the open elements from the stack
|
||||
stack.length = pos
|
||||
lastTag = pos && stack[pos - 1].tag
|
||||
} else if (lowerCasedTagName === 'br') {
|
||||
if (options.start) {
|
||||
options.start(tagName, [], true, start, end)
|
||||
}
|
||||
} else if (lowerCasedTagName === 'p') {
|
||||
if (options.start) {
|
||||
options.start(tagName, [], false, start, end)
|
||||
}
|
||||
if (options.end) {
|
||||
options.end(tagName, start, end)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
975
express-server/node_modules/vue/src/compiler/parser/index.js
generated
vendored
Normal file
975
express-server/node_modules/vue/src/compiler/parser/index.js
generated
vendored
Normal file
@ -0,0 +1,975 @@
|
||||
/* @flow */
|
||||
|
||||
import he from 'he'
|
||||
import { parseHTML } from './html-parser'
|
||||
import { parseText } from './text-parser'
|
||||
import { parseFilters } from './filter-parser'
|
||||
import { genAssignmentCode } from '../directives/model'
|
||||
import { extend, cached, no, camelize, hyphenate } from 'shared/util'
|
||||
import { isIE, isEdge, isServerRendering } from 'core/util/env'
|
||||
|
||||
import {
|
||||
addProp,
|
||||
addAttr,
|
||||
baseWarn,
|
||||
addHandler,
|
||||
addDirective,
|
||||
getBindingAttr,
|
||||
getAndRemoveAttr,
|
||||
getRawBindingAttr,
|
||||
pluckModuleFunction,
|
||||
getAndRemoveAttrByRegex
|
||||
} from '../helpers'
|
||||
|
||||
export const onRE = /^@|^v-on:/
|
||||
export const dirRE = process.env.VBIND_PROP_SHORTHAND
|
||||
? /^v-|^@|^:|^\./
|
||||
: /^v-|^@|^:/
|
||||
export const forAliasRE = /([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/
|
||||
export const forIteratorRE = /,([^,\}\]]*)(?:,([^,\}\]]*))?$/
|
||||
const stripParensRE = /^\(|\)$/g
|
||||
const dynamicArgRE = /^\[.*\]$/
|
||||
|
||||
const argRE = /:(.*)$/
|
||||
export const bindRE = /^:|^\.|^v-bind:/
|
||||
const propBindRE = /^\./
|
||||
const modifierRE = /\.[^.\]]+(?=[^\]]*$)/g
|
||||
|
||||
const slotRE = /^v-slot(:|$)|^#/
|
||||
|
||||
const lineBreakRE = /[\r\n]/
|
||||
const whitespaceRE = /\s+/g
|
||||
|
||||
const invalidAttributeRE = /[\s"'<>\/=]/
|
||||
|
||||
const decodeHTMLCached = cached(he.decode)
|
||||
|
||||
export const emptySlotScopeToken = `_empty_`
|
||||
|
||||
// configurable state
|
||||
export let warn: any
|
||||
let delimiters
|
||||
let transforms
|
||||
let preTransforms
|
||||
let postTransforms
|
||||
let platformIsPreTag
|
||||
let platformMustUseProp
|
||||
let platformGetTagNamespace
|
||||
let maybeComponent
|
||||
|
||||
export function createASTElement (
|
||||
tag: string,
|
||||
attrs: Array<ASTAttr>,
|
||||
parent: ASTElement | void
|
||||
): ASTElement {
|
||||
return {
|
||||
type: 1,
|
||||
tag,
|
||||
attrsList: attrs,
|
||||
attrsMap: makeAttrsMap(attrs),
|
||||
rawAttrsMap: {},
|
||||
parent,
|
||||
children: []
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert HTML string to AST.
|
||||
*/
|
||||
export function parse (
|
||||
template: string,
|
||||
options: CompilerOptions
|
||||
): ASTElement | void {
|
||||
warn = options.warn || baseWarn
|
||||
|
||||
platformIsPreTag = options.isPreTag || no
|
||||
platformMustUseProp = options.mustUseProp || no
|
||||
platformGetTagNamespace = options.getTagNamespace || no
|
||||
const isReservedTag = options.isReservedTag || no
|
||||
maybeComponent = (el: ASTElement) => !!el.component || !isReservedTag(el.tag)
|
||||
|
||||
transforms = pluckModuleFunction(options.modules, 'transformNode')
|
||||
preTransforms = pluckModuleFunction(options.modules, 'preTransformNode')
|
||||
postTransforms = pluckModuleFunction(options.modules, 'postTransformNode')
|
||||
|
||||
delimiters = options.delimiters
|
||||
|
||||
const stack = []
|
||||
const preserveWhitespace = options.preserveWhitespace !== false
|
||||
const whitespaceOption = options.whitespace
|
||||
let root
|
||||
let currentParent
|
||||
let inVPre = false
|
||||
let inPre = false
|
||||
let warned = false
|
||||
|
||||
function warnOnce (msg, range) {
|
||||
if (!warned) {
|
||||
warned = true
|
||||
warn(msg, range)
|
||||
}
|
||||
}
|
||||
|
||||
function closeElement (element) {
|
||||
trimEndingWhitespace(element)
|
||||
if (!inVPre && !element.processed) {
|
||||
element = processElement(element, options)
|
||||
}
|
||||
// tree management
|
||||
if (!stack.length && element !== root) {
|
||||
// allow root elements with v-if, v-else-if and v-else
|
||||
if (root.if && (element.elseif || element.else)) {
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
checkRootConstraints(element)
|
||||
}
|
||||
addIfCondition(root, {
|
||||
exp: element.elseif,
|
||||
block: element
|
||||
})
|
||||
} else if (process.env.NODE_ENV !== 'production') {
|
||||
warnOnce(
|
||||
`Component template should contain exactly one root element. ` +
|
||||
`If you are using v-if on multiple elements, ` +
|
||||
`use v-else-if to chain them instead.`,
|
||||
{ start: element.start }
|
||||
)
|
||||
}
|
||||
}
|
||||
if (currentParent && !element.forbidden) {
|
||||
if (element.elseif || element.else) {
|
||||
processIfConditions(element, currentParent)
|
||||
} else {
|
||||
if (element.slotScope) {
|
||||
// scoped slot
|
||||
// keep it in the children list so that v-else(-if) conditions can
|
||||
// find it as the prev node.
|
||||
const name = element.slotTarget || '"default"'
|
||||
;(currentParent.scopedSlots || (currentParent.scopedSlots = {}))[name] = element
|
||||
}
|
||||
currentParent.children.push(element)
|
||||
element.parent = currentParent
|
||||
}
|
||||
}
|
||||
|
||||
// final children cleanup
|
||||
// filter out scoped slots
|
||||
element.children = element.children.filter(c => !(c: any).slotScope)
|
||||
// remove trailing whitespace node again
|
||||
trimEndingWhitespace(element)
|
||||
|
||||
// check pre state
|
||||
if (element.pre) {
|
||||
inVPre = false
|
||||
}
|
||||
if (platformIsPreTag(element.tag)) {
|
||||
inPre = false
|
||||
}
|
||||
// apply post-transforms
|
||||
for (let i = 0; i < postTransforms.length; i++) {
|
||||
postTransforms[i](element, options)
|
||||
}
|
||||
}
|
||||
|
||||
function trimEndingWhitespace (el) {
|
||||
// remove trailing whitespace node
|
||||
if (!inPre) {
|
||||
let lastNode
|
||||
while (
|
||||
(lastNode = el.children[el.children.length - 1]) &&
|
||||
lastNode.type === 3 &&
|
||||
lastNode.text === ' '
|
||||
) {
|
||||
el.children.pop()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function checkRootConstraints (el) {
|
||||
if (el.tag === 'slot' || el.tag === 'template') {
|
||||
warnOnce(
|
||||
`Cannot use <${el.tag}> as component root element because it may ` +
|
||||
'contain multiple nodes.',
|
||||
{ start: el.start }
|
||||
)
|
||||
}
|
||||
if (el.attrsMap.hasOwnProperty('v-for')) {
|
||||
warnOnce(
|
||||
'Cannot use v-for on stateful component root element because ' +
|
||||
'it renders multiple elements.',
|
||||
el.rawAttrsMap['v-for']
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
parseHTML(template, {
|
||||
warn,
|
||||
expectHTML: options.expectHTML,
|
||||
isUnaryTag: options.isUnaryTag,
|
||||
canBeLeftOpenTag: options.canBeLeftOpenTag,
|
||||
shouldDecodeNewlines: options.shouldDecodeNewlines,
|
||||
shouldDecodeNewlinesForHref: options.shouldDecodeNewlinesForHref,
|
||||
shouldKeepComment: options.comments,
|
||||
outputSourceRange: options.outputSourceRange,
|
||||
start (tag, attrs, unary, start, end) {
|
||||
// check namespace.
|
||||
// inherit parent ns if there is one
|
||||
const ns = (currentParent && currentParent.ns) || platformGetTagNamespace(tag)
|
||||
|
||||
// handle IE svg bug
|
||||
/* istanbul ignore if */
|
||||
if (isIE && ns === 'svg') {
|
||||
attrs = guardIESVGBug(attrs)
|
||||
}
|
||||
|
||||
let element: ASTElement = createASTElement(tag, attrs, currentParent)
|
||||
if (ns) {
|
||||
element.ns = ns
|
||||
}
|
||||
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (options.outputSourceRange) {
|
||||
element.start = start
|
||||
element.end = end
|
||||
element.rawAttrsMap = element.attrsList.reduce((cumulated, attr) => {
|
||||
cumulated[attr.name] = attr
|
||||
return cumulated
|
||||
}, {})
|
||||
}
|
||||
attrs.forEach(attr => {
|
||||
if (invalidAttributeRE.test(attr.name)) {
|
||||
warn(
|
||||
`Invalid dynamic argument expression: attribute names cannot contain ` +
|
||||
`spaces, quotes, <, >, / or =.`,
|
||||
{
|
||||
start: attr.start + attr.name.indexOf(`[`),
|
||||
end: attr.start + attr.name.length
|
||||
}
|
||||
)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
if (isForbiddenTag(element) && !isServerRendering()) {
|
||||
element.forbidden = true
|
||||
process.env.NODE_ENV !== 'production' && warn(
|
||||
'Templates should only be responsible for mapping the state to the ' +
|
||||
'UI. Avoid placing tags with side-effects in your templates, such as ' +
|
||||
`<${tag}>` + ', as they will not be parsed.',
|
||||
{ start: element.start }
|
||||
)
|
||||
}
|
||||
|
||||
// apply pre-transforms
|
||||
for (let i = 0; i < preTransforms.length; i++) {
|
||||
element = preTransforms[i](element, options) || element
|
||||
}
|
||||
|
||||
if (!inVPre) {
|
||||
processPre(element)
|
||||
if (element.pre) {
|
||||
inVPre = true
|
||||
}
|
||||
}
|
||||
if (platformIsPreTag(element.tag)) {
|
||||
inPre = true
|
||||
}
|
||||
if (inVPre) {
|
||||
processRawAttrs(element)
|
||||
} else if (!element.processed) {
|
||||
// structural directives
|
||||
processFor(element)
|
||||
processIf(element)
|
||||
processOnce(element)
|
||||
}
|
||||
|
||||
if (!root) {
|
||||
root = element
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
checkRootConstraints(root)
|
||||
}
|
||||
}
|
||||
|
||||
if (!unary) {
|
||||
currentParent = element
|
||||
stack.push(element)
|
||||
} else {
|
||||
closeElement(element)
|
||||
}
|
||||
},
|
||||
|
||||
end (tag, start, end) {
|
||||
const element = stack[stack.length - 1]
|
||||
// pop stack
|
||||
stack.length -= 1
|
||||
currentParent = stack[stack.length - 1]
|
||||
if (process.env.NODE_ENV !== 'production' && options.outputSourceRange) {
|
||||
element.end = end
|
||||
}
|
||||
closeElement(element)
|
||||
},
|
||||
|
||||
chars (text: string, start: number, end: number) {
|
||||
if (!currentParent) {
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (text === template) {
|
||||
warnOnce(
|
||||
'Component template requires a root element, rather than just text.',
|
||||
{ start }
|
||||
)
|
||||
} else if ((text = text.trim())) {
|
||||
warnOnce(
|
||||
`text "${text}" outside root element will be ignored.`,
|
||||
{ start }
|
||||
)
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
// IE textarea placeholder bug
|
||||
/* istanbul ignore if */
|
||||
if (isIE &&
|
||||
currentParent.tag === 'textarea' &&
|
||||
currentParent.attrsMap.placeholder === text
|
||||
) {
|
||||
return
|
||||
}
|
||||
const children = currentParent.children
|
||||
if (inPre || text.trim()) {
|
||||
text = isTextTag(currentParent) ? text : decodeHTMLCached(text)
|
||||
} else if (!children.length) {
|
||||
// remove the whitespace-only node right after an opening tag
|
||||
text = ''
|
||||
} else if (whitespaceOption) {
|
||||
if (whitespaceOption === 'condense') {
|
||||
// in condense mode, remove the whitespace node if it contains
|
||||
// line break, otherwise condense to a single space
|
||||
text = lineBreakRE.test(text) ? '' : ' '
|
||||
} else {
|
||||
text = ' '
|
||||
}
|
||||
} else {
|
||||
text = preserveWhitespace ? ' ' : ''
|
||||
}
|
||||
if (text) {
|
||||
if (!inPre && whitespaceOption === 'condense') {
|
||||
// condense consecutive whitespaces into single space
|
||||
text = text.replace(whitespaceRE, ' ')
|
||||
}
|
||||
let res
|
||||
let child: ?ASTNode
|
||||
if (!inVPre && text !== ' ' && (res = parseText(text, delimiters))) {
|
||||
child = {
|
||||
type: 2,
|
||||
expression: res.expression,
|
||||
tokens: res.tokens,
|
||||
text
|
||||
}
|
||||
} else if (text !== ' ' || !children.length || children[children.length - 1].text !== ' ') {
|
||||
child = {
|
||||
type: 3,
|
||||
text
|
||||
}
|
||||
}
|
||||
if (child) {
|
||||
if (process.env.NODE_ENV !== 'production' && options.outputSourceRange) {
|
||||
child.start = start
|
||||
child.end = end
|
||||
}
|
||||
children.push(child)
|
||||
}
|
||||
}
|
||||
},
|
||||
comment (text: string, start, end) {
|
||||
// adding anyting as a sibling to the root node is forbidden
|
||||
// comments should still be allowed, but ignored
|
||||
if (currentParent) {
|
||||
const child: ASTText = {
|
||||
type: 3,
|
||||
text,
|
||||
isComment: true
|
||||
}
|
||||
if (process.env.NODE_ENV !== 'production' && options.outputSourceRange) {
|
||||
child.start = start
|
||||
child.end = end
|
||||
}
|
||||
currentParent.children.push(child)
|
||||
}
|
||||
}
|
||||
})
|
||||
return root
|
||||
}
|
||||
|
||||
function processPre (el) {
|
||||
if (getAndRemoveAttr(el, 'v-pre') != null) {
|
||||
el.pre = true
|
||||
}
|
||||
}
|
||||
|
||||
function processRawAttrs (el) {
|
||||
const list = el.attrsList
|
||||
const len = list.length
|
||||
if (len) {
|
||||
const attrs: Array<ASTAttr> = el.attrs = new Array(len)
|
||||
for (let i = 0; i < len; i++) {
|
||||
attrs[i] = {
|
||||
name: list[i].name,
|
||||
value: JSON.stringify(list[i].value)
|
||||
}
|
||||
if (list[i].start != null) {
|
||||
attrs[i].start = list[i].start
|
||||
attrs[i].end = list[i].end
|
||||
}
|
||||
}
|
||||
} else if (!el.pre) {
|
||||
// non root node in pre blocks with no attributes
|
||||
el.plain = true
|
||||
}
|
||||
}
|
||||
|
||||
export function processElement (
|
||||
element: ASTElement,
|
||||
options: CompilerOptions
|
||||
) {
|
||||
processKey(element)
|
||||
|
||||
// determine whether this is a plain element after
|
||||
// removing structural attributes
|
||||
element.plain = (
|
||||
!element.key &&
|
||||
!element.scopedSlots &&
|
||||
!element.attrsList.length
|
||||
)
|
||||
|
||||
processRef(element)
|
||||
processSlotContent(element)
|
||||
processSlotOutlet(element)
|
||||
processComponent(element)
|
||||
for (let i = 0; i < transforms.length; i++) {
|
||||
element = transforms[i](element, options) || element
|
||||
}
|
||||
processAttrs(element)
|
||||
return element
|
||||
}
|
||||
|
||||
function processKey (el) {
|
||||
const exp = getBindingAttr(el, 'key')
|
||||
if (exp) {
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (el.tag === 'template') {
|
||||
warn(
|
||||
`<template> cannot be keyed. Place the key on real elements instead.`,
|
||||
getRawBindingAttr(el, 'key')
|
||||
)
|
||||
}
|
||||
if (el.for) {
|
||||
const iterator = el.iterator2 || el.iterator1
|
||||
const parent = el.parent
|
||||
if (iterator && iterator === exp && parent && parent.tag === 'transition-group') {
|
||||
warn(
|
||||
`Do not use v-for index as key on <transition-group> children, ` +
|
||||
`this is the same as not using keys.`,
|
||||
getRawBindingAttr(el, 'key'),
|
||||
true /* tip */
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
el.key = exp
|
||||
}
|
||||
}
|
||||
|
||||
function processRef (el) {
|
||||
const ref = getBindingAttr(el, 'ref')
|
||||
if (ref) {
|
||||
el.ref = ref
|
||||
el.refInFor = checkInFor(el)
|
||||
}
|
||||
}
|
||||
|
||||
export function processFor (el: ASTElement) {
|
||||
let exp
|
||||
if ((exp = getAndRemoveAttr(el, 'v-for'))) {
|
||||
const res = parseFor(exp)
|
||||
if (res) {
|
||||
extend(el, res)
|
||||
} else if (process.env.NODE_ENV !== 'production') {
|
||||
warn(
|
||||
`Invalid v-for expression: ${exp}`,
|
||||
el.rawAttrsMap['v-for']
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type ForParseResult = {
|
||||
for: string;
|
||||
alias: string;
|
||||
iterator1?: string;
|
||||
iterator2?: string;
|
||||
};
|
||||
|
||||
export function parseFor (exp: string): ?ForParseResult {
|
||||
const inMatch = exp.match(forAliasRE)
|
||||
if (!inMatch) return
|
||||
const res = {}
|
||||
res.for = inMatch[2].trim()
|
||||
const alias = inMatch[1].trim().replace(stripParensRE, '')
|
||||
const iteratorMatch = alias.match(forIteratorRE)
|
||||
if (iteratorMatch) {
|
||||
res.alias = alias.replace(forIteratorRE, '').trim()
|
||||
res.iterator1 = iteratorMatch[1].trim()
|
||||
if (iteratorMatch[2]) {
|
||||
res.iterator2 = iteratorMatch[2].trim()
|
||||
}
|
||||
} else {
|
||||
res.alias = alias
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
function processIf (el) {
|
||||
const exp = getAndRemoveAttr(el, 'v-if')
|
||||
if (exp) {
|
||||
el.if = exp
|
||||
addIfCondition(el, {
|
||||
exp: exp,
|
||||
block: el
|
||||
})
|
||||
} else {
|
||||
if (getAndRemoveAttr(el, 'v-else') != null) {
|
||||
el.else = true
|
||||
}
|
||||
const elseif = getAndRemoveAttr(el, 'v-else-if')
|
||||
if (elseif) {
|
||||
el.elseif = elseif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function processIfConditions (el, parent) {
|
||||
const prev = findPrevElement(parent.children)
|
||||
if (prev && prev.if) {
|
||||
addIfCondition(prev, {
|
||||
exp: el.elseif,
|
||||
block: el
|
||||
})
|
||||
} else if (process.env.NODE_ENV !== 'production') {
|
||||
warn(
|
||||
`v-${el.elseif ? ('else-if="' + el.elseif + '"') : 'else'} ` +
|
||||
`used on element <${el.tag}> without corresponding v-if.`,
|
||||
el.rawAttrsMap[el.elseif ? 'v-else-if' : 'v-else']
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
function findPrevElement (children: Array<any>): ASTElement | void {
|
||||
let i = children.length
|
||||
while (i--) {
|
||||
if (children[i].type === 1) {
|
||||
return children[i]
|
||||
} else {
|
||||
if (process.env.NODE_ENV !== 'production' && children[i].text !== ' ') {
|
||||
warn(
|
||||
`text "${children[i].text.trim()}" between v-if and v-else(-if) ` +
|
||||
`will be ignored.`,
|
||||
children[i]
|
||||
)
|
||||
}
|
||||
children.pop()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export function addIfCondition (el: ASTElement, condition: ASTIfCondition) {
|
||||
if (!el.ifConditions) {
|
||||
el.ifConditions = []
|
||||
}
|
||||
el.ifConditions.push(condition)
|
||||
}
|
||||
|
||||
function processOnce (el) {
|
||||
const once = getAndRemoveAttr(el, 'v-once')
|
||||
if (once != null) {
|
||||
el.once = true
|
||||
}
|
||||
}
|
||||
|
||||
// handle content being passed to a component as slot,
|
||||
// e.g. <template slot="xxx">, <div slot-scope="xxx">
|
||||
function processSlotContent (el) {
|
||||
let slotScope
|
||||
if (el.tag === 'template') {
|
||||
slotScope = getAndRemoveAttr(el, 'scope')
|
||||
/* istanbul ignore if */
|
||||
if (process.env.NODE_ENV !== 'production' && slotScope) {
|
||||
warn(
|
||||
`the "scope" attribute for scoped slots have been deprecated and ` +
|
||||
`replaced by "slot-scope" since 2.5. The new "slot-scope" attribute ` +
|
||||
`can also be used on plain elements in addition to <template> to ` +
|
||||
`denote scoped slots.`,
|
||||
el.rawAttrsMap['scope'],
|
||||
true
|
||||
)
|
||||
}
|
||||
el.slotScope = slotScope || getAndRemoveAttr(el, 'slot-scope')
|
||||
} else if ((slotScope = getAndRemoveAttr(el, 'slot-scope'))) {
|
||||
/* istanbul ignore if */
|
||||
if (process.env.NODE_ENV !== 'production' && el.attrsMap['v-for']) {
|
||||
warn(
|
||||
`Ambiguous combined usage of slot-scope and v-for on <${el.tag}> ` +
|
||||
`(v-for takes higher priority). Use a wrapper <template> for the ` +
|
||||
`scoped slot to make it clearer.`,
|
||||
el.rawAttrsMap['slot-scope'],
|
||||
true
|
||||
)
|
||||
}
|
||||
el.slotScope = slotScope
|
||||
}
|
||||
|
||||
// slot="xxx"
|
||||
const slotTarget = getBindingAttr(el, 'slot')
|
||||
if (slotTarget) {
|
||||
el.slotTarget = slotTarget === '""' ? '"default"' : slotTarget
|
||||
el.slotTargetDynamic = !!(el.attrsMap[':slot'] || el.attrsMap['v-bind:slot'])
|
||||
// preserve slot as an attribute for native shadow DOM compat
|
||||
// only for non-scoped slots.
|
||||
if (el.tag !== 'template' && !el.slotScope) {
|
||||
addAttr(el, 'slot', slotTarget, getRawBindingAttr(el, 'slot'))
|
||||
}
|
||||
}
|
||||
|
||||
// 2.6 v-slot syntax
|
||||
if (process.env.NEW_SLOT_SYNTAX) {
|
||||
if (el.tag === 'template') {
|
||||
// v-slot on <template>
|
||||
const slotBinding = getAndRemoveAttrByRegex(el, slotRE)
|
||||
if (slotBinding) {
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (el.slotTarget || el.slotScope) {
|
||||
warn(
|
||||
`Unexpected mixed usage of different slot syntaxes.`,
|
||||
el
|
||||
)
|
||||
}
|
||||
if (el.parent && !maybeComponent(el.parent)) {
|
||||
warn(
|
||||
`<template v-slot> can only appear at the root level inside ` +
|
||||
`the receiving the component`,
|
||||
el
|
||||
)
|
||||
}
|
||||
}
|
||||
const { name, dynamic } = getSlotName(slotBinding)
|
||||
el.slotTarget = name
|
||||
el.slotTargetDynamic = dynamic
|
||||
el.slotScope = slotBinding.value || emptySlotScopeToken // force it into a scoped slot for perf
|
||||
}
|
||||
} else {
|
||||
// v-slot on component, denotes default slot
|
||||
const slotBinding = getAndRemoveAttrByRegex(el, slotRE)
|
||||
if (slotBinding) {
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (!maybeComponent(el)) {
|
||||
warn(
|
||||
`v-slot can only be used on components or <template>.`,
|
||||
slotBinding
|
||||
)
|
||||
}
|
||||
if (el.slotScope || el.slotTarget) {
|
||||
warn(
|
||||
`Unexpected mixed usage of different slot syntaxes.`,
|
||||
el
|
||||
)
|
||||
}
|
||||
if (el.scopedSlots) {
|
||||
warn(
|
||||
`To avoid scope ambiguity, the default slot should also use ` +
|
||||
`<template> syntax when there are other named slots.`,
|
||||
slotBinding
|
||||
)
|
||||
}
|
||||
}
|
||||
// add the component's children to its default slot
|
||||
const slots = el.scopedSlots || (el.scopedSlots = {})
|
||||
const { name, dynamic } = getSlotName(slotBinding)
|
||||
const slotContainer = slots[name] = createASTElement('template', [], el)
|
||||
slotContainer.slotTarget = name
|
||||
slotContainer.slotTargetDynamic = dynamic
|
||||
slotContainer.children = el.children.filter((c: any) => {
|
||||
if (!c.slotScope) {
|
||||
c.parent = slotContainer
|
||||
return true
|
||||
}
|
||||
})
|
||||
slotContainer.slotScope = slotBinding.value || emptySlotScopeToken
|
||||
// remove children as they are returned from scopedSlots now
|
||||
el.children = []
|
||||
// mark el non-plain so data gets generated
|
||||
el.plain = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getSlotName (binding) {
|
||||
let name = binding.name.replace(slotRE, '')
|
||||
if (!name) {
|
||||
if (binding.name[0] !== '#') {
|
||||
name = 'default'
|
||||
} else if (process.env.NODE_ENV !== 'production') {
|
||||
warn(
|
||||
`v-slot shorthand syntax requires a slot name.`,
|
||||
binding
|
||||
)
|
||||
}
|
||||
}
|
||||
return dynamicArgRE.test(name)
|
||||
// dynamic [name]
|
||||
? { name: name.slice(1, -1), dynamic: true }
|
||||
// static name
|
||||
: { name: `"${name}"`, dynamic: false }
|
||||
}
|
||||
|
||||
// handle <slot/> outlets
|
||||
function processSlotOutlet (el) {
|
||||
if (el.tag === 'slot') {
|
||||
el.slotName = getBindingAttr(el, 'name')
|
||||
if (process.env.NODE_ENV !== 'production' && el.key) {
|
||||
warn(
|
||||
`\`key\` does not work on <slot> because slots are abstract outlets ` +
|
||||
`and can possibly expand into multiple elements. ` +
|
||||
`Use the key on a wrapping element instead.`,
|
||||
getRawBindingAttr(el, 'key')
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function processComponent (el) {
|
||||
let binding
|
||||
if ((binding = getBindingAttr(el, 'is'))) {
|
||||
el.component = binding
|
||||
}
|
||||
if (getAndRemoveAttr(el, 'inline-template') != null) {
|
||||
el.inlineTemplate = true
|
||||
}
|
||||
}
|
||||
|
||||
function processAttrs (el) {
|
||||
const list = el.attrsList
|
||||
let i, l, name, rawName, value, modifiers, syncGen, isDynamic
|
||||
for (i = 0, l = list.length; i < l; i++) {
|
||||
name = rawName = list[i].name
|
||||
value = list[i].value
|
||||
if (dirRE.test(name)) {
|
||||
// mark element as dynamic
|
||||
el.hasBindings = true
|
||||
// modifiers
|
||||
modifiers = parseModifiers(name.replace(dirRE, ''))
|
||||
// support .foo shorthand syntax for the .prop modifier
|
||||
if (process.env.VBIND_PROP_SHORTHAND && propBindRE.test(name)) {
|
||||
(modifiers || (modifiers = {})).prop = true
|
||||
name = `.` + name.slice(1).replace(modifierRE, '')
|
||||
} else if (modifiers) {
|
||||
name = name.replace(modifierRE, '')
|
||||
}
|
||||
if (bindRE.test(name)) { // v-bind
|
||||
name = name.replace(bindRE, '')
|
||||
value = parseFilters(value)
|
||||
isDynamic = dynamicArgRE.test(name)
|
||||
if (isDynamic) {
|
||||
name = name.slice(1, -1)
|
||||
}
|
||||
if (
|
||||
process.env.NODE_ENV !== 'production' &&
|
||||
value.trim().length === 0
|
||||
) {
|
||||
warn(
|
||||
`The value for a v-bind expression cannot be empty. Found in "v-bind:${name}"`
|
||||
)
|
||||
}
|
||||
if (modifiers) {
|
||||
if (modifiers.prop && !isDynamic) {
|
||||
name = camelize(name)
|
||||
if (name === 'innerHtml') name = 'innerHTML'
|
||||
}
|
||||
if (modifiers.camel && !isDynamic) {
|
||||
name = camelize(name)
|
||||
}
|
||||
if (modifiers.sync) {
|
||||
syncGen = genAssignmentCode(value, `$event`)
|
||||
if (!isDynamic) {
|
||||
addHandler(
|
||||
el,
|
||||
`update:${camelize(name)}`,
|
||||
syncGen,
|
||||
null,
|
||||
false,
|
||||
warn,
|
||||
list[i]
|
||||
)
|
||||
if (hyphenate(name) !== camelize(name)) {
|
||||
addHandler(
|
||||
el,
|
||||
`update:${hyphenate(name)}`,
|
||||
syncGen,
|
||||
null,
|
||||
false,
|
||||
warn,
|
||||
list[i]
|
||||
)
|
||||
}
|
||||
} else {
|
||||
// handler w/ dynamic event name
|
||||
addHandler(
|
||||
el,
|
||||
`"update:"+(${name})`,
|
||||
syncGen,
|
||||
null,
|
||||
false,
|
||||
warn,
|
||||
list[i],
|
||||
true // dynamic
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
if ((modifiers && modifiers.prop) || (
|
||||
!el.component && platformMustUseProp(el.tag, el.attrsMap.type, name)
|
||||
)) {
|
||||
addProp(el, name, value, list[i], isDynamic)
|
||||
} else {
|
||||
addAttr(el, name, value, list[i], isDynamic)
|
||||
}
|
||||
} else if (onRE.test(name)) { // v-on
|
||||
name = name.replace(onRE, '')
|
||||
isDynamic = dynamicArgRE.test(name)
|
||||
if (isDynamic) {
|
||||
name = name.slice(1, -1)
|
||||
}
|
||||
addHandler(el, name, value, modifiers, false, warn, list[i], isDynamic)
|
||||
} else { // normal directives
|
||||
name = name.replace(dirRE, '')
|
||||
// parse arg
|
||||
const argMatch = name.match(argRE)
|
||||
let arg = argMatch && argMatch[1]
|
||||
isDynamic = false
|
||||
if (arg) {
|
||||
name = name.slice(0, -(arg.length + 1))
|
||||
if (dynamicArgRE.test(arg)) {
|
||||
arg = arg.slice(1, -1)
|
||||
isDynamic = true
|
||||
}
|
||||
}
|
||||
addDirective(el, name, rawName, value, arg, isDynamic, modifiers, list[i])
|
||||
if (process.env.NODE_ENV !== 'production' && name === 'model') {
|
||||
checkForAliasModel(el, value)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// literal attribute
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
const res = parseText(value, delimiters)
|
||||
if (res) {
|
||||
warn(
|
||||
`${name}="${value}": ` +
|
||||
'Interpolation inside attributes has been removed. ' +
|
||||
'Use v-bind or the colon shorthand instead. For example, ' +
|
||||
'instead of <div id="{{ val }}">, use <div :id="val">.',
|
||||
list[i]
|
||||
)
|
||||
}
|
||||
}
|
||||
addAttr(el, name, JSON.stringify(value), list[i])
|
||||
// #6887 firefox doesn't update muted state if set via attribute
|
||||
// even immediately after element creation
|
||||
if (!el.component &&
|
||||
name === 'muted' &&
|
||||
platformMustUseProp(el.tag, el.attrsMap.type, name)) {
|
||||
addProp(el, name, 'true', list[i])
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function checkInFor (el: ASTElement): boolean {
|
||||
let parent = el
|
||||
while (parent) {
|
||||
if (parent.for !== undefined) {
|
||||
return true
|
||||
}
|
||||
parent = parent.parent
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
function parseModifiers (name: string): Object | void {
|
||||
const match = name.match(modifierRE)
|
||||
if (match) {
|
||||
const ret = {}
|
||||
match.forEach(m => { ret[m.slice(1)] = true })
|
||||
return ret
|
||||
}
|
||||
}
|
||||
|
||||
function makeAttrsMap (attrs: Array<Object>): Object {
|
||||
const map = {}
|
||||
for (let i = 0, l = attrs.length; i < l; i++) {
|
||||
if (
|
||||
process.env.NODE_ENV !== 'production' &&
|
||||
map[attrs[i].name] && !isIE && !isEdge
|
||||
) {
|
||||
warn('duplicate attribute: ' + attrs[i].name, attrs[i])
|
||||
}
|
||||
map[attrs[i].name] = attrs[i].value
|
||||
}
|
||||
return map
|
||||
}
|
||||
|
||||
// for script (e.g. type="x/template") or style, do not decode content
|
||||
function isTextTag (el): boolean {
|
||||
return el.tag === 'script' || el.tag === 'style'
|
||||
}
|
||||
|
||||
function isForbiddenTag (el): boolean {
|
||||
return (
|
||||
el.tag === 'style' ||
|
||||
(el.tag === 'script' && (
|
||||
!el.attrsMap.type ||
|
||||
el.attrsMap.type === 'text/javascript'
|
||||
))
|
||||
)
|
||||
}
|
||||
|
||||
const ieNSBug = /^xmlns:NS\d+/
|
||||
const ieNSPrefix = /^NS\d+:/
|
||||
|
||||
/* istanbul ignore next */
|
||||
function guardIESVGBug (attrs) {
|
||||
const res = []
|
||||
for (let i = 0; i < attrs.length; i++) {
|
||||
const attr = attrs[i]
|
||||
if (!ieNSBug.test(attr.name)) {
|
||||
attr.name = attr.name.replace(ieNSPrefix, '')
|
||||
res.push(attr)
|
||||
}
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
function checkForAliasModel (el, value) {
|
||||
let _el = el
|
||||
while (_el) {
|
||||
if (_el.for && _el.alias === value) {
|
||||
warn(
|
||||
`<${el.tag} v-model="${value}">: ` +
|
||||
`You are binding v-model directly to a v-for iteration alias. ` +
|
||||
`This will not be able to modify the v-for source array because ` +
|
||||
`writing to the alias is like modifying a function local variable. ` +
|
||||
`Consider using an array of objects and use v-model on an object property instead.`,
|
||||
el.rawAttrsMap['v-model']
|
||||
)
|
||||
}
|
||||
_el = _el.parent
|
||||
}
|
||||
}
|
53
express-server/node_modules/vue/src/compiler/parser/text-parser.js
generated
vendored
Normal file
53
express-server/node_modules/vue/src/compiler/parser/text-parser.js
generated
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
/* @flow */
|
||||
|
||||
import { cached } from 'shared/util'
|
||||
import { parseFilters } from './filter-parser'
|
||||
|
||||
const defaultTagRE = /\{\{((?:.|\r?\n)+?)\}\}/g
|
||||
const regexEscapeRE = /[-.*+?^${}()|[\]\/\\]/g
|
||||
|
||||
const buildRegex = cached(delimiters => {
|
||||
const open = delimiters[0].replace(regexEscapeRE, '\\$&')
|
||||
const close = delimiters[1].replace(regexEscapeRE, '\\$&')
|
||||
return new RegExp(open + '((?:.|\\n)+?)' + close, 'g')
|
||||
})
|
||||
|
||||
type TextParseResult = {
|
||||
expression: string,
|
||||
tokens: Array<string | { '@binding': string }>
|
||||
}
|
||||
|
||||
export function parseText (
|
||||
text: string,
|
||||
delimiters?: [string, string]
|
||||
): TextParseResult | void {
|
||||
const tagRE = delimiters ? buildRegex(delimiters) : defaultTagRE
|
||||
if (!tagRE.test(text)) {
|
||||
return
|
||||
}
|
||||
const tokens = []
|
||||
const rawTokens = []
|
||||
let lastIndex = tagRE.lastIndex = 0
|
||||
let match, index, tokenValue
|
||||
while ((match = tagRE.exec(text))) {
|
||||
index = match.index
|
||||
// push text token
|
||||
if (index > lastIndex) {
|
||||
rawTokens.push(tokenValue = text.slice(lastIndex, index))
|
||||
tokens.push(JSON.stringify(tokenValue))
|
||||
}
|
||||
// tag token
|
||||
const exp = parseFilters(match[1].trim())
|
||||
tokens.push(`_s(${exp})`)
|
||||
rawTokens.push({ '@binding': exp })
|
||||
lastIndex = index + match[0].length
|
||||
}
|
||||
if (lastIndex < text.length) {
|
||||
rawTokens.push(tokenValue = text.slice(lastIndex))
|
||||
tokens.push(JSON.stringify(tokenValue))
|
||||
}
|
||||
return {
|
||||
expression: tokens.join('+'),
|
||||
tokens: rawTokens
|
||||
}
|
||||
}
|
114
express-server/node_modules/vue/src/compiler/to-function.js
generated
vendored
Normal file
114
express-server/node_modules/vue/src/compiler/to-function.js
generated
vendored
Normal file
@ -0,0 +1,114 @@
|
||||
/* @flow */
|
||||
|
||||
import { noop, extend } from 'shared/util'
|
||||
import { warn as baseWarn, tip } from 'core/util/debug'
|
||||
import { generateCodeFrame } from './codeframe'
|
||||
|
||||
type CompiledFunctionResult = {
|
||||
render: Function;
|
||||
staticRenderFns: Array<Function>;
|
||||
};
|
||||
|
||||
function createFunction (code, errors) {
|
||||
try {
|
||||
return new Function(code)
|
||||
} catch (err) {
|
||||
errors.push({ err, code })
|
||||
return noop
|
||||
}
|
||||
}
|
||||
|
||||
export function createCompileToFunctionFn (compile: Function): Function {
|
||||
const cache = Object.create(null)
|
||||
|
||||
return function compileToFunctions (
|
||||
template: string,
|
||||
options?: CompilerOptions,
|
||||
vm?: Component
|
||||
): CompiledFunctionResult {
|
||||
options = extend({}, options)
|
||||
const warn = options.warn || baseWarn
|
||||
delete options.warn
|
||||
|
||||
/* istanbul ignore if */
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
// detect possible CSP restriction
|
||||
try {
|
||||
new Function('return 1')
|
||||
} catch (e) {
|
||||
if (e.toString().match(/unsafe-eval|CSP/)) {
|
||||
warn(
|
||||
'It seems you are using the standalone build of Vue.js in an ' +
|
||||
'environment with Content Security Policy that prohibits unsafe-eval. ' +
|
||||
'The template compiler cannot work in this environment. Consider ' +
|
||||
'relaxing the policy to allow unsafe-eval or pre-compiling your ' +
|
||||
'templates into render functions.'
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// check cache
|
||||
const key = options.delimiters
|
||||
? String(options.delimiters) + template
|
||||
: template
|
||||
if (cache[key]) {
|
||||
return cache[key]
|
||||
}
|
||||
|
||||
// compile
|
||||
const compiled = compile(template, options)
|
||||
|
||||
// check compilation errors/tips
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if (compiled.errors && compiled.errors.length) {
|
||||
if (options.outputSourceRange) {
|
||||
compiled.errors.forEach(e => {
|
||||
warn(
|
||||
`Error compiling template:\n\n${e.msg}\n\n` +
|
||||
generateCodeFrame(template, e.start, e.end),
|
||||
vm
|
||||
)
|
||||
})
|
||||
} else {
|
||||
warn(
|
||||
`Error compiling template:\n\n${template}\n\n` +
|
||||
compiled.errors.map(e => `- ${e}`).join('\n') + '\n',
|
||||
vm
|
||||
)
|
||||
}
|
||||
}
|
||||
if (compiled.tips && compiled.tips.length) {
|
||||
if (options.outputSourceRange) {
|
||||
compiled.tips.forEach(e => tip(e.msg, vm))
|
||||
} else {
|
||||
compiled.tips.forEach(msg => tip(msg, vm))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// turn code into functions
|
||||
const res = {}
|
||||
const fnGenErrors = []
|
||||
res.render = createFunction(compiled.render, fnGenErrors)
|
||||
res.staticRenderFns = compiled.staticRenderFns.map(code => {
|
||||
return createFunction(code, fnGenErrors)
|
||||
})
|
||||
|
||||
// check function generation errors.
|
||||
// this should only happen if there is a bug in the compiler itself.
|
||||
// mostly for codegen development use
|
||||
/* istanbul ignore if */
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) {
|
||||
warn(
|
||||
`Failed to generate render function:\n\n` +
|
||||
fnGenErrors.map(({ err, code }) => `${err.toString()} in\n\n${code}\n`).join('\n'),
|
||||
vm
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
return (cache[key] = res)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user