vue2/packages/vue-server-renderer/build.js

6064 lines
154 KiB
JavaScript
Raw Normal View History

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
2016-10-13 17:27:27 +08:00
var he = require('he');
2016-08-30 03:49:00 +08:00
/* */
2017-04-26 18:32:30 +08:00
// these helpers produces better vm code in JS engines due to their
// explicitness and function inlining
function isUndef (v) {
return v === undefined || v === null
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
function isDef (v) {
return v !== undefined && v !== null
2016-08-30 03:49:00 +08:00
}
2017-04-26 18:32:30 +08:00
function isTrue (v) {
return v === true
}
2016-08-30 03:49:00 +08:00
/**
2017-04-26 18:32:30 +08:00
* Check if value is primitive
2016-08-30 03:49:00 +08:00
*/
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/**
* Quick object check - this is primarily used to tell
* Objects from primitive values when we know the value
* is a JSON-compliant type.
*/
function isObject (obj) {
return obj !== null && typeof obj === 'object'
}
2017-02-24 12:22:20 +08:00
2017-05-02 15:58:34 +08:00
var _toString = Object.prototype.toString;
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/**
* Strict object type check. Only returns true
* for plain JavaScript objects.
*/
function isPlainObject (obj) {
2017-05-02 15:58:34 +08:00
return _toString.call(obj) === '[object Object]'
2017-02-24 12:22:20 +08:00
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
/**
* Convert a value to a string that is actually rendered.
*/
2017-04-26 18:32:30 +08:00
/**
* Convert a input value to a number for persistence.
* If the conversion fails, return original string.
*/
2017-04-26 18:32:30 +08:00
/**
* Make a map and return a function for checking if a key
* is in that map.
*/
2016-08-30 03:49:00 +08:00
function makeMap (
str,
expectsLowerCase
) {
2016-10-12 12:54:06 +08:00
var map = Object.create(null);
var list = str.split(',');
for (var i = 0; i < list.length; i++) {
2016-10-12 12:54:06 +08:00
map[list[i]] = true;
}
2016-08-30 03:49:00 +08:00
return expectsLowerCase
? function (val) { return map[val.toLowerCase()]; }
: function (val) { return map[val]; }
}
/**
* Check if a tag is a built-in tag.
*/
2016-10-12 12:54:06 +08:00
var isBuiltInTag = makeMap('slot,component', true);
/**
* Remove an item from an array
*/
2016-08-30 03:49:00 +08:00
function remove (arr, item) {
if (arr.length) {
2016-10-12 12:54:06 +08:00
var index = arr.indexOf(item);
if (index > -1) {
2016-08-30 03:49:00 +08:00
return arr.splice(index, 1)
}
}
}
/**
* Check whether the object has the property.
*/
2016-10-12 12:54:06 +08:00
var hasOwnProperty = Object.prototype.hasOwnProperty;
2016-08-30 03:49:00 +08:00
function hasOwn (obj, key) {
return hasOwnProperty.call(obj, key)
}
/**
* Create a cached version of a pure function.
*/
2016-08-30 03:49:00 +08:00
function cached (fn) {
2016-10-12 12:54:06 +08:00
var cache = Object.create(null);
2016-12-28 13:54:34 +08:00
return (function cachedFn (str) {
2016-10-12 12:54:06 +08:00
var hit = cache[str];
2016-08-30 03:49:00 +08:00
return hit || (cache[str] = fn(str))
2016-12-28 13:54:34 +08:00
})
}
/**
2017-01-17 07:48:06 +08:00
* Camelize a hyphen-delimited string.
*/
2016-10-12 12:54:06 +08:00
var camelizeRE = /-(\w)/g;
var camelize = cached(function (str) {
2016-08-30 03:49:00 +08:00
return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })
2016-10-12 12:54:06 +08:00
});
/**
* Capitalize a string.
*/
2017-04-26 18:32:30 +08:00
/**
* Hyphenate a camelCase string.
*/
2016-10-12 12:54:06 +08:00
var hyphenateRE = /([^-])([A-Z])/g;
var hyphenate = cached(function (str) {
2016-08-30 03:49:00 +08:00
return str
.replace(hyphenateRE, '$1-$2')
.replace(hyphenateRE, '$1-$2')
.toLowerCase()
2016-10-12 12:54:06 +08:00
});
/**
* Simple bind, faster than native
*/
2017-04-26 18:32:30 +08:00
/**
* Convert an Array-like object to a real Array.
*/
2017-04-26 18:32:30 +08:00
/**
* Mix properties into target object.
*/
2016-08-30 03:49:00 +08:00
function extend (to, _from) {
for (var key in _from) {
2016-10-12 12:54:06 +08:00
to[key] = _from[key];
}
2016-08-30 03:49:00 +08:00
return to
}
/**
* Merge an Array of Objects into a single Object.
*/
2016-08-30 03:49:00 +08:00
function toObject (arr) {
2016-10-12 12:54:06 +08:00
var res = {};
2016-09-13 21:21:02 +08:00
for (var i = 0; i < arr.length; i++) {
if (arr[i]) {
2016-10-12 12:54:06 +08:00
extend(res, arr[i]);
}
}
2016-08-30 03:49:00 +08:00
return res
}
/**
* Perform no operation.
*/
2016-08-30 03:49:00 +08:00
function noop () {}
/**
* Always return false.
*/
2016-10-12 12:54:06 +08:00
var no = function () { return false; };
2016-12-13 11:09:29 +08:00
/**
* Return same value
*/
var identity = function (_) { return _; };
/**
* Generate a static keys string from compiler modules.
*/
2016-08-30 03:49:00 +08:00
function genStaticKeys (modules) {
return modules.reduce(function (keys, m) {
2016-08-30 03:49:00 +08:00
return keys.concat(m.staticKeys || [])
}, []).join(',')
}
2016-09-24 06:24:49 +08:00
/**
* Check if two values are loosely equal - that is,
* if they are plain objects, do they have the same shape?
*/
2017-04-26 18:32:30 +08:00
2016-09-24 06:24:49 +08:00
2017-02-24 12:22:20 +08:00
/**
* Ensure a function is called only once.
*/
/* */
2017-04-26 18:32:30 +08:00
// these are reserved for web because they are directly compiled away
// during template compilation
var isReservedAttr = makeMap('style,class');
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// attributes that should be using props for binding
var acceptValue = makeMap('input,textarea,option,select');
var mustUseProp = function (tag, type, attr) {
return (
(attr === 'value' && acceptValue(tag)) && type !== 'button' ||
(attr === 'selected' && tag === 'option') ||
(attr === 'checked' && tag === 'input') ||
(attr === 'muted' && tag === 'video')
)
2017-02-24 12:22:20 +08:00
};
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');
2016-11-23 00:15:07 +08:00
2017-04-26 18:32:30 +08:00
var isBooleanAttr = makeMap(
'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +
'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +
'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +
'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +
'required,reversed,scoped,seamless,selected,sortable,translate,' +
'truespeed,typemustmatch,visible'
);
2016-11-23 00:15:07 +08:00
2016-08-30 03:49:00 +08:00
2016-11-24 05:00:41 +08:00
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
var isFalsyAttrValue = function (val) {
return val == null || val === false
};
2016-11-24 05:00:41 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-04-26 18:32:30 +08:00
function renderAttrs (node) {
var attrs = node.data.attrs;
var res = '';
2017-04-26 18:32:30 +08:00
var parent = node.parent;
while (isDef(parent)) {
if (isDef(parent.data) && isDef(parent.data.attrs)) {
attrs = Object.assign({}, attrs, parent.data.attrs);
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
parent = parent.parent;
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
if (isUndef(attrs)) {
return res
}
2017-04-26 18:32:30 +08:00
for (var key in attrs) {
if (key === 'style') {
// leave it to the style module
continue
}
res += renderAttr(key, attrs[key]);
2016-08-30 03:49:00 +08:00
}
2017-04-26 18:32:30 +08:00
return res
}
2017-04-26 18:32:30 +08:00
function renderAttr (key, value) {
if (isBooleanAttr(key)) {
if (!isFalsyAttrValue(value)) {
return (" " + key + "=\"" + key + "\"")
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
} else if (isEnumeratedAttr(key)) {
return (" " + key + "=\"" + (isFalsyAttrValue(value) || value === 'false' ? 'false' : 'true') + "\"")
} else if (!isFalsyAttrValue(value)) {
return (" " + key + "=\"" + (typeof value === 'string' ? he.escape(value) : value) + "\"")
2016-08-30 03:49:00 +08:00
}
2017-04-26 18:32:30 +08:00
return ''
}
2017-04-26 18:32:30 +08:00
/* */
2017-04-26 18:32:30 +08:00
var VNode = function VNode (
tag,
data,
children,
text,
elm,
context,
componentOptions
) {
this.tag = tag;
this.data = data;
this.children = children;
this.text = text;
this.elm = elm;
this.ns = undefined;
this.context = context;
this.functionalContext = undefined;
this.key = data && data.key;
this.componentOptions = componentOptions;
this.componentInstance = undefined;
this.parent = undefined;
this.raw = false;
this.isStatic = false;
this.isRootInsert = true;
this.isComment = false;
this.isCloned = false;
this.isOnce = false;
};
2017-04-26 18:32:30 +08:00
var prototypeAccessors = { child: {} };
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
// DEPRECATED: alias for componentInstance for backwards compat.
/* istanbul ignore next */
prototypeAccessors.child.get = function () {
return this.componentInstance
};
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
Object.defineProperties( VNode.prototype, prototypeAccessors );
2017-01-17 07:48:06 +08:00
2017-04-26 18:32:30 +08:00
// optimized shallow clone
// used for static nodes and slot nodes because they may be reused across
// multiple renders, cloning them avoids errors when DOM manipulations rely
// on their elm reference.
2016-08-30 03:49:00 +08:00
/* */
2017-04-26 18:32:30 +08:00
var isAttr = makeMap(
'accept,accept-charset,accesskey,action,align,alt,async,autocomplete,' +
'autofocus,autoplay,autosave,bgcolor,border,buffered,challenge,charset,' +
'checked,cite,class,code,codebase,color,cols,colspan,content,http-equiv,' +
'name,contenteditable,contextmenu,controls,coords,data,datetime,default,' +
'defer,dir,dirname,disabled,download,draggable,dropzone,enctype,method,for,' +
'form,formaction,headers,height,hidden,high,href,hreflang,http-equiv,' +
'icon,id,ismap,itemprop,keytype,kind,label,lang,language,list,loop,low,' +
'manifest,max,maxlength,media,method,GET,POST,min,multiple,email,file,' +
'muted,name,novalidate,open,optimum,pattern,ping,placeholder,poster,' +
'preload,radiogroup,readonly,rel,required,reversed,rows,rowspan,sandbox,' +
'scope,scoped,seamless,selected,shape,size,type,text,password,sizes,span,' +
'spellcheck,src,srcdoc,srclang,srcset,start,step,style,summary,tabindex,' +
'target,title,type,usemap,value,width,wrap'
);
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/* istanbul ignore next */
var isRenderableAttr = function (name) {
return (
isAttr(name) ||
name.indexOf('data-') === 0 ||
name.indexOf('aria-') === 0
)
};
var propsToAttrMap = {
acceptCharset: 'accept-charset',
className: 'class',
htmlFor: 'for',
httpEquiv: 'http-equiv'
};
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-04-26 18:32:30 +08:00
function renderDOMProps (node) {
var props = node.data.domProps;
var res = '';
var parent = node.parent;
while (isDef(parent)) {
if (parent.data && parent.data.domProps) {
props = Object.assign({}, props, parent.data.domProps);
}
parent = parent.parent;
2016-08-30 03:49:00 +08:00
}
2017-04-26 18:32:30 +08:00
if (isUndef(props)) {
return res
2016-08-30 03:49:00 +08:00
}
2017-04-26 18:32:30 +08:00
var attrs = node.data.attrs;
for (var key in props) {
if (key === 'innerHTML') {
setText(node, props[key], true);
} else if (key === 'textContent') {
setText(node, props[key], false);
} else {
var attr = propsToAttrMap[key] || key.toLowerCase();
if (isRenderableAttr(attr) &&
// avoid rendering double-bound props/attrs twice
!(isDef(attrs) && isDef(attrs[attr]))) {
res += renderAttr(attr, props[key]);
}
2016-08-30 03:49:00 +08:00
}
}
2017-04-26 18:32:30 +08:00
return res
}
2017-04-26 18:32:30 +08:00
function setText (node, text, raw) {
var child = new VNode(undefined, undefined, undefined, text);
child.raw = raw;
node.children = [child];
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
/* */
var emptyObject = Object.freeze({});
/**
* Check if a string starts with $ or _
*/
function isReserved (str) {
var c = (str + '').charCodeAt(0);
return c === 0x24 || c === 0x5F
}
/**
* Define a property.
*/
function def (obj, key, val, enumerable) {
Object.defineProperty(obj, key, {
value: val,
enumerable: !!enumerable,
writable: true,
configurable: true
});
}
/**
* Parse simple path.
*/
var bailRE = /[^\w.$]/;
function parsePath (path) {
if (bailRE.test(path)) {
return
}
var segments = path.split('.');
return function (obj) {
for (var i = 0; i < segments.length; i++) {
if (!obj) { return }
obj = obj[segments[i]];
}
return obj
2016-08-30 03:49:00 +08:00
}
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
var SSR_ATTR = 'data-server-rendered';
var ASSET_TYPES = [
'component',
'directive',
'filter'
];
var LIFECYCLE_HOOKS = [
'beforeCreate',
'created',
'beforeMount',
'mounted',
'beforeUpdate',
'updated',
'beforeDestroy',
'destroyed',
'activated',
'deactivated'
];
2016-12-02 11:01:18 +08:00
/* */
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
var config = ({
/**
* Option merge strategies (used in core/util/options)
*/
optionMergeStrategies: Object.create(null),
2017-04-26 18:32:30 +08:00
/**
* Whether to suppress warnings.
*/
silent: false,
/**
* Show production mode tip message on boot?
*/
productionTip: process.env.NODE_ENV !== 'production',
/**
* Whether to enable devtools
*/
devtools: process.env.NODE_ENV !== 'production',
/**
* Whether to record perf
*/
performance: false,
/**
* Error handler for watcher errors
*/
errorHandler: null,
/**
* Ignore certain custom elements
*/
ignoredElements: [],
/**
* Custom user key aliases for v-on
*/
keyCodes: Object.create(null),
/**
* Check if a tag is reserved so that it cannot be registered as a
* component. This is platform-dependent and may be overwritten.
*/
isReservedTag: no,
/**
* Check if an attribute is reserved so that it cannot be used as a component
* prop. This is platform-dependent and may be overwritten.
*/
isReservedAttr: no,
/**
* Check if a tag is an unknown element.
* Platform-dependent.
*/
isUnknownElement: no,
/**
* Get the namespace of an element
*/
getTagNamespace: noop,
/**
* Parse the real tag name for the specific platform.
*/
parsePlatformTagName: identity,
/**
* Check if an attribute must be bound using property, e.g. value
* Platform-dependent.
*/
mustUseProp: no,
/**
* Exposed for legacy reasons
*/
_lifecycleHooks: LIFECYCLE_HOOKS
2016-12-02 11:01:18 +08:00
});
2016-11-05 04:47:02 +08:00
2017-05-02 15:58:34 +08:00
/* */
2017-04-26 18:32:30 +08:00
var warn = noop;
var tip = noop;
2017-05-02 15:58:34 +08:00
var formatComponentName = (null); // work around flow check
2017-04-26 18:32:30 +08:00
if (process.env.NODE_ENV !== 'production') {
var hasConsole = typeof console !== 'undefined';
var classifyRE = /(?:^|[-_])(\w)/g;
var classify = function (str) { return str
.replace(classifyRE, function (c) { return c.toUpperCase(); })
.replace(/[-_]/g, ''); };
warn = function (msg, vm) {
if (hasConsole && (!config.silent)) {
console.error("[Vue warn]: " + msg + (
vm ? generateComponentTrace(vm) : ''
));
}
};
tip = function (msg, vm) {
if (hasConsole && (!config.silent)) {
console.warn("[Vue tip]: " + msg + (
vm ? generateComponentTrace(vm) : ''
));
}
};
formatComponentName = function (vm, includeFile) {
if (vm.$root === vm) {
return '<Root>'
}
var name = typeof vm === 'string'
? vm
: typeof vm === 'function' && vm.options
? vm.options.name
: vm._isVue
? vm.$options.name || vm.$options._componentTag
: vm.name;
var file = vm._isVue && vm.$options.__file;
if (!name && file) {
var match = file.match(/([^/\\]+)\.vue$/);
name = match && match[1];
}
return (
(name ? ("<" + (classify(name)) + ">") : "<Anonymous>") +
(file && includeFile !== false ? (" at " + file) : '')
)
};
var repeat = function (str, n) {
var res = '';
while (n) {
if (n % 2 === 1) { res += str; }
if (n > 1) { str += str; }
n >>= 1;
}
return res
};
var generateComponentTrace = function (vm) {
if (vm._isVue && vm.$parent) {
var tree = [];
var currentRecursiveSequence = 0;
while (vm) {
if (tree.length > 0) {
var last = tree[tree.length - 1];
if (last.constructor === vm.constructor) {
currentRecursiveSequence++;
vm = vm.$parent;
continue
} else if (currentRecursiveSequence > 0) {
tree[tree.length - 1] = [last, currentRecursiveSequence];
currentRecursiveSequence = 0;
}
}
tree.push(vm);
vm = vm.$parent;
}
return '\n\nfound in\n\n' + tree
.map(function (vm, i) { return ("" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)
? ((formatComponentName(vm[0])) + "... (" + (vm[1]) + " recursive calls)")
: formatComponentName(vm))); })
.join('\n')
} else {
return ("\n\n(found in " + (formatComponentName(vm)) + ")")
}
};
}
2017-05-02 15:58:34 +08:00
/* */
2017-04-26 18:32:30 +08:00
function handleError (err, vm, info) {
if (config.errorHandler) {
config.errorHandler.call(null, err, vm, info);
} else {
if (process.env.NODE_ENV !== 'production') {
warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm);
}
/* istanbul ignore else */
if (inBrowser && typeof console !== 'undefined') {
console.error(err);
} else {
throw err
}
}
}
2016-12-02 11:01:18 +08:00
/* */
/* globals MutationObserver */
2016-08-30 03:49:00 +08:00
2016-12-02 11:01:18 +08:00
// can we use __proto__?
var hasProto = '__proto__' in {};
2016-08-30 03:49:00 +08:00
2016-12-02 11:01:18 +08:00
// Browser environment sniffing
var inBrowser = typeof window !== 'undefined';
var UA = inBrowser && window.navigator.userAgent.toLowerCase();
var isIE = UA && /msie|trident/.test(UA);
var isIE9 = UA && UA.indexOf('msie 9.0') > 0;
var isEdge = UA && UA.indexOf('edge/') > 0;
var isAndroid = UA && UA.indexOf('android') > 0;
var isIOS = UA && /iphone|ipad|ipod|ios/.test(UA);
2017-02-24 12:22:20 +08:00
var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var supportsPassive = false;
if (inBrowser) {
try {
var opts = {};
Object.defineProperty(opts, 'passive', ({
get: function get () {
/* istanbul ignore next */
supportsPassive = true;
}
} )); // https://github.com/facebook/flow/issues/285
window.addEventListener('test-passive', null, opts);
} catch (e) {}
}
2016-12-02 11:01:18 +08:00
// this needs to be lazy-evaled because vue may be required before
// vue-server-renderer can set VUE_ENV
var _isServer;
var isServerRendering = function () {
if (_isServer === undefined) {
/* istanbul ignore if */
if (!inBrowser && typeof global !== 'undefined') {
// detect presence of vue-server-renderer and avoid
// Webpack shimming the process
_isServer = global['process'].env.VUE_ENV === 'server';
} else {
_isServer = false;
}
2016-12-02 11:01:18 +08:00
}
return _isServer
};
2016-12-02 11:01:18 +08:00
// detect devtools
var devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;
2016-08-30 03:49:00 +08:00
2016-12-02 11:01:18 +08:00
/* istanbul ignore next */
function isNative (Ctor) {
2017-04-26 18:32:30 +08:00
return typeof Ctor === 'function' && /native code/.test(Ctor.toString())
2016-12-02 11:01:18 +08:00
}
2017-02-26 12:28:14 +08:00
var hasSymbol =
typeof Symbol !== 'undefined' && isNative(Symbol) &&
typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);
/**
2016-12-02 11:01:18 +08:00
* Defer a task to execute it asynchronously.
*/
2016-12-02 11:01:18 +08:00
var nextTick = (function () {
var callbacks = [];
var pending = false;
var timerFunc;
2016-12-02 11:01:18 +08:00
function nextTickHandler () {
pending = false;
var copies = callbacks.slice(0);
callbacks.length = 0;
for (var i = 0; i < copies.length; i++) {
copies[i]();
}
}
2016-12-02 11:01:18 +08:00
// the nextTick behavior leverages the microtask queue, which can be accessed
// via either native Promise.then or MutationObserver.
// MutationObserver has wider support, however it is seriously bugged in
// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
// completely stops working after triggering a few times... so, if native
// Promise is available, we will use it:
/* istanbul ignore if */
if (typeof Promise !== 'undefined' && isNative(Promise)) {
var p = Promise.resolve();
var logError = function (err) { console.error(err); };
timerFunc = function () {
p.then(nextTickHandler).catch(logError);
// in problematic UIWebViews, Promise.then doesn't completely break, but
// it can get stuck in a weird state where callbacks are pushed into the
// microtask queue but the queue isn't being flushed, until the browser
// needs to do some other work, e.g. handle a timer. Therefore we can
// "force" the microtask queue to be flushed by adding an empty timer.
if (isIOS) { setTimeout(noop); }
};
} else if (typeof MutationObserver !== 'undefined' && (
isNative(MutationObserver) ||
// PhantomJS and iOS 7.x
MutationObserver.toString() === '[object MutationObserverConstructor]'
)) {
// use MutationObserver where native Promise is not available,
// e.g. PhantomJS IE11, iOS7, Android 4.4
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
observer.observe(textNode, {
characterData: true
});
timerFunc = function () {
counter = (counter + 1) % 2;
textNode.data = String(counter);
};
} else {
// fallback to setTimeout
/* istanbul ignore next */
timerFunc = function () {
setTimeout(nextTickHandler, 0);
};
2016-08-30 03:49:00 +08:00
}
2016-12-02 11:01:18 +08:00
return function queueNextTick (cb, ctx) {
var _resolve;
callbacks.push(function () {
2017-04-26 18:32:30 +08:00
if (cb) {
try {
cb.call(ctx);
} catch (e) {
handleError(e, ctx, 'nextTick');
}
} else if (_resolve) {
_resolve(ctx);
}
2016-12-02 11:01:18 +08:00
});
if (!pending) {
pending = true;
timerFunc();
}
if (!cb && typeof Promise !== 'undefined') {
2017-04-26 18:32:30 +08:00
return new Promise(function (resolve, reject) {
2016-12-02 11:01:18 +08:00
_resolve = resolve;
})
}
2016-08-30 03:49:00 +08:00
}
2016-12-02 11:01:18 +08:00
})();
2016-12-02 11:01:18 +08:00
var _Set;
/* istanbul ignore if */
if (typeof Set !== 'undefined' && isNative(Set)) {
// use native Set when available.
_Set = Set;
} else {
// a non-standard Set polyfill that only works with primitive keys.
_Set = (function () {
function Set () {
this.set = Object.create(null);
}
Set.prototype.has = function has (key) {
2016-12-13 11:09:29 +08:00
return this.set[key] === true
2016-12-02 11:01:18 +08:00
};
Set.prototype.add = function add (key) {
2016-12-13 11:09:29 +08:00
this.set[key] = true;
2016-12-02 11:01:18 +08:00
};
Set.prototype.clear = function clear () {
this.set = Object.create(null);
};
2016-12-02 11:01:18 +08:00
return Set;
}());
}
2016-12-02 11:01:18 +08:00
/* */
2017-04-26 18:32:30 +08:00
var uid = 0;
2017-04-26 18:32:30 +08:00
/**
* A dep is an observable that can have multiple
* directives subscribing to it.
*/
var Dep = function Dep () {
this.id = uid++;
this.subs = [];
};
2017-04-26 18:32:30 +08:00
Dep.prototype.addSub = function addSub (sub) {
this.subs.push(sub);
};
2017-04-26 18:32:30 +08:00
Dep.prototype.removeSub = function removeSub (sub) {
remove(this.subs, sub);
};
Dep.prototype.depend = function depend () {
if (Dep.target) {
Dep.target.addDep(this);
}
2017-04-26 18:32:30 +08:00
};
2017-04-26 18:32:30 +08:00
Dep.prototype.notify = function notify () {
// stabilize the subscriber list first
var subs = this.subs.slice();
for (var i = 0, l = subs.length; i < l; i++) {
subs[i].update();
2016-08-21 02:04:54 +08:00
}
2017-04-26 18:32:30 +08:00
};
// the current target watcher being evaluated.
// this is globally unique because there could be only one
// watcher being evaluated at any time.
Dep.target = null;
var targetStack = [];
function pushTarget (_target) {
if (Dep.target) { targetStack.push(Dep.target); }
Dep.target = _target;
2016-10-12 12:54:06 +08:00
}
2017-04-26 18:32:30 +08:00
function popTarget () {
Dep.target = targetStack.pop();
2016-08-21 02:04:54 +08:00
}
2017-04-26 18:32:30 +08:00
/*
* not type checking this file because flow doesn't play well with
* dynamically accessing methods on Array prototype
*/
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
var arrayProto = Array.prototype;
var arrayMethods = Object.create(arrayProto);[
'push',
'pop',
'shift',
'unshift',
'splice',
'sort',
'reverse'
]
.forEach(function (method) {
// cache original method
var original = arrayProto[method];
def(arrayMethods, method, function mutator () {
var arguments$1 = arguments;
2017-03-13 16:07:58 +08:00
2017-04-26 18:32:30 +08:00
// avoid leaking arguments:
// http://jsperf.com/closure-with-arguments
var i = arguments.length;
var args = new Array(i);
while (i--) {
args[i] = arguments$1[i];
}
var result = original.apply(this, args);
var ob = this.__ob__;
var inserted;
switch (method) {
case 'push':
inserted = args;
break
case 'unshift':
inserted = args;
break
case 'splice':
inserted = args.slice(2);
break
}
if (inserted) { ob.observeArray(inserted); }
// notify change
ob.dep.notify();
return result
});
});
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
/* */
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
var arrayKeys = Object.getOwnPropertyNames(arrayMethods);
2016-11-16 07:05:02 +08:00
2016-12-02 11:01:18 +08:00
/**
2017-04-26 18:32:30 +08:00
* By default, when a reactive property is set, the new value is
* also converted to become reactive. However when passing down props,
* we don't want to force conversion because the value may be a nested value
* under a frozen data structure. Converting it would defeat the optimization.
2016-12-02 11:01:18 +08:00
*/
2017-04-26 18:32:30 +08:00
var observerState = {
shouldConvert: true,
isSettingProps: false
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/**
* Observer class that are attached to each observed
* object. Once attached, the observer converts target
* object's property keys into getter/setters that
* collect dependencies and dispatches updates.
*/
var Observer = function Observer (value) {
this.value = value;
this.dep = new Dep();
this.vmCount = 0;
def(value, '__ob__', this);
if (Array.isArray(value)) {
var augment = hasProto
? protoAugment
: copyAugment;
augment(value, arrayMethods, arrayKeys);
this.observeArray(value);
} else {
this.walk(value);
2017-03-13 16:07:58 +08:00
}
2017-04-26 18:32:30 +08:00
};
2017-03-13 16:07:58 +08:00
2017-04-26 18:32:30 +08:00
/**
* Walk through each property and convert them into
* getter/setters. This method should only be called when
* value type is Object.
*/
Observer.prototype.walk = function walk (obj) {
var keys = Object.keys(obj);
for (var i = 0; i < keys.length; i++) {
defineReactive$$1(obj, keys[i], obj[keys[i]]);
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/**
* Observe a list of Array items.
*/
Observer.prototype.observeArray = function observeArray (items) {
for (var i = 0, l = items.length; i < l; i++) {
observe(items[i]);
}
};
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
// helpers
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
/**
* Augment an target Object or Array by intercepting
* the prototype chain using __proto__
*/
function protoAugment (target, src) {
/* eslint-disable no-proto */
target.__proto__ = src;
/* eslint-enable no-proto */
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
/**
* Augment an target Object or Array by defining
* hidden properties.
*/
/* istanbul ignore next */
function copyAugment (target, src, keys) {
for (var i = 0, l = keys.length; i < l; i++) {
var key = keys[i];
def(target, key, src[key]);
}
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
/**
* Attempt to create an observer instance for a value,
* returns the new observer if successfully observed,
* or the existing observer if the value already has one.
*/
function observe (value, asRootData) {
if (!isObject(value)) {
return
}
var ob;
if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {
ob = value.__ob__;
} else if (
observerState.shouldConvert &&
!isServerRendering() &&
(Array.isArray(value) || isPlainObject(value)) &&
Object.isExtensible(value) &&
!value._isVue
) {
ob = new Observer(value);
}
if (asRootData && ob) {
ob.vmCount++;
}
return ob
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
/**
* Define a reactive property on an Object.
*/
function defineReactive$$1 (
obj,
key,
val,
customSetter
) {
var dep = new Dep();
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
var property = Object.getOwnPropertyDescriptor(obj, key);
if (property && property.configurable === false) {
return
}
2016-09-29 08:37:32 +08:00
2017-04-26 18:32:30 +08:00
// cater for pre-defined getter/setters
var getter = property && property.get;
var setter = property && property.set;
2017-04-26 18:32:30 +08:00
var childOb = observe(val);
Object.defineProperty(obj, key, {
enumerable: true,
configurable: true,
get: function reactiveGetter () {
var value = getter ? getter.call(obj) : val;
if (Dep.target) {
dep.depend();
if (childOb) {
childOb.dep.depend();
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
if (Array.isArray(value)) {
dependArray(value);
2016-12-02 11:01:18 +08:00
}
}
2017-04-26 18:32:30 +08:00
return value
2016-12-02 11:01:18 +08:00
},
2017-04-26 18:32:30 +08:00
set: function reactiveSetter (newVal) {
var value = getter ? getter.call(obj) : val;
/* eslint-disable no-self-compare */
if (newVal === value || (newVal !== newVal && value !== value)) {
2016-12-02 11:01:18 +08:00
return
}
2017-04-26 18:32:30 +08:00
/* eslint-enable no-self-compare */
if (process.env.NODE_ENV !== 'production' && customSetter) {
customSetter();
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
if (setter) {
setter.call(obj, newVal);
} else {
val = newVal;
2016-10-13 17:27:27 +08:00
}
2017-04-26 18:32:30 +08:00
childOb = observe(newVal);
dep.notify();
2016-10-13 17:27:27 +08:00
}
2016-12-02 11:01:18 +08:00
});
2016-10-13 17:27:27 +08:00
}
2017-04-26 18:32:30 +08:00
/**
* Set a property on an object. Adds the new property and
* triggers change notification if the property doesn't
* already exist.
*/
function set (target, key, val) {
if (Array.isArray(target) && typeof key === 'number') {
target.length = Math.max(target.length, key);
target.splice(key, 1, val);
return val
2016-10-13 17:27:27 +08:00
}
2017-04-26 18:32:30 +08:00
if (hasOwn(target, key)) {
target[key] = val;
return val
}
2017-04-26 18:32:30 +08:00
var ob = (target ).__ob__;
if (target._isVue || (ob && ob.vmCount)) {
process.env.NODE_ENV !== 'production' && warn(
'Avoid adding reactive properties to a Vue instance or its root $data ' +
'at runtime - declare it upfront in the data option.'
);
return val
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
if (!ob) {
target[key] = val;
return val
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
defineReactive$$1(ob.value, key, val);
ob.dep.notify();
return val
2016-12-02 11:01:18 +08:00
}
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
/**
* Delete a property and trigger change if necessary.
*/
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
/**
* Collect dependencies on array elements when the array is touched, since
* we cannot intercept array element access like property getters.
*/
function dependArray (value) {
for (var e = (void 0), i = 0, l = value.length; i < l; i++) {
e = value[i];
e && e.__ob__ && e.__ob__.dep.depend();
if (Array.isArray(e)) {
dependArray(e);
2016-12-25 00:36:15 +08:00
}
}
}
2017-04-26 18:32:30 +08:00
/* */
/**
* Option overwriting strategies are functions that handle
* how to merge a parent option value and a child option
* value into the final value.
*/
var strats = config.optionMergeStrategies;
/**
* Options with restrictions
*/
if (process.env.NODE_ENV !== 'production') {
strats.el = strats.propsData = function (parent, child, vm, key) {
if (!vm) {
warn(
"option \"" + key + "\" can only be used during instance " +
'creation with the `new` keyword.'
);
}
return defaultStrat(parent, child)
};
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
/**
* Helper that recursively merges two data objects together.
*/
function mergeData (to, from) {
if (!from) { return to }
var key, toVal, fromVal;
var keys = Object.keys(from);
for (var i = 0; i < keys.length; i++) {
key = keys[i];
toVal = to[key];
fromVal = from[key];
if (!hasOwn(to, key)) {
set(to, key, fromVal);
} else if (isPlainObject(toVal) && isPlainObject(fromVal)) {
mergeData(toVal, fromVal);
}
2016-11-16 07:05:02 +08:00
}
2017-04-26 18:32:30 +08:00
return to
2016-12-02 11:01:18 +08:00
}
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
/**
* Data
*/
strats.data = function (
parentVal,
childVal,
vm
) {
if (!vm) {
// in a Vue.extend merge, both should be functions
if (!childVal) {
return parentVal
}
if (typeof childVal !== 'function') {
process.env.NODE_ENV !== 'production' && warn(
'The "data" option should be a function ' +
'that returns a per-instance value in component ' +
'definitions.',
vm
2016-12-02 11:01:18 +08:00
);
2017-04-26 18:32:30 +08:00
return parentVal
2016-11-16 07:05:02 +08:00
}
2017-04-26 18:32:30 +08:00
if (!parentVal) {
return childVal
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
// when parentVal & childVal are both present,
// we need to return a function that returns the
// merged result of both functions... no need to
// check if parentVal is a function here because
// it has to be a function to pass previous merges.
return function mergedDataFn () {
return mergeData(
childVal.call(this),
parentVal.call(this)
)
}
} else if (parentVal || childVal) {
return function mergedInstanceDataFn () {
// instance merge
var instanceData = typeof childVal === 'function'
? childVal.call(vm)
: childVal;
var defaultData = typeof parentVal === 'function'
? parentVal.call(vm)
: undefined;
if (instanceData) {
return mergeData(instanceData, defaultData)
} else {
return defaultData
}
}
}
2017-04-26 18:32:30 +08:00
};
/**
* Hooks and props are merged as arrays.
*/
function mergeHook (
parentVal,
childVal
) {
return childVal
? parentVal
? parentVal.concat(childVal)
: Array.isArray(childVal)
? childVal
: [childVal]
: parentVal
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
LIFECYCLE_HOOKS.forEach(function (hook) {
strats[hook] = mergeHook;
});
/**
* Assets
*
* When a vm is present (instance creation), we need to do
* a three-way merge between constructor options, instance
* options and parent options.
*/
function mergeAssets (parentVal, childVal) {
var res = Object.create(parentVal || null);
return childVal
? extend(res, childVal)
: res
2016-08-30 03:49:00 +08:00
}
2017-04-26 18:32:30 +08:00
ASSET_TYPES.forEach(function (type) {
strats[type + 's'] = mergeAssets;
});
/**
* Watchers.
*
* Watchers hashes should not overwrite one
* another, so we merge them as arrays.
*/
strats.watch = function (parentVal, childVal) {
/* istanbul ignore if */
if (!childVal) { return Object.create(parentVal || null) }
if (!parentVal) { return childVal }
var ret = {};
extend(ret, parentVal);
for (var key in childVal) {
var parent = ret[key];
var child = childVal[key];
if (parent && !Array.isArray(parent)) {
parent = [parent];
2016-08-21 02:04:54 +08:00
}
2017-04-26 18:32:30 +08:00
ret[key] = parent
? parent.concat(child)
: [child];
2016-08-21 02:04:54 +08:00
}
2017-04-26 18:32:30 +08:00
return ret
};
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
/**
* Other object hashes.
*/
strats.props =
strats.methods =
strats.computed = function (parentVal, childVal) {
if (!childVal) { return Object.create(parentVal || null) }
if (!parentVal) { return childVal }
var ret = Object.create(null);
extend(ret, parentVal);
extend(ret, childVal);
return ret
};
/**
* Default strategy.
*/
var defaultStrat = function (parentVal, childVal) {
return childVal === undefined
? parentVal
: childVal
};
/**
* Merge two option objects into a new one.
* Core utility used in both instantiation and inheritance.
*/
/**
* Resolve an asset.
* This function is used because child instances need access
* to assets defined in its ancestor chain.
*/
/* */
/* */
2017-05-02 15:58:34 +08:00
/* */
2017-04-26 18:32:30 +08:00
function genClassForVnode (vnode) {
var data = vnode.data;
var parentNode = vnode;
var childNode = vnode;
while (isDef(childNode.componentInstance)) {
childNode = childNode.componentInstance._vnode;
if (childNode.data) {
data = mergeClassData(childNode.data, data);
2016-10-13 17:27:27 +08:00
}
2016-10-12 12:54:06 +08:00
}
2017-04-26 18:32:30 +08:00
while (isDef(parentNode = parentNode.parent)) {
if (parentNode.data) {
data = mergeClassData(data, parentNode.data);
}
}
return genClassFromData(data)
2016-08-21 02:04:54 +08:00
}
2017-04-26 18:32:30 +08:00
function mergeClassData (child, parent) {
return {
staticClass: concat(child.staticClass, parent.staticClass),
class: isDef(child.class)
? [child.class, parent.class]
: parent.class
}
}
2017-04-26 18:32:30 +08:00
function genClassFromData (data) {
var dynamicClass = data.class;
var staticClass = data.staticClass;
if (isDef(staticClass) || isDef(dynamicClass)) {
return concat(staticClass, stringifyClass(dynamicClass))
}
2017-04-26 18:32:30 +08:00
/* istanbul ignore next */
return ''
}
2017-04-26 18:32:30 +08:00
function concat (a, b) {
return a ? b ? (a + ' ' + b) : a : (b || '')
}
2017-04-26 18:32:30 +08:00
function stringifyClass (value) {
if (isUndef(value)) {
return ''
}
if (typeof value === 'string') {
return value
}
var res = '';
if (Array.isArray(value)) {
var stringified;
for (var i = 0, l = value.length; i < l; i++) {
if (isDef(value[i])) {
if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {
res += stringified + ' ';
}
}
}
2017-04-26 18:32:30 +08:00
return res.slice(0, -1)
}
2017-04-26 18:32:30 +08:00
if (isObject(value)) {
for (var key in value) {
if (value[key]) { res += key + ' '; }
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
return res.slice(0, -1)
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
/* istanbul ignore next */
return res
2016-12-02 11:01:18 +08:00
}
2016-08-30 03:49:00 +08:00
2016-12-02 11:01:18 +08:00
/* */
2016-08-30 03:49:00 +08:00
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
var isHTMLTag = makeMap(
'html,body,base,head,link,meta,style,title,' +
'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +
'div,dd,dl,dt,figcaption,figure,hr,img,li,main,ol,p,pre,ul,' +
'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +
's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +
'embed,object,param,source,canvas,script,noscript,del,ins,' +
'caption,col,colgroup,table,thead,tbody,td,th,tr,' +
'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +
'output,progress,select,textarea,' +
'details,dialog,menu,menuitem,summary,' +
'content,element,shadow,template'
);
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
// this map is intentionally selective, only covering SVG elements that may
// contain child elements.
var isSVG = makeMap(
'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +
'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +
'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',
true
);
2017-04-26 18:32:30 +08:00
var isPreTag = function (tag) { return tag === 'pre'; };
var isReservedTag = function (tag) {
return isHTMLTag(tag) || isSVG(tag)
};
function getTagNamespace (tag) {
if (isSVG(tag)) {
return 'svg'
}
// basic support for MathML
// note it doesn't support other MathML elements being component roots
if (tag === 'math') {
return 'math'
}
}
2017-04-26 18:32:30 +08:00
/* */
/**
* Query an element selector if it's not an element already.
*/
/* */
function renderClass (node) {
var classList = genClassForVnode(node);
if (classList !== '') {
return (" class=\"" + (he.escape(classList)) + "\"")
}
}
2017-04-26 18:32:30 +08:00
/* */
var parseStyleText = cached(function (cssText) {
var res = {};
var listDelimiter = /;(?![^(]*\))/g;
var propertyDelimiter = /:(.+)/;
cssText.split(listDelimiter).forEach(function (item) {
if (item) {
var tmp = item.split(propertyDelimiter);
tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());
}
});
return res
});
// merge static and dynamic style data on the same vnode
function normalizeStyleData (data) {
var style = normalizeStyleBinding(data.style);
// static style is pre-processed into an object during compilation
// and is always a fresh object, so it's safe to merge into it
return data.staticStyle
? extend(data.staticStyle, style)
: style
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
// normalize possible array / string values into Object
function normalizeStyleBinding (bindingStyle) {
if (Array.isArray(bindingStyle)) {
return toObject(bindingStyle)
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
if (typeof bindingStyle === 'string') {
return parseStyleText(bindingStyle)
}
2017-04-26 18:32:30 +08:00
return bindingStyle
}
2017-04-26 18:32:30 +08:00
/**
* parent component style should be after child's
* so that parent component's style could override it
*/
function getStyle (vnode, checkChild) {
var res = {};
var styleData;
if (checkChild) {
var childNode = vnode;
while (childNode.componentInstance) {
childNode = childNode.componentInstance._vnode;
if (childNode.data && (styleData = normalizeStyleData(childNode.data))) {
extend(res, styleData);
}
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
}
if ((styleData = normalizeStyleData(vnode.data))) {
extend(res, styleData);
}
var parentNode = vnode;
while ((parentNode = parentNode.parent)) {
if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {
extend(res, styleData);
2016-12-02 11:01:18 +08:00
}
2016-08-30 03:49:00 +08:00
}
2017-04-26 18:32:30 +08:00
return res
}
2016-08-30 03:49:00 +08:00
/* */
2017-04-26 18:32:30 +08:00
function genStyleText (vnode) {
var styleText = '';
var style = getStyle(vnode, false);
for (var key in style) {
var value = style[key];
var hyphenatedKey = hyphenate(key);
if (Array.isArray(value)) {
for (var i = 0, len = value.length; i < len; i++) {
styleText += hyphenatedKey + ":" + (value[i]) + ";";
}
} else {
styleText += hyphenatedKey + ":" + value + ";";
}
}
2017-04-26 18:32:30 +08:00
return styleText
}
2017-04-26 18:32:30 +08:00
function renderStyle (vnode) {
var styleText = genStyleText(vnode);
if (styleText !== '') {
return (" style=" + (JSON.stringify(he.escape(styleText))))
2017-03-09 10:32:38 +08:00
}
2017-04-26 18:32:30 +08:00
}
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
var modules = [
renderAttrs,
renderDOMProps,
renderClass,
renderStyle
];
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
function show (node, dir) {
if (!dir.value) {
var style = node.data.style || (node.data.style = {});
style.display = 'none';
}
}
2017-04-26 18:32:30 +08:00
var baseDirectives = {
show: show
};
2016-12-02 11:01:18 +08:00
/* */
2017-04-26 18:32:30 +08:00
var isUnaryTag = makeMap(
'area,base,br,col,embed,frame,hr,img,input,isindex,keygen,' +
'link,meta,param,source,track,wbr'
);
2017-04-26 18:32:30 +08:00
// Elements that you can, intentionally, leave open
// (and which close themselves)
var canBeLeftOpenTag = makeMap(
'colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source'
);
2016-12-28 13:54:34 +08:00
2017-04-26 18:32:30 +08:00
// HTML5 tags https://html.spec.whatwg.org/multipage/indices.html#elements-3
// Phrasing Content https://html.spec.whatwg.org/multipage/dom.html#phrasing-content
var isNonPhrasingTag = makeMap(
'address,article,aside,base,blockquote,body,caption,col,colgroup,dd,' +
'details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,' +
'h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,' +
'optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,' +
'title,tr,track'
);
2016-12-02 11:01:18 +08:00
/* */
2016-09-13 21:21:02 +08:00
2017-04-26 18:32:30 +08:00
var MAX_STACK_DEPTH = 1000;
2016-11-23 00:15:07 +08:00
2017-04-26 18:32:30 +08:00
function createWriteFunction (
write,
onError
2016-12-02 11:01:18 +08:00
) {
2017-04-26 18:32:30 +08:00
var stackDepth = 0;
var cachedWrite = function (text, next) {
if (text && cachedWrite.caching) {
cachedWrite.cacheBuffer[cachedWrite.cacheBuffer.length - 1] += text;
2016-08-10 12:55:30 +08:00
}
2017-04-26 18:32:30 +08:00
var waitForNext = write(text, next);
if (waitForNext !== true) {
if (stackDepth >= MAX_STACK_DEPTH) {
process.nextTick(function () {
try { next(); } catch (e) {
onError(e);
}
});
} else {
stackDepth++;
next();
stackDepth--;
}
2016-07-27 12:25:41 +08:00
}
2017-04-26 18:32:30 +08:00
};
cachedWrite.caching = false;
cachedWrite.cacheBuffer = [];
cachedWrite.componentBuffer = [];
return cachedWrite
2016-12-02 11:01:18 +08:00
}
2016-11-05 04:47:02 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-04-26 18:32:30 +08:00
/**
* Original RenderStream implementation by Sasha Aickin (@aickin)
* Licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Modified by Evan You (@yyx990803)
*/
2017-04-26 18:32:30 +08:00
var stream = require('stream');
2017-04-26 18:32:30 +08:00
var RenderStream = (function (superclass) {
function RenderStream (render) {
var this$1 = this;
2017-04-26 18:32:30 +08:00
superclass.call(this);
this.buffer = '';
this.render = render;
this.expectedSize = 0;
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
this.write = createWriteFunction(function (text, next) {
var n = this$1.expectedSize;
this$1.buffer += text;
if (this$1.buffer.length >= n) {
this$1.next = next;
this$1.pushBySize(n);
return true // we will decide when to call next
}
return false
}, function (err) {
this$1.emit('error', err);
});
this.end = function () {
// the rendering is finished; we should push out the last of the buffer.
this$1.done = true;
this$1.push(this$1.buffer);
};
}
2017-04-26 18:32:30 +08:00
if ( superclass ) RenderStream.__proto__ = superclass;
RenderStream.prototype = Object.create( superclass && superclass.prototype );
RenderStream.prototype.constructor = RenderStream;
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
RenderStream.prototype.pushBySize = function pushBySize (n) {
var bufferToPush = this.buffer.substring(0, n);
this.buffer = this.buffer.substring(n);
this.push(bufferToPush);
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
RenderStream.prototype.tryRender = function tryRender () {
try {
this.render(this.write, this.end);
} catch (e) {
this.emit('error', e);
}
};
2017-04-26 18:32:30 +08:00
RenderStream.prototype.tryNext = function tryNext () {
try {
this.next();
} catch (e) {
this.emit('error', e);
}
};
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
RenderStream.prototype._read = function _read (n) {
this.expectedSize = n;
// it's possible that the last chunk added bumped the buffer up to > 2 * n,
// which means we will need to go through multiple read calls to drain it
// down to < n.
if (isTrue(this.done)) {
this.push(null);
return
}
if (this.buffer.length >= n) {
this.pushBySize(n);
return
}
if (isUndef(this.next)) {
// start the rendering chain.
this.tryRender();
} else {
// continue with the rendering.
this.tryNext();
}
};
2017-04-26 18:32:30 +08:00
return RenderStream;
}(stream.Readable));
/* */
var isJS = function (file) { return /\.js(\?[^.]+)?$/.test(file); };
var isCSS = function (file) { return /\.css(\?[^.]+)?$/.test(file); };
/* */
var Transform = require('stream').Transform;
var TemplateStream = (function (Transform) {
function TemplateStream (
renderer,
template,
context
) {
Transform.call(this);
this.started = false;
this.renderer = renderer;
this.template = template;
this.context = context || {};
this.inject = renderer.inject;
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
if ( Transform ) TemplateStream.__proto__ = Transform;
TemplateStream.prototype = Object.create( Transform && Transform.prototype );
TemplateStream.prototype.constructor = TemplateStream;
TemplateStream.prototype._transform = function _transform (data, encoding, done) {
if (!this.started) {
this.emit('beforeStart');
this.start();
}
2017-04-26 18:32:30 +08:00
this.push(data);
done();
};
2017-04-26 18:32:30 +08:00
TemplateStream.prototype.start = function start () {
this.started = true;
this.push(this.template.head(this.context));
if (this.inject) {
// inline server-rendered head meta information
if (this.context.head) {
this.push(this.context.head);
}
// inline preload/prefetch directives for initial/async chunks
var links = this.renderer.renderResourceHints(this.context);
if (links) {
this.push(links);
}
// CSS files and inline server-rendered CSS collected by vue-style-loader
var styles = this.renderer.renderStyles(this.context);
if (styles) {
this.push(styles);
}
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
this.push(this.template.neck(this.context));
};
TemplateStream.prototype._flush = function _flush (done) {
this.emit('beforeEnd');
if (this.inject) {
// inline initial store state
var state = this.renderer.renderState(this.context);
if (state) {
this.push(state);
}
// embed scripts needed
var scripts = this.renderer.renderScripts(this.context);
if (scripts) {
this.push(scripts);
}
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
this.push(this.template.tail(this.context));
done();
};
return TemplateStream;
}(Transform));
/* */
var compile = require('lodash.template');
var compileOptions = {
escape: /{{[^{]([\s\S]+?)[^}]}}/g,
interpolate: /{{{([\s\S]+?)}}}/g
};
function parseTemplate (
template,
contentPlaceholder
) {
if ( contentPlaceholder === void 0 ) contentPlaceholder = '<!--vue-ssr-outlet-->';
if (typeof template === 'object') {
return template
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
var i = template.indexOf('</head>');
var j = template.indexOf(contentPlaceholder);
if (j < 0) {
throw new Error("Content placeholder not found in template.")
2016-11-05 04:47:02 +08:00
}
2017-04-26 18:32:30 +08:00
if (i < 0) {
i = template.indexOf('<body>');
if (i < 0) {
i = j;
}
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
return {
head: compile(template.slice(0, i), compileOptions),
neck: compile(template.slice(i, j), compileOptions),
tail: compile(template.slice(j + contentPlaceholder.length), compileOptions)
}
}
2017-04-26 18:32:30 +08:00
/* */
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
/**
* Creates a mapper that maps components used during a server-side render
* to async chunk files in the client-side build, so that we can inline them
* directly in the rendered HTML to avoid waterfall requests.
*/
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function createMapper (
clientManifest
) {
var map = createMap(clientManifest);
// map server-side moduleIds to client-side files
return function mapper (moduleIds) {
var res = new Set();
for (var i = 0; i < moduleIds.length; i++) {
var mapped = map.get(moduleIds[i]);
if (mapped) {
for (var j = 0; j < mapped.length; j++) {
res.add(mapped[j]);
}
}
2016-12-13 11:09:29 +08:00
}
2017-04-26 18:32:30 +08:00
return Array.from(res)
2016-12-13 11:09:29 +08:00
}
}
2017-04-26 18:32:30 +08:00
function createMap (clientManifest) {
var map = new Map();
Object.keys(clientManifest.modules).forEach(function (id) {
map.set(id, mapIdToFile(id, clientManifest));
});
return map
}
2017-04-26 18:32:30 +08:00
function mapIdToFile (id, clientManifest) {
var files = [];
var fileIndices = clientManifest.modules[id];
if (fileIndices) {
fileIndices.forEach(function (index) {
var file = clientManifest.all[index];
// only include async files or non-js assets
if (clientManifest.async.indexOf(file) > -1 || !(/\.js($|\?)/.test(file))) {
files.push(file);
}
});
}
return files
2016-12-14 01:22:27 +08:00
}
2017-04-26 18:32:30 +08:00
/* */
2016-12-25 00:36:15 +08:00
2017-04-26 18:32:30 +08:00
var path = require('path');
var serialize = require('serialize-javascript');
var TemplateRenderer = function TemplateRenderer (options) {
this.options = options;
this.inject = options.inject !== false;
// if no template option is provided, the renderer is created
// as a utility object for rendering assets like preload links and scripts.
this.parsedTemplate = options.template
? parseTemplate(options.template)
: null;
// extra functionality with client manifest
if (options.clientManifest) {
var clientManifest = this.clientManifest = options.clientManifest;
this.publicPath = clientManifest.publicPath.replace(/\/$/, '');
// preload/prefetch drectives
this.preloadFiles = clientManifest.initial;
this.prefetchFiles = clientManifest.async;
// initial async chunk mapping
this.mapFiles = createMapper(clientManifest);
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
};
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
TemplateRenderer.prototype.bindRenderFns = function bindRenderFns (context) {
var renderer = this;['ResourceHints', 'State', 'Scripts', 'Styles'].forEach(function (type) {
context[("render" + type)] = renderer[("render" + type)].bind(renderer, context);
});
// also expose getPreloadFiles, useful for HTTP/2 push
context.getPreloadFiles = renderer.getPreloadFiles.bind(renderer, context);
};
2017-04-26 18:32:30 +08:00
// render synchronously given rendered app content and render context
TemplateRenderer.prototype.renderSync = function renderSync (content, context) {
var template = this.parsedTemplate;
if (!template) {
throw new Error('renderSync cannot be called without a template.')
2016-12-25 00:36:15 +08:00
}
2017-04-26 18:32:30 +08:00
context = context || {};
if (this.inject) {
return (
template.head(context) +
(context.head || '') +
this.renderResourceHints(context) +
this.renderStyles(context) +
template.neck(context) +
content +
this.renderState(context) +
this.renderScripts(context) +
template.tail(context)
)
} else {
return (
template.head(context) +
template.neck(context) +
content +
template.tail(context)
)
}
2017-04-26 18:32:30 +08:00
};
2017-04-26 18:32:30 +08:00
TemplateRenderer.prototype.renderStyles = function renderStyles (context) {
var this$1 = this;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var cssFiles = this.clientManifest
? this.clientManifest.all.filter(isCSS)
: [];
return (
// render links for css files
(cssFiles.length
? cssFiles.map(function (file) { return ("<link rel=\"stylesheet\" href=\"" + (this$1.publicPath) + "/" + file + "\">"); }).join('')
: '') +
// context.styles is a getter exposed by vue-style-loader which contains
// the inline component styles collected during SSR
(context.styles || '')
)
};
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
TemplateRenderer.prototype.renderResourceHints = function renderResourceHints (context) {
return this.renderPreloadLinks(context) + this.renderPrefetchLinks(context)
};
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
TemplateRenderer.prototype.getPreloadFiles = function getPreloadFiles (context) {
var usedAsyncFiles = this.getUsedAsyncFiles(context);
if (this.preloadFiles || usedAsyncFiles) {
return (this.preloadFiles || []).concat(usedAsyncFiles || []).map(function (file) {
var withoutQuery = file.replace(/\?.*/, '');
var extension = path.extname(withoutQuery).slice(1);
return {
file: file,
extension: extension,
fileWithoutQuery: withoutQuery,
asType: getPreloadType(extension)
}
})
} else {
return []
}
};
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
TemplateRenderer.prototype.renderPreloadLinks = function renderPreloadLinks (context) {
var this$1 = this;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var files = this.getPreloadFiles(context);
if (files.length) {
return files.map(function (ref) {
var file = ref.file;
var extension = ref.extension;
var fileWithoutQuery = ref.fileWithoutQuery;
var asType = ref.asType;
var extra = '';
var shouldPreload = this$1.options.shouldPreload;
// by default, we only preload scripts or css
if (!shouldPreload && asType !== 'script' && asType !== 'style') {
return ''
}
// user wants to explicitly control what to preload
if (shouldPreload && !shouldPreload(fileWithoutQuery, asType)) {
return ''
}
if (asType === 'font') {
extra = " type=\"font/" + extension + "\" crossorigin";
}
return ("<link rel=\"preload\" href=\"" + (this$1.publicPath) + "/" + file + "\"" + (asType !== '' ? (" as=\"" + asType + "\"") : '') + extra + ">")
}).join('')
} else {
return ''
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
TemplateRenderer.prototype.renderPrefetchLinks = function renderPrefetchLinks (context) {
var this$1 = this;
if (this.prefetchFiles) {
var usedAsyncFiles = this.getUsedAsyncFiles(context);
var alreadyRendered = function (file) {
return usedAsyncFiles && usedAsyncFiles.some(function (f) { return f === file; })
};
return this.prefetchFiles.map(function (file) {
if (!alreadyRendered(file)) {
return ("<link rel=\"prefetch\" href=\"" + (this$1.publicPath) + "/" + file + "\" as=\"script\">")
} else {
return ''
}
2017-04-26 18:32:30 +08:00
}).join('')
} else {
return ''
}
2017-04-26 18:32:30 +08:00
};
2017-04-26 18:32:30 +08:00
TemplateRenderer.prototype.renderState = function renderState (context, options) {
var ref = options || {};
var contextKey = ref.contextKey; if ( contextKey === void 0 ) contextKey = 'state';
var windowKey = ref.windowKey; if ( windowKey === void 0 ) windowKey = '__INITIAL_STATE__';
return context[contextKey]
? ("<script>window." + windowKey + "=" + (serialize(context[contextKey], { isJSON: true })) + "</script>")
: ''
};
TemplateRenderer.prototype.renderScripts = function renderScripts (context) {
var this$1 = this;
if (this.clientManifest) {
var initial = this.clientManifest.initial;
var async = this.getUsedAsyncFiles(context);
var needed = [initial[0]].concat(async || [], initial.slice(1));
return needed.filter(isJS).map(function (file) {
return ("<script src=\"" + (this$1.publicPath) + "/" + file + "\"></script>")
}).join('')
} else {
return ''
2017-03-09 10:32:38 +08:00
}
2017-04-26 18:32:30 +08:00
};
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
TemplateRenderer.prototype.getUsedAsyncFiles = function getUsedAsyncFiles (context) {
if (!context._mappedfiles && context._registeredComponents && this.mapFiles) {
context._mappedFiles = this.mapFiles(Array.from(context._registeredComponents));
}
return context._mappedFiles
};
2017-04-26 18:32:30 +08:00
// create a transform stream
TemplateRenderer.prototype.createStream = function createStream (context) {
if (!this.parsedTemplate) {
throw new Error('createStream cannot be called without a template.')
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
return new TemplateStream(this, this.parsedTemplate, context || {})
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function getPreloadType (ext) {
if (ext === 'js') {
return 'script'
} else if (ext === 'css') {
return 'style'
} else if (/jpe?g|png|svg|gif|webp|ico/.test(ext)) {
return 'image'
} else if (/woff2?|ttf|otf|eot/.test(ext)) {
return 'font'
} else {
// not exhausting all possbilities here, but above covers common cases
return ''
2017-02-25 08:01:09 +08:00
}
2016-12-02 11:01:18 +08:00
}
2016-12-02 11:01:18 +08:00
/* */
2017-04-26 18:32:30 +08:00
var RenderContext = function RenderContext (options) {
this.userContext = options.userContext;
this.activeInstance = options.activeInstance;
this.renderStates = [];
2017-04-26 18:32:30 +08:00
this.write = options.write;
this.done = options.done;
this.renderNode = options.renderNode;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
this.isUnaryTag = options.isUnaryTag;
this.modules = options.modules;
this.directives = options.directives;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var cache = options.cache;
if (cache && (!cache.get || !cache.set)) {
throw new Error('renderer cache must implement at least get & set.')
}
this.cache = cache;
this.get = cache && normalizeAsync(cache, 'get');
this.has = cache && normalizeAsync(cache, 'has');
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
this.next = this.next.bind(this);
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
RenderContext.prototype.next = function next () {
var lastState = this.renderStates[this.renderStates.length - 1];
if (isUndef(lastState)) {
return this.done()
}
switch (lastState.type) {
case 'Element':
var children = lastState.children;
var total = lastState.total;
var rendered = lastState.rendered++;
if (rendered < total) {
this.renderNode(children[rendered], false, this);
} else {
this.renderStates.pop();
this.write(lastState.endTag, this.next);
}
break
case 'Component':
this.renderStates.pop();
this.activeInstance = lastState.prevActive;
this.next();
break
case 'ComponentWithCache':
this.renderStates.pop();
var buffer = lastState.buffer;
var bufferIndex = lastState.bufferIndex;
var componentBuffer = lastState.componentBuffer;
var key = lastState.key;
var result = {
html: buffer[bufferIndex],
components: componentBuffer[bufferIndex]
};
this.cache.set(key, result);
if (bufferIndex === 0) {
// this is a top-level cached component,
// exit caching mode.
this.write.caching = false;
} else {
// parent component is also being cached,
// merge self into parent's result
buffer[bufferIndex - 1] += result.html;
var prev = componentBuffer[bufferIndex - 1];
result.components.forEach(function (c) { return prev.add(c); });
}
buffer.length = bufferIndex;
componentBuffer.length = bufferIndex;
this.next();
break
}
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function normalizeAsync (cache, method) {
var fn = cache[method];
if (isUndef(fn)) {
return
} else if (fn.length > 1) {
return function (key, cb) { return fn.call(cache, key, cb); }
} else {
return function (key, cb) { return cb(fn.call(cache, key)); }
}
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/**
* Not type-checking this file because it's mostly vendor code.
*/
2017-04-26 18:32:30 +08:00
/*!
* 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
*/
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
// Regular Expressions for parsing tags and attributes
var singleAttrIdentifier = /([^\s"'<>/=]+)/;
var singleAttrAssign = /(?:=)/;
var singleAttrValues = [
// attr value double quotes
/"([^"]*)"+/.source,
// attr value, single quotes
/'([^']*)'+/.source,
// attr value, no quotes
/([^\s"'=<>`]+)/.source
];
var attribute = new RegExp(
'^\\s*' + singleAttrIdentifier.source +
'(?:\\s*(' + singleAttrAssign.source + ')' +
'\\s*(?:' + singleAttrValues.join('|') + '))?'
);
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
// could use https://www.w3.org/TR/1999/REC-xml-names-19990114/#NT-QName
// but for Vue templates we can enforce a simple charset
var ncname = '[a-zA-Z_][\\w\\-\\.]*';
var qnameCapture = '((?:' + ncname + '\\:)?' + ncname + ')';
var startTagOpen = new RegExp('^<' + qnameCapture);
var startTagClose = /^\s*(\/?)>/;
var endTag = new RegExp('^<\\/' + qnameCapture + '[^>]*>');
var doctype = /^<!DOCTYPE [^>]+>/i;
var comment = /^<!--/;
var conditionalComment = /^<!\[/;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var IS_REGEX_CAPTURING_BROKEN = false;
'x'.replace(/x(.)?/g, function (m, g) {
IS_REGEX_CAPTURING_BROKEN = g === '';
});
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// Special Elements (can contain anything)
var isPlainTextElement = makeMap('script,style,textarea', true);
var reCache = {};
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var decodingMap = {
'&lt;': '<',
'&gt;': '>',
'&quot;': '"',
'&amp;': '&',
'&#10;': '\n'
};
var encodedAttr = /&(?:lt|gt|quot|amp);/g;
var encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10);/g;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function decodeAttr (value, shouldDecodeNewlines) {
var re = shouldDecodeNewlines ? encodedAttrWithNewLines : encodedAttr;
return value.replace(re, function (match) { return decodingMap[match]; })
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function parseHTML (html, options) {
var stack = [];
var expectHTML = options.expectHTML;
var isUnaryTag$$1 = options.isUnaryTag || no;
var canBeLeftOpenTag$$1 = options.canBeLeftOpenTag || no;
var index = 0;
var last, lastTag;
while (html) {
last = html;
// Make sure we're not in a plaintext content element like script/style
if (!lastTag || !isPlainTextElement(lastTag)) {
var textEnd = html.indexOf('<');
if (textEnd === 0) {
// Comment:
if (comment.test(html)) {
var commentEnd = html.indexOf('-->');
2017-04-26 18:32:30 +08:00
if (commentEnd >= 0) {
advance(commentEnd + 3);
continue
}
}
2017-04-26 18:32:30 +08:00
// http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment
if (conditionalComment.test(html)) {
var conditionalEnd = html.indexOf(']>');
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
if (conditionalEnd >= 0) {
advance(conditionalEnd + 2);
continue
}
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
// Doctype:
var doctypeMatch = html.match(doctype);
if (doctypeMatch) {
advance(doctypeMatch[0].length);
continue
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
// End tag:
var endTagMatch = html.match(endTag);
if (endTagMatch) {
var curIndex = index;
advance(endTagMatch[0].length);
parseEndTag(endTagMatch[1], curIndex, index);
continue
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// Start tag:
var startTagMatch = parseStartTag();
if (startTagMatch) {
handleStartTag(startTagMatch);
continue
}
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var text = (void 0), rest$1 = (void 0), next = (void 0);
if (textEnd >= 0) {
rest$1 = html.slice(textEnd);
while (
!endTag.test(rest$1) &&
!startTagOpen.test(rest$1) &&
!comment.test(rest$1) &&
!conditionalComment.test(rest$1)
) {
// < in plain text, be forgiving and treat it as text
next = rest$1.indexOf('<', 1);
if (next < 0) { break }
textEnd += next;
rest$1 = html.slice(textEnd);
}
text = html.substring(0, textEnd);
advance(textEnd);
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
if (textEnd < 0) {
text = html;
html = '';
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
if (options.chars && text) {
options.chars(text);
}
} else {
var stackedTag = lastTag.toLowerCase();
var reStackedTag = reCache[stackedTag] || (reCache[stackedTag] = new RegExp('([\\s\\S]*?)(</' + stackedTag + '[^>]*>)', 'i'));
var endTagLength = 0;
var rest = html.replace(reStackedTag, function (all, text, endTag) {
endTagLength = endTag.length;
if (!isPlainTextElement(stackedTag) && stackedTag !== 'noscript') {
text = text
.replace(/<!--([\s\S]*?)-->/g, '$1')
.replace(/<!\[CDATA\[([\s\S]*?)]]>/g, '$1');
}
if (options.chars) {
options.chars(text);
}
return ''
});
index += html.length - rest.length;
html = rest;
parseEndTag(stackedTag, index - endTagLength, index);
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
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 + "\""));
}
break
}
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// Clean up any remaining tags
parseEndTag();
2017-04-26 18:32:30 +08:00
function advance (n) {
index += n;
html = html.substring(n);
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function parseStartTag () {
var start = html.match(startTagOpen);
if (start) {
var match = {
tagName: start[1],
attrs: [],
start: index
};
advance(start[0].length);
var end, attr;
while (!(end = html.match(startTagClose)) && (attr = html.match(attribute))) {
advance(attr[0].length);
match.attrs.push(attr);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (end) {
match.unarySlash = end[1];
advance(end[0].length);
match.end = index;
return match
2017-02-25 08:01:09 +08:00
}
}
2017-02-25 08:01:09 +08:00
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function handleStartTag (match) {
var tagName = match.tagName;
var unarySlash = match.unarySlash;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
if (expectHTML) {
if (lastTag === 'p' && isNonPhrasingTag(tagName)) {
parseEndTag(lastTag);
}
if (canBeLeftOpenTag$$1(tagName) && lastTag === tagName) {
parseEndTag(tagName);
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
var unary = isUnaryTag$$1(tagName) || tagName === 'html' && lastTag === 'head' || !!unarySlash;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var l = match.attrs.length;
var attrs = new Array(l);
for (var i = 0; i < l; i++) {
var args = match.attrs[i];
// hackish work around FF bug https://bugzilla.mozilla.org/show_bug.cgi?id=369778
if (IS_REGEX_CAPTURING_BROKEN && args[0].indexOf('""') === -1) {
if (args[3] === '') { delete args[3]; }
if (args[4] === '') { delete args[4]; }
if (args[5] === '') { delete args[5]; }
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
var value = args[3] || args[4] || args[5] || '';
attrs[i] = {
name: args[1],
value: decodeAttr(
value,
options.shouldDecodeNewlines
)
};
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (!unary) {
stack.push({ tag: tagName, lowerCasedTag: tagName.toLowerCase(), attrs: attrs });
lastTag = tagName;
2017-02-25 08:01:09 +08:00
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
if (options.start) {
options.start(tagName, attrs, unary, match.start, match.end);
2017-02-25 08:01:09 +08:00
}
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
function parseEndTag (tagName, start, end) {
var pos, lowerCasedTagName;
if (start == null) { start = index; }
if (end == null) { end = index; }
2017-04-26 18:32:30 +08:00
if (tagName) {
lowerCasedTagName = tagName.toLowerCase();
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// Find the closest opened tag of the same type
if (tagName) {
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;
2017-02-25 08:01:09 +08:00
}
2016-09-29 08:37:32 +08:00
2017-04-26 18:32:30 +08:00
if (pos >= 0) {
// Close all the open elements, up the stack
for (var 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.")
);
}
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);
}
}
2017-02-24 12:22:20 +08:00
}
2017-02-25 08:01:09 +08:00
}
2016-09-29 08:37:32 +08:00
2017-02-25 08:01:09 +08:00
/* */
2017-04-26 18:32:30 +08:00
var validDivisionCharRE = /[\w).+\-_$\]]/;
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function parseFilters (exp) {
var inSingle = false;
var inDouble = false;
var inTemplateString = false;
var inRegex = false;
var curly = 0;
var square = 0;
var paren = 0;
var lastFilterIndex = 0;
var c, prev, i, expression, filters;
2017-04-26 18:32:30 +08:00
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) { // /
var j = i - 1;
var p = (void 0);
// find first non-whitespace prev char
for (; j >= 0; j--) {
p = exp.charAt(j);
if (p !== ' ') { break }
}
if (!p || !validDivisionCharRE.test(p)) {
inRegex = true;
}
}
}
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
if (expression === undefined) {
expression = exp.slice(0, i).trim();
} else if (lastFilterIndex !== 0) {
pushFilter();
2017-02-24 12:22:20 +08:00
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function pushFilter () {
(filters || (filters = [])).push(exp.slice(lastFilterIndex, i).trim());
lastFilterIndex = i + 1;
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
if (filters) {
for (i = 0; i < filters.length; i++) {
expression = wrapFilter(expression, filters[i]);
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
return expression
}
2017-04-26 18:32:30 +08:00
function wrapFilter (exp, filter) {
var i = filter.indexOf('(');
if (i < 0) {
// _f: resolveFilter
return ("_f(\"" + filter + "\")(" + exp + ")")
} else {
var name = filter.slice(0, i);
var args = filter.slice(i + 1);
return ("_f(\"" + name + "\")(" + exp + "," + args)
2017-02-24 12:22:20 +08:00
}
2016-08-30 03:49:00 +08:00
}
/* */
2017-04-26 18:32:30 +08:00
var defaultTagRE = /\{\{((?:.|\n)+?)\}\}/g;
var regexEscapeRE = /[-.*+?^${}()|[\]\/\\]/g;
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var buildRegex = cached(function (delimiters) {
var open = delimiters[0].replace(regexEscapeRE, '\\$&');
var close = delimiters[1].replace(regexEscapeRE, '\\$&');
return new RegExp(open + '((?:.|\\n)+?)' + close, 'g')
});
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
function parseText (
text,
delimiters
) {
var tagRE = delimiters ? buildRegex(delimiters) : defaultTagRE;
if (!tagRE.test(text)) {
return
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
var tokens = [];
var lastIndex = tagRE.lastIndex = 0;
var match, index;
while ((match = tagRE.exec(text))) {
index = match.index;
// push text token
if (index > lastIndex) {
tokens.push(JSON.stringify(text.slice(lastIndex, index)));
}
// tag token
var exp = parseFilters(match[1].trim());
tokens.push(("_s(" + exp + ")"));
lastIndex = index + match[0].length;
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
if (lastIndex < text.length) {
tokens.push(JSON.stringify(text.slice(lastIndex)));
}
return tokens.join('+')
2017-02-24 12:22:20 +08:00
}
2017-02-24 12:22:20 +08:00
/* */
2017-02-25 08:01:09 +08:00
/**
* Cross-platform code generation for component v-model
*/
function genComponentModel (
el,
value,
modifiers
) {
var ref = modifiers || {};
var number = ref.number;
var trim = ref.trim;
2017-02-24 12:22:20 +08:00
2017-02-25 08:01:09 +08:00
var baseValueExpression = '$$v';
var valueExpression = baseValueExpression;
if (trim) {
valueExpression =
"(typeof " + baseValueExpression + " === 'string'" +
"? " + baseValueExpression + ".trim()" +
": " + baseValueExpression + ")";
2017-02-24 12:22:20 +08:00
}
2017-02-25 08:01:09 +08:00
if (number) {
valueExpression = "_n(" + valueExpression + ")";
}
var assignment = genAssignmentCode(value, valueExpression);
2017-02-25 08:01:09 +08:00
el.model = {
value: ("(" + value + ")"),
2017-03-09 10:32:38 +08:00
expression: ("\"" + value + "\""),
2017-02-25 08:01:09 +08:00
callback: ("function (" + baseValueExpression + ") {" + assignment + "}")
};
2017-01-17 07:48:06 +08:00
}
2016-08-02 03:31:12 +08:00
2017-02-25 08:01:09 +08:00
/**
* Cross-platform codegen helper for generating v-model value assignment code.
*/
function genAssignmentCode (
value,
assignment
) {
var modelRs = parseModel(value);
if (modelRs.idx === null) {
return (value + "=" + assignment)
} else {
return "var $$exp = " + (modelRs.exp) + ", $$idx = " + (modelRs.idx) + ";" +
"if (!Array.isArray($$exp)){" +
value + "=" + assignment + "}" +
"else{$$exp.splice($$idx, 1, " + assignment + ")}"
2017-01-17 07:48:06 +08:00
}
2016-12-02 11:01:18 +08:00
}
2017-02-25 08:01:09 +08:00
/**
* parse directive model to do the array update transform. a[idx] = val => $$a.splice($$idx, 1, val)
*
* for loop possible cases:
*
* - test
* - test[idx]
* - test[test1[idx]]
* - test["a"][idx]
* - xxx.test[a[a].test1[idx]]
* - test.xxx.a["asa"][test1[idx]]
*
*/
2016-08-30 03:49:00 +08:00
2017-02-25 08:01:09 +08:00
var len;
var str;
var chr;
var index;
var expressionPos;
var expressionEndPos;
2016-12-02 11:01:18 +08:00
2017-02-25 08:01:09 +08:00
function parseModel (val) {
str = val;
len = str.length;
index = expressionPos = expressionEndPos = 0;
2017-01-17 07:48:06 +08:00
2017-02-25 08:01:09 +08:00
if (val.indexOf('[') < 0 || val.lastIndexOf(']') < len - 1) {
return {
exp: val,
idx: null
}
2016-12-25 00:36:15 +08:00
}
2016-08-30 03:49:00 +08:00
2017-02-25 08:01:09 +08:00
while (!eof()) {
chr = next();
/* istanbul ignore if */
if (isStringStart(chr)) {
parseString(chr);
} else if (chr === 0x5B) {
parseBracket(chr);
2017-02-24 12:22:20 +08:00
}
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
2017-02-25 08:01:09 +08:00
return {
exp: val.substring(0, expressionPos),
idx: val.substring(expressionPos + 1, expressionEndPos)
}
}
2017-02-24 12:22:20 +08:00
2017-02-25 08:01:09 +08:00
function next () {
return str.charCodeAt(++index)
}
2017-02-24 12:22:20 +08:00
2017-02-25 08:01:09 +08:00
function eof () {
return index >= len
2017-01-17 07:48:06 +08:00
}
2017-02-25 08:01:09 +08:00
function isStringStart (chr) {
return chr === 0x22 || chr === 0x27
}
2017-02-25 08:01:09 +08:00
function parseBracket (chr) {
var 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
2017-02-24 12:22:20 +08:00
}
2017-01-17 07:48:06 +08:00
}
}
2016-11-05 04:47:02 +08:00
2017-02-25 08:01:09 +08:00
function parseString (chr) {
var stringQuote = chr;
while (!eof()) {
chr = next();
if (chr === stringQuote) {
break
}
}
2016-12-02 11:01:18 +08:00
}
2017-01-17 07:48:06 +08:00
/* */
2017-04-26 18:32:30 +08:00
function baseWarn (msg) {
console.error(("[Vue compiler]: " + msg));
}
2017-01-17 07:48:06 +08:00
2017-04-26 18:32:30 +08:00
function pluckModuleFunction (
modules,
key
) {
return modules
? modules.map(function (m) { return m[key]; }).filter(function (_) { return _; })
: []
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function addProp (el, name, value) {
(el.props || (el.props = [])).push({ name: name, value: value });
}
function addAttr (el, name, value) {
(el.attrs || (el.attrs = [])).push({ name: name, value: value });
}
function addDirective (
2017-02-25 08:01:09 +08:00
el,
2017-04-26 18:32:30 +08:00
name,
rawName,
value,
arg,
modifiers
2017-02-25 08:01:09 +08:00
) {
2017-04-26 18:32:30 +08:00
(el.directives || (el.directives = [])).push({ name: name, rawName: rawName, value: value, arg: arg, modifiers: modifiers });
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function addHandler (
2017-02-25 08:01:09 +08:00
el,
2017-04-26 18:32:30 +08:00
name,
2017-02-25 08:01:09 +08:00
value,
2017-04-26 18:32:30 +08:00
modifiers,
important,
warn
2017-02-25 08:01:09 +08:00
) {
2017-04-26 18:32:30 +08:00
// warn prevent and passive modifier
/* istanbul ignore if */
if (
process.env.NODE_ENV !== 'production' && warn &&
modifiers && modifiers.prevent && modifiers.passive
) {
warn(
'passive and prevent can\'t be used together. ' +
'Passive handler can\'t prevent default event.'
);
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
// check capture modifier
if (modifiers && modifiers.capture) {
delete modifiers.capture;
name = '!' + name; // mark the event as captured
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
if (modifiers && modifiers.once) {
delete modifiers.once;
name = '~' + name; // mark the event as once
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
/* istanbul ignore if */
if (modifiers && modifiers.passive) {
delete modifiers.passive;
name = '&' + name; // mark the event as passive
}
var events;
if (modifiers && modifiers.native) {
delete modifiers.native;
events = el.nativeEvents || (el.nativeEvents = {});
} else {
events = el.events || (el.events = {});
}
var newHandler = { value: value, modifiers: modifiers };
var 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;
2016-12-02 11:01:18 +08:00
}
}
2017-04-26 18:32:30 +08:00
function getBindingAttr (
el,
name,
getStatic
) {
var dynamicValue =
getAndRemoveAttr(el, ':' + name) ||
getAndRemoveAttr(el, 'v-bind:' + name);
if (dynamicValue != null) {
return parseFilters(dynamicValue)
} else if (getStatic !== false) {
var staticValue = getAndRemoveAttr(el, name);
if (staticValue != null) {
return JSON.stringify(staticValue)
}
}
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function getAndRemoveAttr (el, name) {
var val;
if ((val = el.attrsMap[name]) != null) {
var list = el.attrsList;
for (var i = 0, l = list.length; i < l; i++) {
if (list[i].name === name) {
list.splice(i, 1);
break
}
}
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
return val
2016-12-02 11:01:18 +08:00
}
2016-11-16 07:05:02 +08:00
2017-02-24 12:22:20 +08:00
/* */
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
var onRE = /^@|^v-on:/;
var dirRE = /^v-|^@|^:/;
var forAliasRE = /(.*?)\s+(?:in|of)\s+(.*)/;
var forIteratorRE = /\((\{[^}]*\}|[^,]*),([^,]*)(?:,([^,]*))?\)/;
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var argRE = /:(.*)$/;
var bindRE = /^:|^v-bind:/;
var modifierRE = /\.[^.]+/g;
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
var decodeHTMLCached = cached(he.decode);
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// configurable state
var warn$1;
var delimiters;
var transforms;
var preTransforms;
var postTransforms;
var platformIsPreTag;
var platformMustUseProp;
var platformGetTagNamespace;
2016-11-16 07:05:02 +08:00
2017-02-24 12:22:20 +08:00
/**
2017-04-26 18:32:30 +08:00
* Convert HTML string to AST.
2017-02-24 12:22:20 +08:00
*/
2017-04-26 18:32:30 +08:00
function parse (
template,
options
) {
warn$1 = options.warn || baseWarn;
platformGetTagNamespace = options.getTagNamespace || no;
platformMustUseProp = options.mustUseProp || no;
platformIsPreTag = options.isPreTag || no;
preTransforms = pluckModuleFunction(options.modules, 'preTransformNode');
transforms = pluckModuleFunction(options.modules, 'transformNode');
postTransforms = pluckModuleFunction(options.modules, 'postTransformNode');
delimiters = options.delimiters;
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
var stack = [];
var preserveWhitespace = options.preserveWhitespace !== false;
var root;
var currentParent;
var inVPre = false;
var inPre = false;
var warned = false;
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function warnOnce (msg) {
if (!warned) {
warned = true;
warn$1(msg);
}
2017-03-09 10:32:38 +08:00
}
2017-04-26 18:32:30 +08:00
function endPre (element) {
// check pre state
if (element.pre) {
inVPre = false;
}
if (platformIsPreTag(element.tag)) {
inPre = false;
2017-02-24 12:22:20 +08:00
}
2017-01-17 07:48:06 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
parseHTML(template, {
warn: warn$1,
expectHTML: options.expectHTML,
isUnaryTag: options.isUnaryTag,
canBeLeftOpenTag: options.canBeLeftOpenTag,
shouldDecodeNewlines: options.shouldDecodeNewlines,
start: function start (tag, attrs, unary) {
// check namespace.
// inherit parent ns if there is one
var ns = (currentParent && currentParent.ns) || platformGetTagNamespace(tag);
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// handle IE svg bug
/* istanbul ignore if */
if (isIE && ns === 'svg') {
attrs = guardIESVGBug(attrs);
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var element = {
type: 1,
tag: tag,
attrsList: attrs,
attrsMap: makeAttrsMap(attrs),
parent: currentParent,
children: []
};
if (ns) {
element.ns = ns;
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
if (isForbiddenTag(element) && !isServerRendering()) {
element.forbidden = true;
process.env.NODE_ENV !== 'production' && warn$1(
'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.'
);
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// apply pre-transforms
for (var i = 0; i < preTransforms.length; i++) {
preTransforms[i](element, options);
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
if (!inVPre) {
processPre(element);
if (element.pre) {
inVPre = true;
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
if (platformIsPreTag(element.tag)) {
inPre = true;
}
if (inVPre) {
processRawAttrs(element);
} else {
processFor(element);
processIf(element);
processOnce(element);
processKey(element);
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// determine whether this is a plain element after
// removing structural attributes
element.plain = !element.key && !attrs.length;
processRef(element);
processSlot(element);
processComponent(element);
for (var i$1 = 0; i$1 < transforms.length; i$1++) {
transforms[i$1](element, options);
}
processAttrs(element);
2017-02-25 08:01:09 +08:00
}
2016-11-16 07:05:02 +08:00
2017-04-26 18:32:30 +08:00
function checkRootConstraints (el) {
if (process.env.NODE_ENV !== 'production') {
if (el.tag === 'slot' || el.tag === 'template') {
warnOnce(
"Cannot use <" + (el.tag) + "> as component root element because it may " +
'contain multiple nodes.'
);
}
if (el.attrsMap.hasOwnProperty('v-for')) {
warnOnce(
'Cannot use v-for on stateful component root element because ' +
'it renders multiple elements.'
);
}
}
2017-01-17 07:48:06 +08:00
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// tree management
if (!root) {
root = element;
checkRootConstraints(root);
} else if (!stack.length) {
// allow root elements with v-if, v-else-if and v-else
if (root.if && (element.elseif || element.else)) {
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."
);
}
}
if (currentParent && !element.forbidden) {
if (element.elseif || element.else) {
processIfConditions(element, currentParent);
} else if (element.slotScope) { // scoped slot
currentParent.plain = false;
var name = element.slotTarget || '"default"';(currentParent.scopedSlots || (currentParent.scopedSlots = {}))[name] = element;
} else {
currentParent.children.push(element);
element.parent = currentParent;
}
}
if (!unary) {
currentParent = element;
stack.push(element);
} else {
endPre(element);
}
// apply post-transforms
for (var i$2 = 0; i$2 < postTransforms.length; i$2++) {
postTransforms[i$2](element, options);
}
},
end: function end () {
// remove trailing whitespace
var element = stack[stack.length - 1];
var lastNode = element.children[element.children.length - 1];
if (lastNode && lastNode.type === 3 && lastNode.text === ' ' && !inPre) {
element.children.pop();
}
// pop stack
stack.length -= 1;
currentParent = stack[stack.length - 1];
endPre(element);
},
chars: function chars (text) {
if (!currentParent) {
if (process.env.NODE_ENV !== 'production') {
if (text === template) {
warnOnce(
'Component template requires a root element, rather than just text.'
);
} else if ((text = text.trim())) {
warnOnce(
("text \"" + text + "\" outside root element will be ignored.")
);
}
}
return
}
// IE textarea placeholder bug
/* istanbul ignore if */
if (isIE &&
currentParent.tag === 'textarea' &&
currentParent.attrsMap.placeholder === text) {
return
}
var children = currentParent.children;
text = inPre || text.trim()
2017-04-27 14:22:08 +08:00
? isTextTag(currentParent) ? text : decodeHTMLCached(text)
2017-04-26 18:32:30 +08:00
// only preserve whitespace if its not right after a starting tag
: preserveWhitespace && children.length ? ' ' : '';
if (text) {
var expression;
if (!inVPre && text !== ' ' && (expression = parseText(text, delimiters))) {
children.push({
type: 2,
expression: expression,
text: text
});
} else if (text !== ' ' || !children.length || children[children.length - 1].text !== ' ') {
children.push({
type: 3,
text: text
});
}
}
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
});
return root
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
function processPre (el) {
if (getAndRemoveAttr(el, 'v-pre') != null) {
el.pre = true;
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
}
2017-04-26 18:32:30 +08:00
function processRawAttrs (el) {
var l = el.attrsList.length;
if (l) {
var attrs = el.attrs = new Array(l);
for (var i = 0; i < l; i++) {
attrs[i] = {
name: el.attrsList[i].name,
value: JSON.stringify(el.attrsList[i].value)
};
}
} else if (!el.pre) {
// non root node in pre blocks with no attributes
el.plain = true;
2017-02-24 12:22:20 +08:00
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
function processKey (el) {
var exp = getBindingAttr(el, 'key');
if (exp) {
if (process.env.NODE_ENV !== 'production' && el.tag === 'template') {
warn$1("<template> cannot be keyed. Place the key on real elements instead.");
}
el.key = exp;
}
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function processRef (el) {
var ref = getBindingAttr(el, 'ref');
if (ref) {
el.ref = ref;
el.refInFor = checkInFor(el);
2017-03-13 16:07:58 +08:00
}
}
2017-04-26 18:32:30 +08:00
function processFor (el) {
var exp;
if ((exp = getAndRemoveAttr(el, 'v-for'))) {
var inMatch = exp.match(forAliasRE);
if (!inMatch) {
process.env.NODE_ENV !== 'production' && warn$1(
("Invalid v-for expression: " + exp)
);
return
}
el.for = inMatch[2].trim();
var alias = inMatch[1].trim();
var iteratorMatch = alias.match(forIteratorRE);
if (iteratorMatch) {
el.alias = iteratorMatch[1].trim();
el.iterator1 = iteratorMatch[2].trim();
if (iteratorMatch[3]) {
el.iterator2 = iteratorMatch[3].trim();
}
} else {
el.alias = alias;
}
}
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function processIf (el) {
var 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;
}
var elseif = getAndRemoveAttr(el, 'v-else-if');
if (elseif) {
el.elseif = elseif;
}
}
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function processIfConditions (el, parent) {
var prev = findPrevElement(parent.children);
if (prev && prev.if) {
addIfCondition(prev, {
exp: el.elseif,
block: el
});
} else if (process.env.NODE_ENV !== 'production') {
warn$1(
"v-" + (el.elseif ? ('else-if="' + el.elseif + '"') : 'else') + " " +
"used on element <" + (el.tag) + "> without corresponding v-if."
);
}
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function findPrevElement (children) {
var i = children.length;
while (i--) {
if (children[i].type === 1) {
return children[i]
} else {
if (process.env.NODE_ENV !== 'production' && children[i].text !== ' ') {
warn$1(
"text \"" + (children[i].text.trim()) + "\" between v-if and v-else(-if) " +
"will be ignored."
);
}
children.pop();
}
}
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function addIfCondition (el, condition) {
if (!el.ifConditions) {
el.ifConditions = [];
}
el.ifConditions.push(condition);
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function processOnce (el) {
var once$$1 = getAndRemoveAttr(el, 'v-once');
if (once$$1 != null) {
el.once = true;
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
function processSlot (el) {
if (el.tag === 'slot') {
el.slotName = getBindingAttr(el, 'name');
if (process.env.NODE_ENV !== 'production' && el.key) {
warn$1(
"`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."
);
}
} else {
var slotTarget = getBindingAttr(el, 'slot');
if (slotTarget) {
el.slotTarget = slotTarget === '""' ? '"default"' : slotTarget;
}
if (el.tag === 'template') {
el.slotScope = getAndRemoveAttr(el, 'scope');
}
2016-12-02 11:01:18 +08:00
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
function processComponent (el) {
var binding;
if ((binding = getBindingAttr(el, 'is'))) {
el.component = binding;
}
if (getAndRemoveAttr(el, 'inline-template') != null) {
el.inlineTemplate = true;
}
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function processAttrs (el) {
var list = el.attrsList;
var i, l, name, rawName, value, modifiers, isProp;
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);
if (modifiers) {
name = name.replace(modifierRE, '');
}
if (bindRE.test(name)) { // v-bind
name = name.replace(bindRE, '');
value = parseFilters(value);
isProp = false;
if (modifiers) {
if (modifiers.prop) {
isProp = true;
name = camelize(name);
if (name === 'innerHtml') { name = 'innerHTML'; }
}
if (modifiers.camel) {
name = camelize(name);
}
if (modifiers.sync) {
addHandler(
el,
("update:" + (camelize(name))),
genAssignmentCode(value, "$event")
);
}
}
if (isProp || platformMustUseProp(el.tag, el.attrsMap.type, name)) {
addProp(el, name, value);
} else {
addAttr(el, name, value);
}
} else if (onRE.test(name)) { // v-on
name = name.replace(onRE, '');
addHandler(el, name, value, modifiers, false, warn$1);
} else { // normal directives
name = name.replace(dirRE, '');
// parse arg
var argMatch = name.match(argRE);
var arg = argMatch && argMatch[1];
if (arg) {
name = name.slice(0, -(arg.length + 1));
}
addDirective(el, name, rawName, value, arg, modifiers);
if (process.env.NODE_ENV !== 'production' && name === 'model') {
checkForAliasModel(el, value);
}
}
} else {
// literal attribute
if (process.env.NODE_ENV !== 'production') {
var expression = parseText(value, delimiters);
if (expression) {
warn$1(
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">.'
);
}
}
addAttr(el, name, JSON.stringify(value));
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
}
2016-12-25 00:36:15 +08:00
2017-04-26 18:32:30 +08:00
function checkInFor (el) {
var parent = el;
while (parent) {
if (parent.for !== undefined) {
return true
}
parent = parent.parent;
2016-12-25 00:36:15 +08:00
}
2017-04-26 18:32:30 +08:00
return false
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function parseModifiers (name) {
var match = name.match(modifierRE);
if (match) {
var ret = {};
match.forEach(function (m) { ret[m.slice(1)] = true; });
return ret
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function makeAttrsMap (attrs) {
var map = {};
for (var i = 0, l = attrs.length; i < l; i++) {
if (
process.env.NODE_ENV !== 'production' &&
map[attrs[i].name] && !isIE && !isEdge
) {
warn$1('duplicate attribute: ' + attrs[i].name);
}
map[attrs[i].name] = attrs[i].value;
}
return map
}
2017-02-24 12:22:20 +08:00
2017-04-27 14:22:08 +08:00
// for script (e.g. type="x/template") or style, do not decode content
function isTextTag (el) {
return el.tag === 'script' || el.tag === 'style'
}
2017-04-26 18:32:30 +08:00
function isForbiddenTag (el) {
return (
el.tag === 'style' ||
(el.tag === 'script' && (
!el.attrsMap.type ||
el.attrsMap.type === 'text/javascript'
))
)
2016-12-25 00:36:15 +08:00
}
2017-04-26 18:32:30 +08:00
var ieNSBug = /^xmlns:NS\d+/;
var ieNSPrefix = /^NS\d+:/;
2017-02-25 08:01:09 +08:00
/* istanbul ignore next */
2017-04-26 18:32:30 +08:00
function guardIESVGBug (attrs) {
var res = [];
for (var i = 0; i < attrs.length; i++) {
var attr = attrs[i];
if (!ieNSBug.test(attr.name)) {
attr.name = attr.name.replace(ieNSPrefix, '');
res.push(attr);
}
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
return res
2016-12-25 00:36:15 +08:00
}
2017-04-26 18:32:30 +08:00
function checkForAliasModel (el, value) {
var _el = el;
while (_el) {
if (_el.for && _el.alias === value) {
warn$1(
"<" + (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 = _el.parent;
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
}
2017-01-17 07:48:06 +08:00
2017-04-26 18:32:30 +08:00
/* */
var isStaticKey;
var isPlatformReservedTag;
var genStaticKeysCached = cached(genStaticKeys$1);
2017-02-25 08:01:09 +08:00
/**
2017-04-26 18:32:30 +08:00
* 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.
*/
function optimize (root, options) {
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);
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function genStaticKeys$1 (keys) {
return makeMap(
'type,tag,attrsList,attrsMap,plain,parent,children,attrs' +
(keys ? ',' + keys : '')
)
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function markStatic (node) {
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 (var i = 0, l = node.children.length; i < l; i++) {
var child = node.children[i];
markStatic(child);
if (!child.static) {
node.static = false;
2017-02-25 08:01:09 +08:00
}
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
}
2017-02-24 12:22:20 +08:00
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function markStaticRoots (node, isInFor) {
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 (var i = 0, l = node.children.length; i < l; i++) {
markStaticRoots(node.children[i], isInFor || !!node.for);
}
}
if (node.ifConditions) {
walkThroughConditionsBlocks(node.ifConditions, isInFor);
}
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function walkThroughConditionsBlocks (conditionBlocks, isInFor) {
for (var i = 1, len = conditionBlocks.length; i < len; i++) {
markStaticRoots(conditionBlocks[i].block, isInFor);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
}
function isStatic (node) {
if (node.type === 2) { // expression
return false
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (node.type === 3) { // text
return true
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
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)
))
2017-02-25 08:01:09 +08:00
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
function isDirectChildOfTemplateFor (node) {
while (node.parent) {
node = node.parent;
if (node.tag !== 'template') {
return false
}
if (node.for) {
return true
2016-12-02 11:01:18 +08:00
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
return false
2017-02-24 12:22:20 +08:00
}
2017-01-17 07:48:06 +08:00
2017-02-24 12:22:20 +08:00
/* */
2017-04-26 18:32:30 +08:00
var fnExpRE = /^\s*([\w$_]+|\([^)]*?\))\s*=>|^function\s*\(/;
var simplePathRE = /^\s*[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['.*?']|\[".*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*\s*$/;
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// keyCode aliases
var keyCodes = {
esc: 27,
tab: 9,
enter: 13,
space: 32,
up: 38,
left: 37,
right: 39,
down: 40,
'delete': [8, 46]
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// #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
var genGuard = function (condition) { return ("if(" + condition + ")return null;"); };
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
var modifierCode = {
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")
};
function genHandlers (
events,
native,
warn
2017-02-25 08:01:09 +08:00
) {
2017-04-26 18:32:30 +08:00
var res = native ? 'nativeOn:{' : 'on:{';
for (var name in events) {
var handler = events[name];
// #5330: warn click.right, since right clicks do not actually fire click events.
if (process.env.NODE_ENV !== 'production' &&
name === 'click' &&
handler && handler.modifiers && handler.modifiers.right
) {
warn(
"Use \"contextmenu\" instead of \"click.right\" since right clicks " +
"do not actually fire \"click\" events."
2017-02-25 08:01:09 +08:00
);
}
2017-04-26 18:32:30 +08:00
res += "\"" + name + "\":" + (genHandler(name, handler)) + ",";
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
return res.slice(0, -1) + '}'
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function genHandler (
name,
handler
) {
if (!handler) {
return 'function(){}'
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
if (Array.isArray(handler)) {
return ("[" + (handler.map(function (handler) { return genHandler(name, handler); }).join(',')) + "]")
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
var isMethodPath = simplePathRE.test(handler.value);
var isFunctionExpression = fnExpRE.test(handler.value);
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
if (!handler.modifiers) {
return isMethodPath || isFunctionExpression
? handler.value
: ("function($event){" + (handler.value) + "}") // inline statement
} else {
var code = '';
var genModifierCode = '';
var keys = [];
for (var key in handler.modifiers) {
if (modifierCode[key]) {
genModifierCode += modifierCode[key];
// left/right
if (keyCodes[key]) {
keys.push(key);
}
} 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;
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
var handlerCode = isMethodPath
? handler.value + '($event)'
: isFunctionExpression
? ("(" + (handler.value) + ")($event)")
: handler.value;
return ("function($event){" + code + handlerCode + "}")
2017-02-24 12:22:20 +08:00
}
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function genKeyFilter (keys) {
return ("if(!('button' in $event)&&" + (keys.map(genFilterCode).join('&&')) + ")return null;")
2017-01-17 07:48:06 +08:00
}
2017-04-26 18:32:30 +08:00
function genFilterCode (key) {
var keyVal = parseInt(key, 10);
if (keyVal) {
return ("$event.keyCode!==" + keyVal)
2017-01-17 07:48:06 +08:00
}
2017-04-26 18:32:30 +08:00
var alias = keyCodes[key];
return ("_k($event.keyCode," + (JSON.stringify(key)) + (alias ? ',' + JSON.stringify(alias) : '') + ")")
2017-01-17 07:48:06 +08:00
}
2017-02-25 08:01:09 +08:00
/* */
2017-04-26 18:32:30 +08:00
function bind$1 (el, dir) {
el.wrapData = function (code) {
return ("_b(" + code + ",'" + (el.tag) + "'," + (dir.value) + (dir.modifiers && dir.modifiers.prop ? ',true' : '') + ")")
};
2017-01-17 07:48:06 +08:00
}
2017-04-26 18:32:30 +08:00
/* */
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var baseDirectives$1 = {
bind: bind$1,
cloak: noop
};
2017-01-17 07:48:06 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-01-17 07:48:06 +08:00
2017-04-26 18:32:30 +08:00
// configurable state
var warn$2;
var transforms$1;
var dataGenFns;
var platformDirectives;
var isPlatformReservedTag$1;
var staticRenderFns;
var onceCount;
var currentOptions;
function generate (
ast,
options
2017-02-25 08:01:09 +08:00
) {
2017-04-26 18:32:30 +08:00
// save previous staticRenderFns so generate calls can be nested
var prevStaticRenderFns = staticRenderFns;
var currentStaticRenderFns = staticRenderFns = [];
var prevOnceCount = onceCount;
onceCount = 0;
currentOptions = options;
warn$2 = options.warn || baseWarn;
transforms$1 = pluckModuleFunction(options.modules, 'transformCode');
dataGenFns = pluckModuleFunction(options.modules, 'genData');
platformDirectives = options.directives || {};
isPlatformReservedTag$1 = options.isReservedTag || no;
var code = ast ? genElement(ast) : '_c("div")';
staticRenderFns = prevStaticRenderFns;
onceCount = prevOnceCount;
return {
render: ("with(this){return " + code + "}"),
staticRenderFns: currentStaticRenderFns
}
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
function genElement (el) {
if (el.staticRoot && !el.staticProcessed) {
return genStatic(el)
} else if (el.once && !el.onceProcessed) {
return genOnce(el)
} else if (el.for && !el.forProcessed) {
return genFor(el)
} else if (el.if && !el.ifProcessed) {
return genIf(el)
} else if (el.tag === 'template' && !el.slotTarget) {
return genChildren(el) || 'void 0'
} else if (el.tag === 'slot') {
return genSlot(el)
} else {
// component or element
var code;
if (el.component) {
code = genComponent(el.component, el);
2017-02-25 08:01:09 +08:00
} else {
2017-04-26 18:32:30 +08:00
var data = el.plain ? undefined : genData(el);
2016-11-23 00:15:07 +08:00
2017-04-26 18:32:30 +08:00
var children = el.inlineTemplate ? null : genChildren(el, true);
code = "_c('" + (el.tag) + "'" + (data ? ("," + data) : '') + (children ? ("," + children) : '') + ")";
2017-01-17 07:48:06 +08:00
}
2017-04-26 18:32:30 +08:00
// module transforms
for (var i = 0; i < transforms$1.length; i++) {
code = transforms$1[i](el, code);
}
return code
}
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
// hoist static sub-trees out
function genStatic (el) {
el.staticProcessed = true;
staticRenderFns.push(("with(this){return " + (genElement(el)) + "}"));
return ("_m(" + (staticRenderFns.length - 1) + (el.staticInFor ? ',true' : '') + ")")
}
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
// v-once
function genOnce (el) {
el.onceProcessed = true;
if (el.if && !el.ifProcessed) {
return genIf(el)
} else if (el.staticInFor) {
var key = '';
var parent = el.parent;
while (parent) {
if (parent.for) {
key = parent.key;
2017-02-25 08:01:09 +08:00
break
2017-01-17 07:48:06 +08:00
}
2017-04-26 18:32:30 +08:00
parent = parent.parent;
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (!key) {
process.env.NODE_ENV !== 'production' && warn$2(
"v-once can only be used inside v-for that is keyed. "
);
return genElement(el)
2017-01-17 07:48:06 +08:00
}
2017-04-26 18:32:30 +08:00
return ("_o(" + (genElement(el)) + "," + (onceCount++) + (key ? ("," + key) : "") + ")")
} else {
return genStatic(el)
}
}
2017-04-26 18:32:30 +08:00
function genIf (el) {
el.ifProcessed = true; // avoid recursion
return genIfConditions(el.ifConditions.slice())
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function genIfConditions (conditions) {
if (!conditions.length) {
return '_e()'
2017-02-24 12:22:20 +08:00
}
2017-01-17 07:48:06 +08:00
2017-04-26 18:32:30 +08:00
var condition = conditions.shift();
if (condition.exp) {
return ("(" + (condition.exp) + ")?" + (genTernaryExp(condition.block)) + ":" + (genIfConditions(conditions)))
} else {
return ("" + (genTernaryExp(condition.block)))
}
2017-03-09 10:32:38 +08:00
2017-04-26 18:32:30 +08:00
// v-if with v-once should generate code like (a)?_m(0):_m(1)
function genTernaryExp (el) {
return el.once ? genOnce(el) : genElement(el)
}
}
2017-04-26 18:32:30 +08:00
function genFor (el) {
var exp = el.for;
var alias = el.alias;
var iterator1 = el.iterator1 ? ("," + (el.iterator1)) : '';
var iterator2 = el.iterator2 ? ("," + (el.iterator2)) : '';
2017-04-26 18:32:30 +08:00
if (
process.env.NODE_ENV !== 'production' &&
maybeComponent(el) && el.tag !== 'slot' && el.tag !== 'template' && !el.key
) {
warn$2(
"<" + (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.",
true /* tip */
);
}
2016-10-12 12:54:06 +08:00
2017-04-26 18:32:30 +08:00
el.forProcessed = true; // avoid recursion
return "_l((" + exp + ")," +
"function(" + alias + iterator1 + iterator2 + "){" +
"return " + (genElement(el)) +
'})'
}
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
function genData (el) {
var data = '{';
2017-04-26 18:32:30 +08:00
// directives first.
// directives may mutate the el's other properties before they are generated.
var dirs = genDirectives(el);
if (dirs) { data += dirs + ','; }
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// key
if (el.key) {
data += "key:" + (el.key) + ",";
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
// ref
if (el.ref) {
data += "ref:" + (el.ref) + ",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (el.refInFor) {
data += "refInFor:true,";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// pre
if (el.pre) {
data += "pre:true,";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// record original tag name for components using "is" attribute
if (el.component) {
data += "tag:\"" + (el.tag) + "\",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// module data generation functions
for (var i = 0; i < dataGenFns.length; i++) {
data += dataGenFns[i](el);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// attributes
if (el.attrs) {
data += "attrs:{" + (genProps(el.attrs)) + "},";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// DOM props
if (el.props) {
data += "domProps:{" + (genProps(el.props)) + "},";
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
// event handlers
if (el.events) {
data += (genHandlers(el.events, false, warn$2)) + ",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (el.nativeEvents) {
data += (genHandlers(el.nativeEvents, true, warn$2)) + ",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// slot target
if (el.slotTarget) {
data += "slot:" + (el.slotTarget) + ",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// scoped slots
if (el.scopedSlots) {
data += (genScopedSlots(el.scopedSlots)) + ",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// component v-model
if (el.model) {
data += "model:{value:" + (el.model.value) + ",callback:" + (el.model.callback) + ",expression:" + (el.model.expression) + "},";
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
// inline-template
if (el.inlineTemplate) {
var inlineTemplate = genInlineTemplate(el);
if (inlineTemplate) {
data += inlineTemplate + ",";
2017-02-24 12:22:20 +08:00
}
}
2017-04-26 18:32:30 +08:00
data = data.replace(/,$/, '') + '}';
// v-bind data wrap
if (el.wrapData) {
data = el.wrapData(data);
}
return data
}
function genDirectives (el) {
var dirs = el.directives;
if (!dirs) { return }
var res = 'directives:[';
var hasRuntime = false;
var i, l, dir, needRuntime;
for (i = 0, l = dirs.length; i < l; i++) {
dir = dirs[i];
needRuntime = true;
var gen = platformDirectives[dir.name] || baseDirectives$1[dir.name];
if (gen) {
// compile-time directive that manipulates AST.
// returns true if it also needs a runtime counterpart.
needRuntime = !!gen(el, dir, warn$2);
}
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.arg) + "\"") : '') + (dir.modifiers ? (",modifiers:" + (JSON.stringify(dir.modifiers))) : '') + "},";
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
if (hasRuntime) {
return res.slice(0, -1) + ']'
}
}
2016-12-13 11:09:29 +08:00
2017-04-26 18:32:30 +08:00
function genInlineTemplate (el) {
var ast = el.children[0];
if (process.env.NODE_ENV !== 'production' && (
el.children.length > 1 || ast.type !== 1
)) {
warn$2('Inline-template components must have exactly one child element.');
}
if (ast.type === 1) {
var inlineRenderFns = generate(ast, currentOptions);
return ("inlineTemplate:{render:function(){" + (inlineRenderFns.render) + "},staticRenderFns:[" + (inlineRenderFns.staticRenderFns.map(function (code) { return ("function(){" + code + "}"); }).join(',')) + "]}")
}
}
2017-04-26 18:32:30 +08:00
function genScopedSlots (slots) {
return ("scopedSlots:_u([" + (Object.keys(slots).map(function (key) { return genScopedSlot(key, slots[key]); }).join(',')) + "])")
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function genScopedSlot (key, el) {
return "[" + key + ",function(" + (String(el.attrsMap.scope)) + "){" +
"return " + (el.tag === 'template'
? genChildren(el) || 'void 0'
: genElement(el)) + "}]"
}
2017-01-17 07:48:06 +08:00
2017-04-26 18:32:30 +08:00
function genChildren (el, checkSkip) {
var children = el.children;
if (children.length) {
var el$1 = children[0];
// optimize single v-for
if (children.length === 1 &&
el$1.for &&
el$1.tag !== 'template' &&
el$1.tag !== 'slot') {
return genElement(el$1)
}
var normalizationType = checkSkip ? getNormalizationType(children) : 0;
return ("[" + (children.map(genNode).join(',')) + "]" + (normalizationType ? ("," + normalizationType) : ''))
}
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// 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) {
var res = 0;
for (var i = 0; i < children.length; i++) {
var el = children[i];
if (el.type !== 1) {
continue
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
if (needsNormalization(el) ||
(el.ifConditions && el.ifConditions.some(function (c) { return needsNormalization(c.block); }))) {
res = 2;
break
}
if (maybeComponent(el) ||
(el.ifConditions && el.ifConditions.some(function (c) { return maybeComponent(c.block); }))) {
res = 1;
2017-01-17 07:48:06 +08:00
}
2016-12-13 11:09:29 +08:00
}
2017-04-26 18:32:30 +08:00
return res
}
2017-01-17 07:48:06 +08:00
2017-04-26 18:32:30 +08:00
function needsNormalization (el) {
return el.for !== undefined || el.tag === 'template' || el.tag === 'slot'
2016-10-13 17:27:27 +08:00
}
2017-04-26 18:32:30 +08:00
function maybeComponent (el) {
return !isPlatformReservedTag$1(el.tag)
}
function genNode (node) {
if (node.type === 1) {
return genElement(node)
} else {
return genText(node)
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
}
function genText (text) {
return ("_v(" + (text.type === 2
? text.expression // no need for () because already wrapped in _s()
: transformSpecialNewlines(JSON.stringify(text.text))) + ")")
}
function genSlot (el) {
var slotName = el.slotName || '"default"';
var children = genChildren(el);
var res = "_t(" + slotName + (children ? ("," + children) : '');
var attrs = el.attrs && ("{" + (el.attrs.map(function (a) { return ((camelize(a.name)) + ":" + (a.value)); }).join(',')) + "}");
var bind$$1 = el.attrsMap['v-bind'];
if ((attrs || bind$$1) && !children) {
res += ",null";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (attrs) {
res += "," + attrs;
}
if (bind$$1) {
res += (attrs ? '' : ',null') + "," + bind$$1;
}
return res + ')'
}
// componentName is el.component, take it as argument to shun flow's pessimistic refinement
function genComponent (componentName, el) {
var children = el.inlineTemplate ? null : genChildren(el, true);
return ("_c(" + componentName + "," + (genData(el)) + (children ? ("," + children) : '') + ")")
}
function genProps (props) {
var res = '';
for (var i = 0; i < props.length; i++) {
var prop = props[i];
res += "\"" + (prop.name) + "\":" + (transformSpecialNewlines(prop.value)) + ",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
return res.slice(0, -1)
}
// #3895, #4268
function transformSpecialNewlines (text) {
return text
.replace(/\u2028/g, '\\u2028')
.replace(/\u2029/g, '\\u2029')
2017-02-25 08:01:09 +08:00
}
/* */
2017-04-26 18:32:30 +08:00
// these keywords should not appear inside expressions, but operators like
// typeof, instanceof and in are allowed
var 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');
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// these unary operators should not be used as property/method names
var unaryOperatorsRE = new RegExp('\\b' + (
'delete,typeof,void'
).split(',').join('\\s*\\([^\\)]*\\)|\\b') + '\\s*\\([^\\)]*\\)');
// check valid identifier for v-for
var identRE = /[A-Za-z_$][\w$]*/;
// strip strings in expressions
var stripStringRE = /'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`/g;
// detect problematic expressions in a template
function detectErrors (ast) {
var errors = [];
if (ast) {
checkNode(ast, errors);
}
return errors
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
function checkNode (node, errors) {
if (node.type === 1) {
for (var name in node.attrsMap) {
if (dirRE.test(name)) {
var value = node.attrsMap[name];
if (value) {
if (name === 'v-for') {
checkFor(node, ("v-for=\"" + value + "\""), errors);
} else if (onRE.test(name)) {
checkEvent(value, (name + "=\"" + value + "\""), errors);
} else {
checkExpression(value, (name + "=\"" + value + "\""), errors);
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (node.children) {
for (var i = 0; i < node.children.length; i++) {
checkNode(node.children[i], errors);
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
} else if (node.type === 2) {
checkExpression(node.expression, node.text, errors);
}
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function checkEvent (exp, text, errors) {
var stipped = exp.replace(stripStringRE, '');
var keywordMatch = stipped.match(unaryOperatorsRE);
if (keywordMatch && stipped.charAt(keywordMatch.index - 1) !== '$') {
errors.push(
"avoid using JavaScript unary operator as property name: " +
"\"" + (keywordMatch[0]) + "\" in expression " + (text.trim())
2017-02-25 08:01:09 +08:00
);
}
2017-04-26 18:32:30 +08:00
checkExpression(exp, text, errors);
}
function checkFor (node, text, errors) {
checkExpression(node.for || '', text, errors);
checkIdentifier(node.alias, 'v-for alias', text, errors);
checkIdentifier(node.iterator1, 'v-for iterator', text, errors);
checkIdentifier(node.iterator2, 'v-for iterator', text, errors);
}
function checkIdentifier (ident, type, text, errors) {
if (typeof ident === 'string' && !identRE.test(ident)) {
errors.push(("invalid " + type + " \"" + ident + "\" in expression: " + (text.trim())));
}
}
function checkExpression (exp, text, errors) {
try {
new Function(("return " + exp));
} catch (e) {
var keywordMatch = exp.replace(stripStringRE, '').match(prohibitedKeywordRE);
if (keywordMatch) {
errors.push(
"avoid using JavaScript keyword as property name: " +
"\"" + (keywordMatch[0]) + "\" in expression " + (text.trim())
2017-02-25 08:01:09 +08:00
);
2017-04-26 18:32:30 +08:00
} else {
errors.push(("invalid expression: " + (text.trim())));
2017-02-25 08:01:09 +08:00
}
}
}
2017-04-26 18:32:30 +08:00
/* */
function baseCompile (
template,
options
) {
var ast = parse(template.trim(), options);
optimize(ast, options);
var code = generate(ast, options);
return {
ast: ast,
render: code.render,
staticRenderFns: code.staticRenderFns
}
}
function makeFunction (code, errors) {
2017-03-24 12:53:32 +08:00
try {
2017-04-26 18:32:30 +08:00
return new Function(code)
} catch (err) {
errors.push({ err: err, code: code });
return noop
2017-03-24 12:53:32 +08:00
}
}
2017-04-26 18:32:30 +08:00
function createCompiler (baseOptions) {
var functionCompileCache = Object.create(null);
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function compile (
template,
options
) {
var finalOptions = Object.create(baseOptions);
var errors = [];
var tips = [];
finalOptions.warn = function (msg, tip$$1) {
(tip$$1 ? tips : errors).push(msg);
};
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
if (options) {
// 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),
options.directives
2017-03-27 10:46:09 +08:00
);
2017-04-26 18:32:30 +08:00
}
// copy other options
for (var key in options) {
if (key !== 'modules' && key !== 'directives') {
finalOptions[key] = options[key];
}
2017-03-27 10:46:09 +08:00
}
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var compiled = baseCompile(template, finalOptions);
if (process.env.NODE_ENV !== 'production') {
errors.push.apply(errors, detectErrors(compiled.ast));
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
compiled.errors = errors;
compiled.tips = tips;
return compiled
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
function compileToFunctions (
template,
options,
vm
) {
options = options || {};
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/* 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.'
);
}
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
// check cache
var key = options.delimiters
? String(options.delimiters) + template
: template;
if (functionCompileCache[key]) {
return functionCompileCache[key]
}
// compile
var compiled = compile(template, options);
// check compilation errors/tips
2017-02-25 08:01:09 +08:00
if (process.env.NODE_ENV !== 'production') {
2017-04-26 18:32:30 +08:00
if (compiled.errors && compiled.errors.length) {
warn(
"Error compiling template:\n\n" + template + "\n\n" +
compiled.errors.map(function (e) { return ("- " + e); }).join('\n') + '\n',
2017-02-25 08:01:09 +08:00
vm
);
}
2017-04-26 18:32:30 +08:00
if (compiled.tips && compiled.tips.length) {
compiled.tips.forEach(function (msg) { return tip(msg, vm); });
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
// turn code into functions
var res = {};
var fnGenErrors = [];
res.render = makeFunction(compiled.render, fnGenErrors);
var l = compiled.staticRenderFns.length;
res.staticRenderFns = new Array(l);
for (var i = 0; i < l; i++) {
res.staticRenderFns[i] = makeFunction(compiled.staticRenderFns[i], 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(function (ref) {
var err = ref.err;
var code = ref.code;
return ((err.toString()) + " in\n\n" + code + "\n");
}).join('\n'),
vm
);
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
return (functionCompileCache[key] = res)
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
return {
compile: compile,
compileToFunctions: compileToFunctions
2017-02-25 08:01:09 +08:00
}
}
/* */
2017-04-26 18:32:30 +08:00
function transformNode (el, options) {
var warn = options.warn || baseWarn;
var staticClass = getAndRemoveAttr(el, 'class');
if (process.env.NODE_ENV !== 'production' && staticClass) {
var expression = parseText(staticClass, options.delimiters);
if (expression) {
warn(
"class=\"" + staticClass + "\": " +
'Interpolation inside attributes has been removed. ' +
'Use v-bind or the colon shorthand instead. For example, ' +
'instead of <div class="{{ val }}">, use <div :class="val">.'
2017-03-13 16:07:58 +08:00
);
}
}
2017-04-26 18:32:30 +08:00
if (staticClass) {
el.staticClass = JSON.stringify(staticClass);
}
var classBinding = getBindingAttr(el, 'class', false /* getStatic */);
if (classBinding) {
el.classBinding = classBinding;
}
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function genData$1 (el) {
var data = '';
if (el.staticClass) {
data += "staticClass:" + (el.staticClass) + ",";
}
if (el.classBinding) {
data += "class:" + (el.classBinding) + ",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
return data
}
var klass = {
staticKeys: ['staticClass'],
transformNode: transformNode,
genData: genData$1
};
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function transformNode$1 (el, options) {
var warn = options.warn || baseWarn;
var staticStyle = getAndRemoveAttr(el, 'style');
if (staticStyle) {
/* istanbul ignore if */
2017-02-25 08:01:09 +08:00
if (process.env.NODE_ENV !== 'production') {
2017-04-26 18:32:30 +08:00
var expression = parseText(staticStyle, options.delimiters);
if (expression) {
warn(
"style=\"" + staticStyle + "\": " +
'Interpolation inside attributes has been removed. ' +
'Use v-bind or the colon shorthand instead. For example, ' +
'instead of <div style="{{ val }}">, use <div :style="val">.'
);
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
el.staticStyle = JSON.stringify(parseStyleText(staticStyle));
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
var styleBinding = getBindingAttr(el, 'style', false /* getStatic */);
if (styleBinding) {
el.styleBinding = styleBinding;
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
function genData$2 (el) {
var data = '';
if (el.staticStyle) {
data += "staticStyle:" + (el.staticStyle) + ",";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (el.styleBinding) {
data += "style:(" + (el.styleBinding) + "),";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
return data
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
var style = {
staticKeys: ['staticStyle'],
transformNode: transformNode$1,
genData: genData$2
};
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var modules$1 = [
klass,
style
];
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var warn$3;
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// in some cases, the event used has to be determined at runtime
// so we used some reserved tokens during compile.
var RANGE_TOKEN = '__r';
var CHECKBOX_RADIO_TOKEN = '__c';
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function model (
el,
dir,
_warn
) {
warn$3 = _warn;
var value = dir.value;
var modifiers = dir.modifiers;
var tag = el.tag;
var type = el.attrsMap.type;
2017-04-26 18:32:30 +08:00
if (process.env.NODE_ENV !== 'production') {
var dynamicType = el.attrsMap['v-bind:type'] || el.attrsMap[':type'];
if (tag === 'input' && dynamicType) {
warn$3(
"<input :type=\"" + dynamicType + "\" v-model=\"" + value + "\">:\n" +
"v-model does not support dynamic input types. Use v-if branches instead."
);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// inputs with type="file" are read only and setting the input's
// value will throw an error.
if (tag === 'input' && type === 'file') {
warn$3(
"<" + (el.tag) + " v-model=\"" + value + "\" type=\"file\">:\n" +
"File inputs are read only. Use a v-on:change listener instead."
);
2017-02-25 08:01:09 +08:00
}
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
if (tag === 'select') {
genSelect(el, value, modifiers);
} else if (tag === 'input' && type === 'checkbox') {
genCheckboxModel(el, value, modifiers);
} else if (tag === 'input' && type === 'radio') {
genRadioModel(el, value, modifiers);
} else if (tag === 'input' || tag === 'textarea') {
genDefaultModel(el, value, modifiers);
} else if (!config.isReservedTag(tag)) {
genComponentModel(el, value, modifiers);
// component v-model doesn't need extra runtime
return false
} else if (process.env.NODE_ENV !== 'production') {
warn$3(
"<" + (el.tag) + " v-model=\"" + value + "\">: " +
"v-model is not supported on this element type. " +
'If you are working with contenteditable, it\'s recommended to ' +
'wrap a library dedicated for that purpose inside a custom component.'
);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// ensure runtime directive metadata
return true
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
function genCheckboxModel (
el,
value,
modifiers
) {
var number = modifiers && modifiers.number;
var valueBinding = getBindingAttr(el, 'value') || 'null';
var trueValueBinding = getBindingAttr(el, 'true-value') || 'true';
var falseValueBinding = getBindingAttr(el, 'false-value') || 'false';
addProp(el, 'checked',
"Array.isArray(" + value + ")" +
"?_i(" + value + "," + valueBinding + ")>-1" + (
trueValueBinding === 'true'
? (":(" + value + ")")
: (":_q(" + value + "," + trueValueBinding + ")")
)
);
addHandler(el, CHECKBOX_RADIO_TOKEN,
"var $$a=" + value + "," +
'$$el=$event.target,' +
"$$c=$$el.checked?(" + trueValueBinding + "):(" + falseValueBinding + ");" +
'if(Array.isArray($$a)){' +
"var $$v=" + (number ? '_n(' + valueBinding + ')' : valueBinding) + "," +
'$$i=_i($$a,$$v);' +
"if($$c){$$i<0&&(" + value + "=$$a.concat($$v))}" +
"else{$$i>-1&&(" + value + "=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}" +
"}else{" + (genAssignmentCode(value, '$$c')) + "}",
null, true
);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
function genRadioModel (
el,
value,
modifiers
) {
var number = modifiers && modifiers.number;
var valueBinding = getBindingAttr(el, 'value') || 'null';
valueBinding = number ? ("_n(" + valueBinding + ")") : valueBinding;
addProp(el, 'checked', ("_q(" + value + "," + valueBinding + ")"));
addHandler(el, CHECKBOX_RADIO_TOKEN, genAssignmentCode(value, valueBinding), null, true);
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function genSelect (
el,
value,
modifiers
2017-02-25 08:01:09 +08:00
) {
2017-04-26 18:32:30 +08:00
var number = modifiers && modifiers.number;
var selectedVal = "Array.prototype.filter" +
".call($event.target.options,function(o){return o.selected})" +
".map(function(o){var val = \"_value\" in o ? o._value : o.value;" +
"return " + (number ? '_n(val)' : 'val') + "})";
var assignment = '$event.target.multiple ? $$selectedVal : $$selectedVal[0]';
var code = "var $$selectedVal = " + selectedVal + ";";
code = code + " " + (genAssignmentCode(value, assignment));
addHandler(el, 'change', code, null, true);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
function genDefaultModel (
el,
value,
modifiers
2017-02-25 08:01:09 +08:00
) {
2017-04-26 18:32:30 +08:00
var type = el.attrsMap.type;
var ref = modifiers || {};
var lazy = ref.lazy;
var number = ref.number;
var trim = ref.trim;
var needCompositionGuard = !lazy && type !== 'range';
var event = lazy
? 'change'
: type === 'range'
? RANGE_TOKEN
: 'input';
var valueExpression = '$event.target.value';
if (trim) {
valueExpression = "$event.target.value.trim()";
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (number) {
valueExpression = "_n(" + valueExpression + ")";
}
2017-04-26 18:32:30 +08:00
var code = genAssignmentCode(value, valueExpression);
if (needCompositionGuard) {
code = "if($event.target.composing)return;" + code;
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
addProp(el, 'value', ("(" + value + ")"));
addHandler(el, event, code, null, true);
if (trim || number || type === 'number') {
addHandler(el, 'blur', '$forceUpdate()');
2017-01-17 07:48:06 +08:00
}
}
2017-02-25 08:01:09 +08:00
/* */
2017-04-26 18:32:30 +08:00
function text (el, dir) {
if (dir.value) {
addProp(el, 'textContent', ("_s(" + (dir.value) + ")"));
2017-01-17 07:48:06 +08:00
}
}
2016-11-05 04:47:02 +08:00
2017-02-25 08:01:09 +08:00
/* */
2017-04-26 18:32:30 +08:00
function html (el, dir) {
if (dir.value) {
addProp(el, 'innerHTML', ("_s(" + (dir.value) + ")"));
2016-12-02 11:01:18 +08:00
}
}
2017-04-26 18:32:30 +08:00
var directives = {
model: model,
text: text,
html: html
};
2017-02-25 08:01:09 +08:00
/* */
2017-04-26 18:32:30 +08:00
var baseOptions = {
expectHTML: true,
modules: modules$1,
directives: directives,
isPreTag: isPreTag,
isUnaryTag: isUnaryTag,
mustUseProp: mustUseProp,
canBeLeftOpenTag: canBeLeftOpenTag,
isReservedTag: isReservedTag,
getTagNamespace: getTagNamespace,
staticKeys: genStaticKeys(modules$1)
};
2017-04-26 18:32:30 +08:00
var ref$1 = createCompiler(baseOptions);
var compileToFunctions = ref$1.compileToFunctions;
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/* not type checking this file because flow doesn't play well with Proxy */
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
var initProxy;
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
if (process.env.NODE_ENV !== 'production') {
var allowedGlobals = makeMap(
'Infinity,undefined,NaN,isFinite,isNaN,' +
'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +
'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +
'require' // for Webpack/Browserify
);
var warnNonPresent = function (target, key) {
warn(
"Property or method \"" + key + "\" is not defined on the instance but " +
"referenced during render. Make sure to declare reactive data " +
"properties in the data option.",
target
);
};
var hasProxy =
typeof Proxy !== 'undefined' &&
Proxy.toString().match(/native code/);
if (hasProxy) {
var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta');
config.keyCodes = new Proxy(config.keyCodes, {
set: function set (target, key, value) {
if (isBuiltInModifier(key)) {
warn(("Avoid overwriting built-in modifier in config.keyCodes: ." + key));
return false
2017-02-25 08:01:09 +08:00
} else {
2017-04-26 18:32:30 +08:00
target[key] = value;
return true
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
});
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
var hasHandler = {
has: function has (target, key) {
var has = key in target;
var isAllowed = allowedGlobals(key) || key.charAt(0) === '_';
if (!has && !isAllowed) {
warnNonPresent(target, key);
}
return has || !isAllowed
}
};
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
var getHandler = {
get: function get (target, key) {
if (typeof key === 'string' && !(key in target)) {
warnNonPresent(target, key);
}
return target[key]
}
};
2017-04-26 18:32:30 +08:00
initProxy = function initProxy (vm) {
if (hasProxy) {
// determine which proxy handler to use
var options = vm.$options;
var handlers = options.render && options.render._withStripped
? getHandler
: hasHandler;
vm._renderProxy = new Proxy(vm, handlers);
} else {
vm._renderProxy = vm;
}
};
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
var mark;
var measure;
if (process.env.NODE_ENV !== 'production') {
var perf = inBrowser && window.performance;
/* istanbul ignore if */
if (
perf &&
perf.mark &&
perf.measure &&
perf.clearMarks &&
perf.clearMeasures
) {
mark = function (tag) { return perf.mark(tag); };
measure = function (name, startTag, endTag) {
perf.measure(name, startTag, endTag);
perf.clearMarks(startTag);
perf.clearMarks(endTag);
perf.clearMeasures(name);
};
2017-02-24 12:22:20 +08:00
}
}
2017-04-26 18:32:30 +08:00
/* */
2017-02-24 12:22:20 +08:00
/* */
2017-04-26 18:32:30 +08:00
/* */
2017-04-26 18:32:30 +08:00
/* */
2017-04-26 18:32:30 +08:00
// The template compiler attempts to minimize the need for normalization by
// statically analyzing the template at compile time.
//
// For plain HTML markup, normalization can be completely skipped because the
// generated render function is guaranteed to return Array<VNode>. There are
// two cases where extra normalization is needed:
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// 1. When the children contains components - because a functional component
// may return an Array instead of a single root. In this case, just a simple
// normalization is needed - if any child is an Array, we flatten the whole
// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep
// because functional components already normalize their own children.
2016-11-05 04:47:02 +08:00
2017-04-26 18:32:30 +08:00
// 2. When the children contains constructs that always generated nested Arrays,
// e.g. <template>, <slot>, v-for, or when the children is provided by user
// with hand-written render functions / JSX. In such cases a full normalization
// is needed to cater to all possible types of children values.
2016-11-05 04:47:02 +08:00
2017-02-25 08:01:09 +08:00
/* */
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-03-24 12:53:32 +08:00
2017-04-26 18:32:30 +08:00
/* */
/* */
/* */
/**
* Runtime helper for resolving raw children VNodes into a slot object.
*/
2017-02-24 12:22:20 +08:00
/* */
2017-03-24 12:53:32 +08:00
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function isInInactiveTree (vm) {
while (vm && (vm = vm.$parent)) {
if (vm._inactive) { return true }
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
return false
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function activateChildComponent (vm, direct) {
if (direct) {
vm._directInactive = false;
if (isInInactiveTree(vm)) {
return
}
} else if (vm._directInactive) {
return
}
if (vm._inactive || vm._inactive === null) {
vm._inactive = false;
for (var i = 0; i < vm.$children.length; i++) {
activateChildComponent(vm.$children[i]);
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
callHook(vm, 'activated');
2016-12-02 11:01:18 +08:00
}
2016-11-05 04:47:02 +08:00
}
2017-04-26 18:32:30 +08:00
function callHook (vm, hook) {
var handlers = vm.$options[hook];
if (handlers) {
for (var i = 0, j = handlers.length; i < j; i++) {
try {
handlers[i].call(vm);
} catch (e) {
handleError(e, vm, (hook + " hook"));
2017-02-25 08:01:09 +08:00
}
}
2016-11-05 04:47:02 +08:00
}
2017-04-26 18:32:30 +08:00
if (vm._hasHookEvent) {
vm.$emit('hook:' + hook);
2016-11-16 07:05:02 +08:00
}
2016-11-05 04:47:02 +08:00
}
/* */
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
var MAX_UPDATE_COUNT = 100;
var queue = [];
var activatedChildren = [];
var has = {};
var circular = {};
var waiting = false;
var flushing = false;
var index$1 = 0;
2016-08-30 03:49:00 +08:00
2017-02-25 08:01:09 +08:00
/**
2017-04-26 18:32:30 +08:00
* Reset the scheduler's state.
2017-02-25 08:01:09 +08:00
*/
2017-04-26 18:32:30 +08:00
function resetSchedulerState () {
queue.length = activatedChildren.length = 0;
has = {};
if (process.env.NODE_ENV !== 'production') {
circular = {};
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
waiting = flushing = false;
2016-08-30 03:49:00 +08:00
}
2016-12-02 11:01:18 +08:00
/**
2017-04-26 18:32:30 +08:00
* Flush both queues and run the watchers.
2016-12-02 11:01:18 +08:00
*/
2017-04-26 18:32:30 +08:00
function flushSchedulerQueue () {
flushing = true;
var watcher, id;
// Sort queue before flush.
// This ensures that:
// 1. Components are updated from parent to child. (because parent is always
// created before the child)
// 2. A component's user watchers are run before its render watcher (because
// user watchers are created before the render watcher)
// 3. If a component is destroyed during a parent component's watcher run,
// its watchers can be skipped.
queue.sort(function (a, b) { return a.id - b.id; });
// do not cache length because more watchers might be pushed
// as we run existing watchers
for (index$1 = 0; index$1 < queue.length; index$1++) {
watcher = queue[index$1];
id = watcher.id;
has[id] = null;
watcher.run();
// in dev build, check and stop circular updates.
if (process.env.NODE_ENV !== 'production' && has[id] != null) {
circular[id] = (circular[id] || 0) + 1;
if (circular[id] > MAX_UPDATE_COUNT) {
warn(
'You may have an infinite update loop ' + (
watcher.user
? ("in watcher with expression \"" + (watcher.expression) + "\"")
: "in a component render function."
),
watcher.vm
);
break
2017-02-24 12:22:20 +08:00
}
}
2016-12-02 11:01:18 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// keep copies of post queues before resetting state
var activatedQueue = activatedChildren.slice();
var updatedQueue = queue.slice();
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
resetSchedulerState();
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
// call component updated and activated hooks
callActivatedHooks(activatedQueue);
callUpdateHooks(updatedQueue);
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// devtool hook
2017-02-25 08:01:09 +08:00
/* istanbul ignore if */
2017-04-26 18:32:30 +08:00
if (devtools && config.devtools) {
devtools.emit('flush');
}
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function callUpdateHooks (queue) {
var i = queue.length;
while (i--) {
var watcher = queue[i];
var vm = watcher.vm;
if (vm._watcher === watcher && vm._isMounted) {
callHook(vm, 'updated');
2017-02-25 08:01:09 +08:00
}
2016-09-28 05:08:27 +08:00
}
}
2016-12-02 11:01:18 +08:00
/**
2017-04-26 18:32:30 +08:00
* Queue a kept-alive component that was activated during patch.
* The queue will be processed after the entire tree has been patched.
2016-12-02 11:01:18 +08:00
*/
2017-04-26 18:32:30 +08:00
function callActivatedHooks (queue) {
for (var i = 0; i < queue.length; i++) {
queue[i]._inactive = true;
activateChildComponent(queue[i], true /* true */);
2017-02-24 12:22:20 +08:00
}
2016-12-02 11:01:18 +08:00
}
2017-02-24 12:22:20 +08:00
/**
2017-04-26 18:32:30 +08:00
* Push a watcher into the watcher queue.
* Jobs with duplicate IDs will be skipped unless it's
* pushed when the queue is being flushed.
2017-02-24 12:22:20 +08:00
*/
2017-04-26 18:32:30 +08:00
function queueWatcher (watcher) {
var id = watcher.id;
if (has[id] == null) {
has[id] = true;
if (!flushing) {
queue.push(watcher);
} else {
// if already flushing, splice the watcher based on its id
// if already past its id, it will be run next immediately.
var i = queue.length - 1;
while (i >= 0 && queue[i].id > watcher.id) {
i--;
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
queue.splice(Math.max(i, index$1) + 1, 0, watcher);
}
// queue the flush
if (!waiting) {
waiting = true;
nextTick(flushSchedulerQueue);
2017-02-24 12:22:20 +08:00
}
2016-12-02 11:01:18 +08:00
}
2017-02-25 08:01:09 +08:00
}
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/* */
var uid$2 = 0;
2017-02-25 08:01:09 +08:00
/**
2017-04-26 18:32:30 +08:00
* A watcher parses an expression, collects dependencies,
* and fires callback when the expression value changes.
* This is used for both the $watch() api and directives.
2017-02-25 08:01:09 +08:00
*/
2017-04-26 18:32:30 +08:00
var Watcher = function Watcher (
vm,
expOrFn,
cb,
options
2017-02-25 08:01:09 +08:00
) {
2017-04-26 18:32:30 +08:00
this.vm = vm;
vm._watchers.push(this);
// options
if (options) {
this.deep = !!options.deep;
this.user = !!options.user;
this.lazy = !!options.lazy;
this.sync = !!options.sync;
} else {
this.deep = this.user = this.lazy = this.sync = false;
}
2017-04-26 18:32:30 +08:00
this.cb = cb;
this.id = ++uid$2; // uid for batching
this.active = true;
this.dirty = this.lazy; // for lazy watchers
this.deps = [];
this.newDeps = [];
this.depIds = new _Set();
this.newDepIds = new _Set();
this.expression = process.env.NODE_ENV !== 'production'
? expOrFn.toString()
: '';
// parse expression for getter
if (typeof expOrFn === 'function') {
this.getter = expOrFn;
} else {
this.getter = parsePath(expOrFn);
if (!this.getter) {
this.getter = function () {};
process.env.NODE_ENV !== 'production' && warn(
"Failed watching path: \"" + expOrFn + "\" " +
'Watcher only accepts simple dot-delimited paths. ' +
'For full control, use a function instead.',
vm
);
}
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
this.value = this.lazy
? undefined
: this.get();
};
/**
* Evaluate the getter, and re-collect dependencies.
*/
Watcher.prototype.get = function get () {
pushTarget(this);
var value;
var vm = this.vm;
if (this.user) {
try {
value = this.getter.call(vm, vm);
} catch (e) {
handleError(e, vm, ("getter for watcher \"" + (this.expression) + "\""));
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
} else {
value = this.getter.call(vm, vm);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
// "touch" every property so they are all tracked as
// dependencies for deep watching
if (this.deep) {
traverse(value);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
popTarget();
this.cleanupDeps();
return value
};
2016-11-05 04:47:02 +08:00
2017-02-25 08:01:09 +08:00
/**
2017-04-26 18:32:30 +08:00
* Add a dependency to this directive.
2017-02-25 08:01:09 +08:00
*/
2017-04-26 18:32:30 +08:00
Watcher.prototype.addDep = function addDep (dep) {
var id = dep.id;
if (!this.newDepIds.has(id)) {
this.newDepIds.add(id);
this.newDeps.push(dep);
if (!this.depIds.has(id)) {
dep.addSub(this);
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
};
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
/**
* Clean up for dependency collection.
*/
Watcher.prototype.cleanupDeps = function cleanupDeps () {
var this$1 = this;
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
var i = this.deps.length;
while (i--) {
var dep = this$1.deps[i];
if (!this$1.newDepIds.has(dep.id)) {
dep.removeSub(this$1);
}
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
var tmp = this.depIds;
this.depIds = this.newDepIds;
this.newDepIds = tmp;
this.newDepIds.clear();
tmp = this.deps;
this.deps = this.newDeps;
this.newDeps = tmp;
this.newDeps.length = 0;
};
2016-12-02 11:01:18 +08:00
2017-02-25 08:01:09 +08:00
/**
2017-04-26 18:32:30 +08:00
* Subscriber interface.
* Will be called when a dependency changes.
2017-02-25 08:01:09 +08:00
*/
2017-04-26 18:32:30 +08:00
Watcher.prototype.update = function update () {
/* istanbul ignore else */
if (this.lazy) {
this.dirty = true;
} else if (this.sync) {
this.run();
} else {
queueWatcher(this);
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
};
2016-12-02 11:01:18 +08:00
2017-02-25 08:01:09 +08:00
/**
2017-04-26 18:32:30 +08:00
* Scheduler job interface.
* Will be called by the scheduler.
2017-02-25 08:01:09 +08:00
*/
2017-04-26 18:32:30 +08:00
Watcher.prototype.run = function run () {
if (this.active) {
var value = this.get();
if (
value !== this.value ||
// Deep watchers and watchers on Object/Arrays should fire even
// when the value is the same, because the value may
// have mutated.
isObject(value) ||
this.deep
) {
// set new value
var oldValue = this.value;
this.value = value;
if (this.user) {
try {
this.cb.call(this.vm, value, oldValue);
} catch (e) {
handleError(e, this.vm, ("callback for watcher \"" + (this.expression) + "\""));
}
} else {
this.cb.call(this.vm, value, oldValue);
}
2017-02-25 08:01:09 +08:00
}
}
2017-04-26 18:32:30 +08:00
};
/**
* Evaluate the value of the watcher.
* This only gets called for lazy watchers.
*/
Watcher.prototype.evaluate = function evaluate () {
this.value = this.get();
this.dirty = false;
};
/**
* Depend on all deps collected by this watcher.
*/
Watcher.prototype.depend = function depend () {
var this$1 = this;
var i = this.deps.length;
while (i--) {
this$1.deps[i].depend();
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
};
/**
* Remove self from all dependencies' subscriber list.
*/
Watcher.prototype.teardown = function teardown () {
var this$1 = this;
if (this.active) {
// remove self from vm's watcher list
// this is a somewhat expensive operation so we skip it
// if the vm is being destroyed.
if (!this.vm._isBeingDestroyed) {
remove(this.vm._watchers, this);
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
var i = this.deps.length;
while (i--) {
this$1.deps[i].removeSub(this$1);
}
this.active = false;
2017-02-24 12:22:20 +08:00
}
2017-04-26 18:32:30 +08:00
};
2016-12-02 11:01:18 +08:00
2017-02-25 08:01:09 +08:00
/**
2017-04-26 18:32:30 +08:00
* Recursively traverse an object to evoke all converted
* getters, so that every nested property inside the object
* is collected as a "deep" dependency.
2017-02-25 08:01:09 +08:00
*/
2017-04-26 18:32:30 +08:00
var seenObjects = new _Set();
function traverse (val) {
seenObjects.clear();
_traverse(val, seenObjects);
2017-02-24 12:22:20 +08:00
}
2016-12-02 11:01:18 +08:00
2017-04-26 18:32:30 +08:00
function _traverse (val, seen) {
var i, keys;
var isA = Array.isArray(val);
if ((!isA && !isObject(val)) || !Object.isExtensible(val)) {
return
2016-12-02 11:01:18 +08:00
}
2017-04-26 18:32:30 +08:00
if (val.__ob__) {
var depId = val.__ob__.dep.id;
if (seen.has(depId)) {
return
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
seen.add(depId);
2017-02-25 08:01:09 +08:00
}
2017-04-26 18:32:30 +08:00
if (isA) {
i = val.length;
while (i--) { _traverse(val[i], seen); }
2017-02-25 08:01:09 +08:00
} else {
2017-04-26 18:32:30 +08:00
keys = Object.keys(val);
i = keys.length;
while (i--) { _traverse(val[keys[i]], seen); }
}
}
2017-02-25 08:01:09 +08:00
/* */
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
var sharedPropertyDefinition = {
enumerable: true,
configurable: true,
get: noop,
set: noop
2017-02-25 08:01:09 +08:00
};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
function proxy (target, sourceKey, key) {
sharedPropertyDefinition.get = function proxyGetter () {
return this[sourceKey][key]
};
sharedPropertyDefinition.set = function proxySetter (val) {
this[sourceKey][key] = val;
};
Object.defineProperty(target, key, sharedPropertyDefinition);
}
2016-08-30 03:49:00 +08:00
2017-02-24 12:22:20 +08:00
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
function getData (data, vm) {
try {
return data.call(vm)
} catch (e) {
handleError(e, vm, "data()");
return {}
}
}
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
// wrapper function for providing a more flexible interface
// without getting yelled at by flow
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/**
* Runtime helper for rendering v-for lists.
*/
2017-02-25 08:01:09 +08:00
/* */
2017-04-26 18:32:30 +08:00
/**
* Runtime helper for rendering <slot>
*/
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/**
* Runtime helper for resolving filters
*/
2017-04-26 18:32:30 +08:00
/* */
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
/**
* Runtime helper for checking keyCodes from config.
*/
2016-12-02 11:01:18 +08:00
/* */
2017-04-26 18:32:30 +08:00
/**
* Runtime helper for merging v-bind="object" into a VNode's data.
*/
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/**
* Runtime helper for rendering static trees.
*/
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/**
* Runtime helper for v-once.
* Effectively it means marking the node as static with a unique key.
*/
2017-02-25 08:01:09 +08:00
2017-04-26 18:32:30 +08:00
/* */
2016-08-30 03:49:00 +08:00
2017-04-26 18:32:30 +08:00
/* */
2017-02-25 08:01:09 +08:00
2016-08-30 03:49:00 +08:00
/* */
2017-04-26 18:32:30 +08:00
/* */
2017-02-25 08:01:09 +08:00
/* */
2017-04-26 18:32:30 +08:00
function createComponentInstanceForVnode (
vnode, // we know it's MountedComponentVNode but flow doesn't
parent, // activeInstance in lifecycle state
parentElm,
refElm
) {
var vnodeComponentOptions = vnode.componentOptions;
var options = {
_isComponent: true,
parent: parent,
propsData: vnodeComponentOptions.propsData,
_componentTag: vnodeComponentOptions.tag,
_parentVnode: vnode,
_parentListeners: vnodeComponentOptions.listeners,
_renderChildren: vnodeComponentOptions.children,
_parentElm: parentElm || null,
_refElm: refElm || null
};
// check inline-template render functions
var inlineTemplate = vnode.data.inlineTemplate;
if (isDef(inlineTemplate)) {
options.render = inlineTemplate.render;
options.staticRenderFns = inlineTemplate.staticRenderFns;
}
return new vnodeComponentOptions.Ctor(options)
}
2016-08-30 03:49:00 +08:00
/* */
2017-04-26 18:32:30 +08:00
var ref = require('he');
var escape$1 = ref.escape;
2016-10-12 12:54:06 +08:00
var warned = Object.create(null);
2016-08-30 03:49:00 +08:00
var warnOnce = function (msg) {
2016-08-11 13:43:09 +08:00
if (!warned[msg]) {
2016-10-12 12:54:06 +08:00
warned[msg] = true;
console.warn(("\n\u001b[31m" + msg + "\u001b[39m\n"));
2016-08-11 13:43:09 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-08-11 13:43:09 +08:00
2016-10-12 12:54:06 +08:00
var compilationCache = Object.create(null);
2017-02-24 12:22:20 +08:00
var normalizeRender = function (vm) {
var ref = vm.$options;
2016-08-30 03:49:00 +08:00
var render = ref.render;
var template = ref.template;
2017-04-26 18:32:30 +08:00
if (isUndef(render)) {
2016-08-10 12:55:30 +08:00
if (template) {
2016-08-30 03:49:00 +08:00
var renderFns = (
compilationCache[template] ||
(compilationCache[template] = compileToFunctions(template))
2016-10-12 12:54:06 +08:00
);
2017-02-24 12:22:20 +08:00
Object.assign(vm.$options, renderFns);
2016-08-10 12:55:30 +08:00
} else {
2016-08-30 03:49:00 +08:00
throw new Error(
2017-02-24 12:22:20 +08:00
("render function or template not defined in component: " + (vm.$options.name || vm.$options._componentTag || 'anonymous'))
2016-08-30 03:49:00 +08:00
)
2016-08-10 12:55:30 +08:00
}
}
2016-10-12 12:54:06 +08:00
};
2016-11-05 04:47:02 +08:00
function renderNode (node, isRoot, context) {
2017-04-26 18:32:30 +08:00
if (isDef(node.componentOptions)) {
renderComponent(node, isRoot, context);
2016-11-05 04:47:02 +08:00
} else {
2017-04-26 18:32:30 +08:00
if (isDef(node.tag)) {
2016-11-05 04:47:02 +08:00
renderElement(node, isRoot, context);
2017-04-26 18:32:30 +08:00
} else if (isTrue(node.isComment)) {
context.write(
("<!--" + (node.text) + "-->"),
context.next
);
2016-11-05 04:47:02 +08:00
} else {
2017-04-26 18:32:30 +08:00
context.write(
node.raw ? node.text : escape$1(String(node.text)),
context.next
);
2016-11-05 04:47:02 +08:00
}
}
2016-11-05 04:47:02 +08:00
}
2016-11-05 04:47:02 +08:00
function renderComponent (node, isRoot, context) {
2017-04-26 18:32:30 +08:00
var write = context.write;
var next = context.next;
var userContext = context.userContext;
// check cache hit
var Ctor = node.componentOptions.Ctor;
var getKey = Ctor.options.serverCacheKey;
var name = Ctor.options.name;
// exposed by vue-loader, need to call this if cache hit because
// component lifecycle hooks will not be called.
var registerComponent = Ctor.options._ssrRegister;
if (write.caching && isDef(registerComponent)) {
write.componentBuffer[write.componentBuffer.length - 1].add(registerComponent);
}
var cache = context.cache;
if (isDef(getKey) && isDef(cache) && isDef(name)) {
var key = name + '::' + getKey(node.componentOptions.propsData);
var has = context.has;
var get = context.get;
if (isDef(has)) {
2017-05-02 15:58:34 +08:00
has(key, function (hit) {
2017-04-26 18:32:30 +08:00
if (hit === true && isDef(get)) {
2017-05-02 15:58:34 +08:00
get(key, function (res) {
2017-04-26 18:32:30 +08:00
if (isDef(registerComponent)) {
registerComponent(userContext);
}
res.components.forEach(function (register) { return register(userContext); });
write(res.html, next);
});
} else {
renderComponentWithCache(node, isRoot, key, context);
}
});
} else if (isDef(get)) {
2017-05-02 15:58:34 +08:00
get(key, function (res) {
2017-04-26 18:32:30 +08:00
if (isDef(res)) {
if (isDef(registerComponent)) {
registerComponent(userContext);
}
res.components.forEach(function (register) { return register(userContext); });
write(res.html, next);
} else {
renderComponentWithCache(node, isRoot, key, context);
}
});
}
} else {
if (isDef(getKey) && isUndef(cache)) {
warnOnce(
"[vue-server-renderer] Component " + (Ctor.options.name || '(anonymous)') + " implemented serverCacheKey, " +
'but no cache was provided to the renderer.'
);
}
if (isDef(getKey) && isUndef(name)) {
warnOnce(
"[vue-server-renderer] Components that implement \"serverCacheKey\" " +
"must also define a unique \"name\" option."
);
}
renderComponentInner(node, isRoot, context);
}
2016-11-05 04:47:02 +08:00
}
2016-11-05 04:47:02 +08:00
function renderComponentWithCache (node, isRoot, key, context) {
var write = context.write;
write.caching = true;
var buffer = write.cacheBuffer;
var bufferIndex = buffer.push('') - 1;
2017-04-26 18:32:30 +08:00
var componentBuffer = write.componentBuffer;
componentBuffer.push(new Set());
2016-11-05 04:47:02 +08:00
context.renderStates.push({
type: 'ComponentWithCache',
2017-04-26 18:32:30 +08:00
key: key,
buffer: buffer,
bufferIndex: bufferIndex,
componentBuffer: componentBuffer
});
renderComponentInner(node, isRoot, context);
}
function renderComponentInner (node, isRoot, context) {
var prevActive = context.activeInstance;
// expose userContext on vnode
node.ssrContext = context.userContext;
var child = context.activeInstance = createComponentInstanceForVnode(
node,
context.activeInstance
);
node.ssrContext = null;
normalizeRender(child);
var childNode = child._render();
childNode.parent = node;
context.renderStates.push({
type: 'Component',
prevActive: prevActive
2016-11-05 04:47:02 +08:00
});
2017-04-26 18:32:30 +08:00
renderNode(childNode, isRoot, context);
2016-11-05 04:47:02 +08:00
}
function renderElement (el, isRoot, context) {
2017-04-26 18:32:30 +08:00
if (isTrue(isRoot)) {
2016-11-05 04:47:02 +08:00
if (!el.data) { el.data = {}; }
if (!el.data.attrs) { el.data.attrs = {}; }
2017-04-26 18:32:30 +08:00
el.data.attrs[SSR_ATTR] = 'true';
2016-11-05 04:47:02 +08:00
}
var startTag = renderStartingTag(el, context);
var endTag = "</" + (el.tag) + ">";
var write = context.write;
var next = context.next;
if (context.isUnaryTag(el.tag)) {
write(startTag, next);
2017-04-26 18:32:30 +08:00
} else if (isUndef(el.children) || el.children.length === 0) {
2016-11-05 04:47:02 +08:00
write(startTag + endTag, next);
} else {
var children = el.children;
context.renderStates.push({
type: 'Element',
rendered: 0,
total: children.length,
endTag: endTag, children: children
});
write(startTag, next);
}
}
2016-08-30 03:49:00 +08:00
2016-11-05 04:47:02 +08:00
function hasAncestorData (node) {
var parentNode = node.parent;
2017-04-26 18:32:30 +08:00
return isDef(parentNode) && (isDef(parentNode.data) || hasAncestorData(parentNode))
2016-11-05 04:47:02 +08:00
}
2017-03-24 12:53:32 +08:00
function getVShowDirectiveInfo (node) {
var dir;
var tmp;
2017-04-26 18:32:30 +08:00
while (isDef(node)) {
2017-03-24 12:53:32 +08:00
if (node.data && node.data.directives) {
tmp = node.data.directives.find(function (dir) { return dir.name === 'show'; });
if (tmp) {
dir = tmp;
}
}
node = node.parent;
}
return dir
}
2016-11-05 04:47:02 +08:00
function renderStartingTag (node, context) {
var markup = "<" + (node.tag);
var directives = context.directives;
var modules = context.modules;
// construct synthetic data for module processing
// because modules like style also produce code by parent VNode data
2017-04-26 18:32:30 +08:00
if (isUndef(node.data) && hasAncestorData(node)) {
2016-11-05 04:47:02 +08:00
node.data = {};
}
2017-04-26 18:32:30 +08:00
if (isDef(node.data)) {
2016-11-05 04:47:02 +08:00
// check directives
var dirs = node.data.directives;
if (dirs) {
for (var i = 0; i < dirs.length; i++) {
2017-03-24 12:53:32 +08:00
var name = dirs[i].name;
var dirRenderer = directives[name];
if (dirRenderer && name !== 'show') {
2016-11-05 04:47:02 +08:00
// directives mutate the node's data
// which then gets rendered by modules
dirRenderer(node, dirs[i]);
}
}
2016-11-05 04:47:02 +08:00
}
2017-03-24 12:53:32 +08:00
// v-show directive needs to be merged from parent to child
var vshowDirectiveInfo = getVShowDirectiveInfo(node);
if (vshowDirectiveInfo) {
directives.show(node, vshowDirectiveInfo);
}
2016-11-05 04:47:02 +08:00
// apply other modules
for (var i$1 = 0; i$1 < modules.length; i$1++) {
var res = modules[i$1](node);
if (res) {
markup += res;
}
}
}
2016-11-05 04:47:02 +08:00
// attach scoped CSS ID
var scopeId;
var activeInstance = context.activeInstance;
2017-04-26 18:32:30 +08:00
if (isDef(activeInstance) &&
2016-11-05 04:47:02 +08:00
activeInstance !== node.context &&
2017-04-26 18:32:30 +08:00
isDef(scopeId = activeInstance.$options._scopeId)) {
markup += " " + ((scopeId));
2016-11-05 04:47:02 +08:00
}
2017-04-26 18:32:30 +08:00
while (isDef(node)) {
if (isDef(scopeId = node.context.$options._scopeId)) {
2016-11-05 04:47:02 +08:00
markup += " " + scopeId;
}
node = node.parent;
}
2016-11-05 04:47:02 +08:00
return markup + '>'
}
2016-11-05 04:47:02 +08:00
function createRenderFunction (
modules,
directives,
isUnaryTag,
cache
) {
2016-08-30 03:49:00 +08:00
return function render (
component,
write,
2017-04-26 18:32:30 +08:00
userContext,
2016-08-30 03:49:00 +08:00
done
) {
2016-10-12 12:54:06 +08:00
warned = Object.create(null);
2017-02-24 12:22:20 +08:00
var context = new RenderContext({
2016-11-05 04:47:02 +08:00
activeInstance: component,
2017-04-26 18:32:30 +08:00
userContext: userContext,
2017-02-24 12:22:20 +08:00
write: write, done: done, renderNode: renderNode,
2016-11-05 04:47:02 +08:00
isUnaryTag: isUnaryTag, modules: modules, directives: directives,
2017-02-24 12:22:20 +08:00
cache: cache
});
2016-10-12 12:54:06 +08:00
normalizeRender(component);
2016-11-05 04:47:02 +08:00
renderNode(component._render(), true, context);
2016-08-30 03:49:00 +08:00
}
}
2016-08-30 03:49:00 +08:00
/* */
2016-08-30 03:49:00 +08:00
function createRenderer$1 (ref) {
if ( ref === void 0 ) ref = {};
var modules = ref.modules; if ( modules === void 0 ) modules = [];
var directives = ref.directives; if ( directives === void 0 ) directives = {};
var isUnaryTag = ref.isUnaryTag; if ( isUnaryTag === void 0 ) isUnaryTag = (function () { return false; });
2017-02-24 12:22:20 +08:00
var template = ref.template;
2017-04-26 18:32:30 +08:00
var inject = ref.inject;
2016-08-30 03:49:00 +08:00
var cache = ref.cache;
2017-04-26 18:32:30 +08:00
var shouldPreload = ref.shouldPreload;
var clientManifest = ref.clientManifest;
2016-10-12 12:54:06 +08:00
var render = createRenderFunction(modules, directives, isUnaryTag, cache);
2017-04-26 18:32:30 +08:00
var templateRenderer = new TemplateRenderer({
template: template,
inject: inject,
shouldPreload: shouldPreload,
clientManifest: clientManifest
});
return {
2016-08-30 03:49:00 +08:00
renderToString: function renderToString (
component,
2017-04-26 18:32:30 +08:00
context,
done
2016-08-30 03:49:00 +08:00
) {
2017-04-26 18:32:30 +08:00
if (typeof context === 'function') {
done = context;
context = {};
}
if (context) {
templateRenderer.bindRenderFns(context);
}
2016-10-12 12:54:06 +08:00
var result = '';
var write = createWriteFunction(function (text) {
2016-10-12 12:54:06 +08:00
result += text;
2017-04-26 18:32:30 +08:00
return false
2016-10-12 12:54:06 +08:00
}, done);
try {
2017-04-26 18:32:30 +08:00
render(component, write, context, function () {
if (template) {
result = templateRenderer.renderSync(result, context);
2017-02-24 12:22:20 +08:00
}
2016-10-12 12:54:06 +08:00
done(null, result);
});
} catch (e) {
2016-10-12 12:54:06 +08:00
done(e);
}
},
2016-08-30 03:49:00 +08:00
2017-02-24 12:22:20 +08:00
renderToStream: function renderToStream (
component,
context
) {
2017-04-26 18:32:30 +08:00
if (context) {
templateRenderer.bindRenderFns(context);
}
2017-02-24 12:22:20 +08:00
var renderStream = new RenderStream(function (write, done) {
2017-04-26 18:32:30 +08:00
render(component, write, context, done);
2017-02-24 12:22:20 +08:00
});
2017-04-26 18:32:30 +08:00
if (!template) {
2017-02-24 12:22:20 +08:00
return renderStream
} else {
2017-04-26 18:32:30 +08:00
var templateStream = templateRenderer.createStream(context);
2017-02-24 12:22:20 +08:00
renderStream.on('error', function (err) {
2017-04-26 18:32:30 +08:00
templateStream.emit('error', err);
2017-02-24 12:22:20 +08:00
});
2017-04-26 18:32:30 +08:00
renderStream.pipe(templateStream);
return templateStream
2017-02-24 12:22:20 +08:00
}
}
2016-08-30 03:49:00 +08:00
}
}
2017-02-24 12:22:20 +08:00
var vm = require('vm');
2017-04-26 18:32:30 +08:00
var path$2 = require('path');
2017-02-24 12:22:20 +08:00
var resolve = require('resolve');
var NativeModule = require('module');
2017-05-02 15:58:34 +08:00
function createSandbox (context) {
var sandbox = {
Buffer: Buffer,
console: console,
process: process,
2017-02-24 12:22:20 +08:00
setTimeout: setTimeout,
setInterval: setInterval,
setImmediate: setImmediate,
clearTimeout: clearTimeout,
clearInterval: clearInterval,
clearImmediate: clearImmediate,
__VUE_SSR_CONTEXT__: context
2016-10-12 12:54:06 +08:00
};
sandbox.global = sandbox;
2016-08-30 03:49:00 +08:00
return sandbox
}
2017-05-02 15:58:34 +08:00
function compileModule (files, basedir, runInNewContext) {
2017-02-24 12:22:20 +08:00
var compiledScripts = {};
2017-03-09 10:32:38 +08:00
var resolvedModules = {};
2017-02-24 12:22:20 +08:00
function getCompiledScript (filename) {
if (compiledScripts[filename]) {
return compiledScripts[filename]
}
var code = files[filename];
2016-10-12 12:54:06 +08:00
var wrapper = NativeModule.wrap(code);
2017-02-24 12:22:20 +08:00
var script = new vm.Script(wrapper, {
filename: filename,
displayErrors: true
2016-10-12 12:54:06 +08:00
});
2017-02-24 12:22:20 +08:00
compiledScripts[filename] = script;
return script
}
2017-05-02 15:58:34 +08:00
function evaluateModule (filename, sandbox, evaluatedFiles) {
2017-04-26 18:32:30 +08:00
if ( evaluatedFiles === void 0 ) evaluatedFiles = {};
if (evaluatedFiles[filename]) {
return evaluatedFiles[filename]
2017-02-24 12:22:20 +08:00
}
var script = getCompiledScript(filename);
2017-05-02 15:58:34 +08:00
var compiledWrapper = runInNewContext === false
? script.runInThisContext()
: script.runInNewContext(sandbox);
2016-10-12 12:54:06 +08:00
var m = { exports: {}};
2017-02-24 12:22:20 +08:00
var r = function (file) {
2017-04-26 18:32:30 +08:00
file = path$2.join('.', file);
2017-02-24 12:22:20 +08:00
if (files[file]) {
2017-05-02 15:58:34 +08:00
return evaluateModule(file, sandbox, evaluatedFiles)
2017-02-24 12:22:20 +08:00
} else if (basedir) {
return require(
2017-03-09 10:32:38 +08:00
resolvedModules[file] ||
(resolvedModules[file] = resolve.sync(file, { basedir: basedir }))
2017-02-24 12:22:20 +08:00
)
} else {
return require(file)
}
};
compiledWrapper.call(m.exports, m.exports, r, m);
2016-08-30 03:49:00 +08:00
var res = Object.prototype.hasOwnProperty.call(m.exports, 'default')
? m.exports.default
2016-10-12 12:54:06 +08:00
: m.exports;
2017-04-26 18:32:30 +08:00
evaluatedFiles[filename] = res;
2017-02-24 12:22:20 +08:00
return res
}
return evaluateModule
}
2017-04-26 18:32:30 +08:00
function deepClone (val) {
if (isPlainObject(val)) {
var res = {};
for (var key in val) {
res[key] = deepClone(val[key]);
}
return res
} else if (Array.isArray(val)) {
return val.slice()
} else {
return val
}
}
function createBundleRunner (entry, files, basedir, runInNewContext) {
2017-05-02 15:58:34 +08:00
var evaluate = compileModule(files, basedir, runInNewContext);
if (runInNewContext !== false && runInNewContext !== 'once') {
2017-04-26 18:32:30 +08:00
// new context mode: creates a fresh context and re-evaluate the bundle
// on each render. Ensures entire application state is fresh for each
// render, but incurs extra evaluation cost.
return function (userContext) {
if ( userContext === void 0 ) userContext = {};
2017-02-24 12:22:20 +08:00
2017-04-26 18:32:30 +08:00
return new Promise(function (resolve) {
userContext._registeredComponents = new Set();
2017-05-02 15:58:34 +08:00
var res = evaluate(entry, createSandbox(userContext));
2017-04-26 18:32:30 +08:00
resolve(typeof res === 'function' ? res(userContext) : res);
});
}
} else {
// direct mode: instead of re-evaluating the whole bundle on
// each render, it simply calls the exported function. This avoids the
// module evaluation costs but requires the source code to be structured
// slightly differently.
var runner; // lazy creation so that errors can be caught by user
2017-05-02 15:58:34 +08:00
var initialContext;
2017-04-26 18:32:30 +08:00
return function (userContext) {
if ( userContext === void 0 ) userContext = {};
return new Promise(function (resolve) {
if (!runner) {
2017-05-02 15:58:34 +08:00
var sandbox = runInNewContext === 'once'
? createSandbox()
: global;
// the initial context is only used for collecting possible non-component
// styles injected by vue-style-loader.
initialContext = sandbox.__VUE_SSR_CONTEXT__ = {};
runner = evaluate(entry, sandbox);
2017-04-26 18:32:30 +08:00
// On subsequent renders, __VUE_SSR_CONTEXT__ will not be avaialbe
// to prevent cross-request pollution.
2017-05-02 15:58:34 +08:00
delete sandbox.__VUE_SSR_CONTEXT__;
2017-04-26 18:32:30 +08:00
if (typeof runner !== 'function') {
throw new Error(
'bundle export should be a function when using ' +
'{ runInNewContext: false }.'
)
}
}
userContext._registeredComponents = new Set();
// vue-style-loader styles imported outside of component lifecycle hooks
if (initialContext._styles) {
userContext._styles = deepClone(initialContext._styles);
}
resolve(runner(userContext));
});
}
2017-02-24 12:22:20 +08:00
}
}
/* */
var SourceMapConsumer = require('source-map').SourceMapConsumer;
var filenameRE = /\(([^)]+\.js):(\d+):(\d+)\)$/;
function createSourceMapConsumers (rawMaps) {
var maps = {};
Object.keys(rawMaps).forEach(function (file) {
maps[file] = new SourceMapConsumer(rawMaps[file]);
});
return maps
}
function rewriteErrorTrace (e, mapConsumers) {
if (e && typeof e.stack === 'string') {
e.stack = e.stack.split('\n').map(function (line) {
return rewriteTraceLine(line, mapConsumers)
}).join('\n');
}
}
function rewriteTraceLine (trace, mapConsumers) {
var m = trace.match(filenameRE);
var map = m && mapConsumers[m[1]];
if (m != null && map) {
var originalPosition = map.originalPositionFor({
line: Number(m[2]),
column: Number(m[3])
});
if (originalPosition.source != null) {
var source = originalPosition.source;
var line = originalPosition.line;
var column = originalPosition.column;
var mappedPosition = "(" + (source.replace(/^webpack:\/\/\//, '')) + ":" + (String(line)) + ":" + (String(column)) + ")";
return trace.replace(filenameRE, mappedPosition)
} else {
return trace
}
} else {
return trace
}
}
2017-02-24 12:22:20 +08:00
/* */
var fs = require('fs');
2017-04-26 18:32:30 +08:00
var path$1 = require('path');
2017-02-24 12:22:20 +08:00
var PassThrough = require('stream').PassThrough;
var INVALID_MSG =
'Invalid server-rendering bundle format. Should be a string ' +
'or a bundle Object of type:\n\n' +
"{\n entry: string;\n files: { [filename: string]: string; };\n maps: { [filename: string]: string; };\n}\n";
// The render bundle can either be a string (single bundled file)
// or a bundle manifest object generated by vue-ssr-webpack-plugin.
2016-08-30 03:49:00 +08:00
function createBundleRendererCreator (createRenderer) {
2017-02-24 12:22:20 +08:00
return function createBundleRenderer (
bundle,
rendererOptions
) {
2017-04-26 18:32:30 +08:00
if ( rendererOptions === void 0 ) rendererOptions = {};
2017-02-24 12:22:20 +08:00
var files, entry, maps;
2017-04-26 18:32:30 +08:00
var basedir = rendererOptions.basedir;
2017-02-24 12:22:20 +08:00
// load bundle if given filepath
2017-02-26 12:28:14 +08:00
if (
typeof bundle === 'string' &&
/\.js(on)?$/.test(bundle) &&
2017-04-26 18:32:30 +08:00
path$1.isAbsolute(bundle)
2017-02-26 12:28:14 +08:00
) {
2017-02-24 12:22:20 +08:00
if (fs.existsSync(bundle)) {
2017-03-09 10:32:38 +08:00
var isJSON = /\.json$/.test(bundle);
2017-04-26 18:32:30 +08:00
basedir = basedir || path$1.dirname(bundle);
2017-02-24 12:22:20 +08:00
bundle = fs.readFileSync(bundle, 'utf-8');
2017-03-09 10:32:38 +08:00
if (isJSON) {
2017-02-24 12:22:20 +08:00
try {
bundle = JSON.parse(bundle);
} catch (e) {
throw new Error(("Invalid JSON bundle file: " + bundle))
}
}
} else {
throw new Error(("Cannot locate bundle file: " + bundle))
}
}
if (typeof bundle === 'object') {
entry = bundle.entry;
files = bundle.files;
basedir = basedir || bundle.basedir;
maps = createSourceMapConsumers(bundle.maps);
if (typeof entry !== 'string' || typeof files !== 'object') {
throw new Error(INVALID_MSG)
}
} else if (typeof bundle === 'string') {
entry = '__vue_ssr_bundle__';
files = { '__vue_ssr_bundle__': bundle };
maps = {};
} else {
throw new Error(INVALID_MSG)
}
2017-04-26 18:32:30 +08:00
var renderer = createRenderer(rendererOptions);
2017-05-02 15:58:34 +08:00
var run = createBundleRunner(
entry,
files,
basedir,
rendererOptions.runInNewContext
);
2017-02-24 12:22:20 +08:00
return {
2016-08-30 03:49:00 +08:00
renderToString: function (context, cb) {
if (typeof context === 'function') {
2016-10-12 12:54:06 +08:00
cb = context;
context = {};
}
2017-02-24 12:22:20 +08:00
run(context).catch(function (err) {
rewriteErrorTrace(err, maps);
cb(err);
}).then(function (app) {
if (app) {
2017-04-26 18:32:30 +08:00
renderer.renderToString(app, context, function (err, res) {
2017-02-24 12:22:20 +08:00
rewriteErrorTrace(err, maps);
cb(err, res);
2017-04-26 18:32:30 +08:00
});
2017-02-24 12:22:20 +08:00
}
});
},
2017-02-24 12:22:20 +08:00
2016-08-30 03:49:00 +08:00
renderToStream: function (context) {
2017-02-24 12:22:20 +08:00
var res = new PassThrough();
run(context).catch(function (err) {
rewriteErrorTrace(err, maps);
// avoid emitting synchronously before user can
// attach error listener
process.nextTick(function () {
2016-10-12 12:54:06 +08:00
res.emit('error', err);
});
2017-02-24 12:22:20 +08:00
}).then(function (app) {
if (app) {
var renderStream = renderer.renderToStream(app, context);
renderStream.on('error', function (err) {
rewriteErrorTrace(err, maps);
res.emit('error', err);
});
// relay HTMLStream special events
if (rendererOptions && rendererOptions.template) {
renderStream.on('beforeStart', function () {
res.emit('beforeStart');
});
renderStream.on('beforeEnd', function () {
res.emit('beforeEnd');
});
}
renderStream.pipe(res);
}
2016-10-12 12:54:06 +08:00
});
2017-02-24 12:22:20 +08:00
2016-08-30 03:49:00 +08:00
return res
}
2016-08-30 03:49:00 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
/* */
2016-11-23 00:15:07 +08:00
process.env.VUE_ENV = 'server';
2016-09-29 08:37:32 +08:00
function createRenderer$$1 (options) {
2016-08-30 03:49:00 +08:00
if ( options === void 0 ) options = {};
2017-04-26 18:32:30 +08:00
return createRenderer$1(Object.assign({}, options, {
isUnaryTag: isUnaryTag,
2017-03-24 12:53:32 +08:00
canBeLeftOpenTag: canBeLeftOpenTag,
2017-04-26 18:32:30 +08:00
modules: modules,
2017-02-24 12:22:20 +08:00
// user can provide server-side implementations for custom directives
// when creating the renderer.
2017-04-26 18:32:30 +08:00
directives: Object.assign(baseDirectives, options.directives)
}))
}
2016-10-12 12:54:06 +08:00
var createBundleRenderer = createBundleRendererCreator(createRenderer$$1);
2016-09-29 08:37:32 +08:00
exports.createRenderer = createRenderer$$1;
exports.createBundleRenderer = createBundleRenderer;