vue2/dist/vue.common.js

5768 lines
145 KiB
JavaScript
Raw Normal View History

2016-10-12 12:54:06 +08:00
/*!
2016-11-20 11:14:58 +08:00
* Vue.js v2.0.8
2016-10-12 12:54:06 +08:00
* (c) 2014-2016 Evan You
* Released under the MIT License.
*/
2016-04-27 01:29:27 +08:00
'use strict';
2016-08-30 03:49:00 +08:00
/* */
2016-04-27 01:29:27 +08:00
/**
* Convert a value to a string that is actually rendered.
*/
2016-08-30 03:49:00 +08:00
function _toString (val) {
return val == null
? ''
: typeof val === 'object'
? JSON.stringify(val, null, 2)
: String(val)
2016-04-27 01:29:27 +08:00
}
2016-06-28 10:25:12 +08:00
/**
* Convert a input value to a number for persistence.
* If the conversion fails, return original string.
*/
2016-08-30 03:49:00 +08:00
function toNumber (val) {
2016-10-12 12:54:06 +08:00
var n = parseFloat(val, 10);
2016-08-30 03:49:00 +08:00
return (n || n === 0) ? n : val
2016-06-28 10:25:12 +08:00
}
2016-04-27 01:29:27 +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(',');
2016-04-27 01:29:27 +08:00
for (var i = 0; i < list.length; i++) {
2016-10-12 12:54:06 +08:00
map[list[i]] = true;
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return expectsLowerCase
? function (val) { return map[val.toLowerCase()]; }
: function (val) { return map[val]; }
2016-04-27 01:29:27 +08:00
}
/**
* Check if a tag is a built-in tag.
*/
2016-10-12 12:54:06 +08:00
var isBuiltInTag = makeMap('slot,component', true);
2016-04-27 01:29:27 +08:00
/**
* Remove an item from an array
*/
2016-10-01 02:32:00 +08:00
function remove$1 (arr, item) {
2016-04-27 01:29:27 +08:00
if (arr.length) {
2016-10-12 12:54:06 +08:00
var index = arr.indexOf(item);
2016-04-27 01:29:27 +08:00
if (index > -1) {
2016-08-30 03:49:00 +08:00
return arr.splice(index, 1)
2016-04-27 01:29:27 +08:00
}
}
}
/**
* 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)
2016-04-27 01:29:27 +08:00
}
/**
* Check if value is primitive
*/
2016-08-30 03:49:00 +08:00
function isPrimitive (value) {
return typeof value === 'string' || typeof value === 'number'
2016-04-27 01:29:27 +08:00
}
/**
* 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-08-30 03:49:00 +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-04-27 01:29:27 +08:00
}
/**
* Camelize a hyphen-delmited string.
*/
2016-10-12 12:54:06 +08:00
var camelizeRE = /-(\w)/g;
2016-04-27 01:29:27 +08:00
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
});
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Capitalize a string.
*/
var capitalize = cached(function (str) {
2016-08-30 03:49:00 +08:00
return str.charAt(0).toUpperCase() + str.slice(1)
2016-10-12 12:54:06 +08:00
});
2016-04-27 01:29:27 +08:00
/**
* Hyphenate a camelCase string.
*/
2016-10-12 12:54:06 +08:00
var hyphenateRE = /([^-])([A-Z])/g;
2016-04-27 01:29:27 +08:00
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
});
2016-04-27 01:29:27 +08:00
/**
* Simple bind, faster than native
*/
2016-10-01 02:32:00 +08:00
function bind$1 (fn, ctx) {
2016-08-30 03:49:00 +08:00
function boundFn (a) {
2016-10-12 12:54:06 +08:00
var l = arguments.length;
2016-08-30 03:49:00 +08:00
return l
? l > 1
? fn.apply(ctx, arguments)
: fn.call(ctx, a)
: fn.call(ctx)
2016-07-17 13:53:44 +08:00
}
// record original fn length
2016-10-12 12:54:06 +08:00
boundFn._length = fn.length;
2016-08-30 03:49:00 +08:00
return boundFn
2016-04-27 01:29:27 +08:00
}
/**
* Convert an Array-like object to a real Array.
*/
2016-08-30 03:49:00 +08:00
function toArray (list, start) {
2016-10-12 12:54:06 +08:00
start = start || 0;
var i = list.length - start;
var ret = new Array(i);
2016-04-27 01:29:27 +08:00
while (i--) {
2016-10-12 12:54:06 +08:00
ret[i] = list[i + start];
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return ret
2016-04-27 01:29:27 +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-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return to
2016-04-27 01:29:27 +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.
*/
2016-08-30 03:49:00 +08:00
function isObject (obj) {
return obj !== null && typeof obj === 'object'
2016-04-27 01:29:27 +08:00
}
/**
* Strict object type check. Only returns true
* for plain JavaScript objects.
*/
2016-10-12 12:54:06 +08:00
var toString = Object.prototype.toString;
var OBJECT_STRING = '[object Object]';
2016-08-30 03:49:00 +08:00
function isPlainObject (obj) {
return toString.call(obj) === OBJECT_STRING
2016-04-27 01:29:27 +08:00
}
/**
2016-06-08 09:53:43 +08:00
* Merge an Array of Objects into a single Object.
2016-04-27 01:29:27 +08:00
*/
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++) {
2016-06-08 09:53:43 +08:00
if (arr[i]) {
2016-10-12 12:54:06 +08:00
extend(res, arr[i]);
2016-06-08 09:53:43 +08:00
}
}
2016-08-30 03:49:00 +08:00
return res
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Perform no operation.
*/
2016-08-30 03:49:00 +08:00
function noop () {}
2016-04-27 01:29:27 +08:00
/**
2016-06-08 09:53:43 +08:00
* Always return false.
*/
2016-10-12 12:54:06 +08:00
var no = function () { return false; };
2016-06-08 09:53:43 +08:00
/**
* Generate a static keys string from compiler modules.
2016-04-27 01:29:27 +08:00
*/
2016-08-30 03:49:00 +08:00
function genStaticKeys (modules) {
2016-06-08 09:53:43 +08:00
return modules.reduce(function (keys, m) {
2016-08-30 03:49:00 +08:00
return keys.concat(m.staticKeys || [])
}, []).join(',')
2016-06-08 09:53:43 +08:00
}
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?
*/
function looseEqual (a, b) {
/* eslint-disable eqeqeq */
return a == b || (
isObject(a) && isObject(b)
? JSON.stringify(a) === JSON.stringify(b)
: false
)
/* eslint-enable eqeqeq */
}
function looseIndexOf (arr, val) {
for (var i = 0; i < arr.length; i++) {
if (looseEqual(arr[i], val)) { return i }
}
return -1
}
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
var config = {
/**
* Option merge strategies (used in core/util/options)
*/
optionMergeStrategies: Object.create(null),
/**
* Whether to suppress warnings.
*/
silent: false,
2016-06-23 03:33:53 +08:00
/**
* Whether to enable devtools
*/
devtools: process.env.NODE_ENV !== 'production',
2016-06-08 09:53:43 +08:00
/**
* Error handler for watcher errors
*/
errorHandler: null,
2016-06-17 01:00:55 +08:00
/**
* Ignore certain custom elements
*/
ignoredElements: null,
2016-06-23 03:33:53 +08:00
/**
* Custom user key aliases for v-on
*/
keyCodes: Object.create(null),
2016-06-08 09:53:43 +08:00
/**
* 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 a tag is an unknown element.
* Platform-dependent.
*/
isUnknownElement: no,
2016-06-28 10:25:12 +08:00
/**
* Get the namespace of an element
*/
getTagNamespace: noop,
2016-06-08 09:53:43 +08:00
/**
* Check if an attribute must be bound using property, e.g. value
* Platform-dependent.
*/
mustUseProp: no,
/**
* List of asset types that a component can own.
*/
2016-08-30 03:49:00 +08:00
_assetTypes: [
'component',
'directive',
'filter'
],
2016-06-08 09:53:43 +08:00
/**
* List of lifecycle hooks.
*/
2016-08-30 03:49:00 +08:00
_lifecycleHooks: [
'beforeCreate',
'created',
'beforeMount',
'mounted',
'beforeUpdate',
'updated',
'beforeDestroy',
'destroyed',
'activated',
'deactivated'
],
2016-06-08 09:53:43 +08:00
/**
* Max circular updates allowed in a scheduler flush cycle.
*/
_maxUpdateCount: 100,
/**
* Server rendering?
*/
2016-06-28 10:25:12 +08:00
_isServer: process.env.VUE_ENV === 'server'
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Check if a string starts with $ or _
*/
2016-08-30 03:49:00 +08:00
function isReserved (str) {
2016-10-12 12:54:06 +08:00
var c = (str + '').charCodeAt(0);
2016-08-30 03:49:00 +08:00
return c === 0x24 || c === 0x5F
2016-04-27 01:29:27 +08:00
}
/**
* Define a property.
*/
2016-08-30 03:49:00 +08:00
function def (obj, key, val, enumerable) {
2016-04-27 01:29:27 +08:00
Object.defineProperty(obj, key, {
value: val,
enumerable: !!enumerable,
writable: true,
configurable: true
2016-10-12 12:54:06 +08:00
});
2016-04-27 01:29:27 +08:00
}
/**
* Parse simple path.
*/
2016-11-05 04:47:02 +08:00
var bailRE = /[^\w.$]/;
2016-08-30 03:49:00 +08:00
function parsePath (path) {
2016-04-27 01:29:27 +08:00
if (bailRE.test(path)) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
var segments = path.split('.');
2016-08-30 03:49:00 +08:00
return function (obj) {
for (var i = 0; i < segments.length; i++) {
2016-09-24 06:24:49 +08:00
if (!obj) { return }
2016-10-12 12:54:06 +08:00
obj = obj[segments[i]];
2016-08-30 03:49:00 +08:00
}
return obj
}
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
/* */
2016-09-28 05:08:27 +08:00
/* globals MutationObserver */
2016-08-30 03:49:00 +08:00
2016-04-27 01:29:27 +08:00
// can we use __proto__?
2016-10-12 12:54:06 +08:00
var hasProto = '__proto__' in {};
2016-04-27 01:29:27 +08:00
// Browser environment sniffing
2016-08-30 03:49:00 +08:00
var inBrowser =
typeof window !== 'undefined' &&
2016-10-12 12:54:06 +08:00
Object.prototype.toString.call(window) !== '[object Object]';
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
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);
2016-09-24 06:24:49 +08:00
2016-04-27 01:29:27 +08:00
// detect devtools
2016-10-12 12:54:06 +08:00
var devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;
2016-04-27 01:29:27 +08:00
2016-09-28 05:08:27 +08:00
/* istanbul ignore next */
function isNative (Ctor) {
return /native code/.test(Ctor.toString())
}
2016-04-27 01:29:27 +08:00
/**
2016-10-01 02:32:00 +08:00
* Defer a task to execute it asynchronously.
2016-04-27 01:29:27 +08:00
*/
2016-08-30 03:49:00 +08:00
var nextTick = (function () {
2016-10-12 12:54:06 +08:00
var callbacks = [];
var pending = false;
var timerFunc;
2016-09-24 06:24:49 +08:00
2016-08-30 03:49:00 +08:00
function nextTickHandler () {
2016-10-12 12:54:06 +08:00
pending = false;
var copies = callbacks.slice(0);
callbacks.length = 0;
2016-04-27 01:29:27 +08:00
for (var i = 0; i < copies.length; i++) {
2016-10-12 12:54:06 +08:00
copies[i]();
2016-04-27 01:29:27 +08:00
}
}
2016-09-28 05:08:27 +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)) {
2016-10-12 12:54:06 +08:00
var p = Promise.resolve();
2016-09-28 05:08:27 +08:00
timerFunc = function () {
2016-10-12 12:54:06 +08:00
p.then(nextTickHandler);
2016-09-28 05:08:27 +08:00
// 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.
2016-10-12 12:54:06 +08:00
if (isIOS) { setTimeout(noop); }
};
2016-10-01 02:32:00 +08:00
} else if (typeof MutationObserver !== 'undefined' && (
isNative(MutationObserver) ||
// PhantomJS and iOS 7.x
MutationObserver.toString() === '[object MutationObserverConstructor]'
)) {
2016-09-28 05:08:27 +08:00
// use MutationObserver where native Promise is not available,
2016-10-01 02:32:00 +08:00
// e.g. PhantomJS IE11, iOS7, Android 4.4
2016-10-12 12:54:06 +08:00
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
2016-09-28 05:08:27 +08:00
observer.observe(textNode, {
characterData: true
2016-10-12 12:54:06 +08:00
});
2016-08-30 03:49:00 +08:00
timerFunc = function () {
2016-10-12 12:54:06 +08:00
counter = (counter + 1) % 2;
textNode.data = String(counter);
};
2016-04-27 01:29:27 +08:00
} else {
2016-09-28 05:08:27 +08:00
// fallback to setTimeout
/* istanbul ignore next */
2016-10-12 12:54:06 +08:00
timerFunc = function () {
setTimeout(nextTickHandler, 0);
};
2016-09-24 06:24:49 +08:00
}
return function queueNextTick (cb, ctx) {
2016-08-30 03:49:00 +08:00
var func = ctx
2016-10-12 12:54:06 +08:00
? function () { cb.call(ctx); }
: cb;
callbacks.push(func);
2016-09-28 05:08:27 +08:00
if (!pending) {
2016-10-12 12:54:06 +08:00
pending = true;
timerFunc();
2016-09-28 05:08:27 +08:00
}
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
})();
2016-08-30 03:49:00 +08:00
2016-10-12 12:54:06 +08:00
var _Set;
2016-04-27 01:29:27 +08:00
/* istanbul ignore if */
2016-09-28 05:08:27 +08:00
if (typeof Set !== 'undefined' && isNative(Set)) {
2016-04-27 01:29:27 +08:00
// use native Set when available.
2016-10-12 12:54:06 +08:00
_Set = Set;
2016-04-27 01:29:27 +08:00
} else {
// a non-standard Set polyfill that only works with primitive keys.
2016-08-30 03:49:00 +08:00
_Set = (function () {
function Set () {
2016-10-12 12:54:06 +08:00
this.set = Object.create(null);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
Set.prototype.has = function has (key) {
return this.set[key] !== undefined
2016-06-08 09:53:43 +08:00
};
2016-08-30 03:49:00 +08:00
Set.prototype.add = function add (key) {
2016-10-12 12:54:06 +08:00
this.set[key] = 1;
2016-06-08 09:53:43 +08:00
};
2016-08-30 03:49:00 +08:00
Set.prototype.clear = function clear () {
2016-10-12 12:54:06 +08:00
this.set = Object.create(null);
2016-06-08 09:53:43 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
return Set;
2016-10-12 12:54:06 +08:00
}());
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/* not type checking this file because flow doesn't play well with Proxy */
var hasProxy;
var proxyHandlers;
2016-10-12 12:54:06 +08:00
var initProxy;
2016-10-01 02:32:00 +08:00
2016-04-27 01:29:27 +08:00
if (process.env.NODE_ENV !== 'production') {
2016-08-30 03:49:00 +08:00
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
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
hasProxy =
typeof Proxy !== 'undefined' &&
2016-10-12 12:54:06 +08:00
Proxy.toString().match(/native code/);
2016-08-30 03:49:00 +08:00
proxyHandlers = {
has: function has (target, key) {
2016-10-12 12:54:06 +08:00
var has = key in target;
var isAllowed = allowedGlobals(key) || key.charAt(0) === '_';
2016-08-30 03:49:00 +08:00
if (!has && !isAllowed) {
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
2016-10-12 12:54:06 +08:00
);
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return has || !isAllowed
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
initProxy = function initProxy (vm) {
if (hasProxy) {
2016-10-12 12:54:06 +08:00
vm._renderProxy = new Proxy(vm, proxyHandlers);
2016-08-30 03:49:00 +08:00
} else {
2016-10-12 12:54:06 +08:00
vm._renderProxy = vm;
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-10-12 12:54:06 +08:00
var uid$2 = 0;
2016-04-27 01:29:27 +08:00
/**
* A dep is an observable that can have multiple
* directives subscribing to it.
*/
2016-08-30 03:49:00 +08:00
var Dep = function Dep () {
2016-10-12 12:54:06 +08:00
this.id = uid$2++;
this.subs = [];
2016-08-30 03:49:00 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
Dep.prototype.addSub = function addSub (sub) {
2016-10-12 12:54:06 +08:00
this.subs.push(sub);
2016-08-30 03:49:00 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
Dep.prototype.removeSub = function removeSub (sub) {
2016-10-12 12:54:06 +08:00
remove$1(this.subs, sub);
2016-08-30 03:49:00 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
Dep.prototype.depend = function depend () {
if (Dep.target) {
2016-10-12 12:54:06 +08:00
Dep.target.addDep(this);
2016-08-30 03:49:00 +08:00
}
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
Dep.prototype.notify = function notify () {
// stablize the subscriber list first
2016-10-12 12:54:06 +08:00
var subs = this.subs.slice();
2016-08-30 03:49:00 +08:00
for (var i = 0, l = subs.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
subs[i].update();
2016-08-30 03:49:00 +08:00
}
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
// the current target watcher being evaluated.
// this is globally unique because there could be only one
// watcher being evaluated at any time.
2016-10-12 12:54:06 +08:00
Dep.target = null;
var targetStack = [];
2016-06-23 03:33:53 +08:00
2016-08-30 03:49:00 +08:00
function pushTarget (_target) {
2016-10-12 12:54:06 +08:00
if (Dep.target) { targetStack.push(Dep.target); }
Dep.target = _target;
2016-06-23 03:33:53 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function popTarget () {
2016-10-12 12:54:06 +08:00
Dep.target = targetStack.pop();
2016-06-23 03:33:53 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-10-12 12:54:06 +08:00
var queue = [];
var has$1 = {};
var circular = {};
var waiting = false;
var flushing = false;
var index = 0;
2016-04-27 01:29:27 +08:00
/**
2016-06-08 09:53:43 +08:00
* Reset the scheduler's state.
2016-04-27 01:29:27 +08:00
*/
2016-08-30 03:49:00 +08:00
function resetSchedulerState () {
2016-10-12 12:54:06 +08:00
queue.length = 0;
has$1 = {};
2016-06-08 09:53:43 +08:00
if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
circular = {};
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
waiting = flushing = false;
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
/**
2016-06-08 09:53:43 +08:00
* Flush both queues and run the watchers.
2016-04-27 01:29:27 +08:00
*/
2016-08-30 03:49:00 +08:00
function flushSchedulerQueue () {
2016-10-12 12:54:06 +08:00
flushing = true;
2016-04-27 01:29:27 +08:00
2016-07-26 10:07:26 +08:00
// 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.
2016-10-12 12:54:06 +08:00
queue.sort(function (a, b) { return a.id - b.id; });
2016-06-08 09:53:43 +08:00
// do not cache length because more watchers might be pushed
// as we run existing watchers
2016-07-17 13:53:44 +08:00
for (index = 0; index < queue.length; index++) {
2016-10-12 12:54:06 +08:00
var watcher = queue[index];
var id = watcher.id;
has$1[id] = null;
watcher.run();
2016-06-08 09:53:43 +08:00
// in dev build, check and stop circular updates.
2016-10-01 02:32:00 +08:00
if (process.env.NODE_ENV !== 'production' && has$1[id] != null) {
2016-10-12 12:54:06 +08:00
circular[id] = (circular[id] || 0) + 1;
2016-06-08 09:53:43 +08:00
if (circular[id] > config._maxUpdateCount) {
2016-08-30 03:49:00 +08:00
warn(
'You may have an infinite update loop ' + (
watcher.user
? ("in watcher with expression \"" + (watcher.expression) + "\"")
: "in a component render function."
),
watcher.vm
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
break
2016-06-08 09:53:43 +08:00
}
}
}
2016-07-26 10:07:26 +08:00
// devtool hook
/* istanbul ignore if */
if (devtools && config.devtools) {
2016-10-12 12:54:06 +08:00
devtools.emit('flush');
2016-07-26 10:07:26 +08:00
}
2016-10-12 12:54:06 +08:00
resetSchedulerState();
2016-06-08 09:53:43 +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.
*/
2016-08-30 03:49:00 +08:00
function queueWatcher (watcher) {
2016-10-12 12:54:06 +08:00
var id = watcher.id;
2016-10-01 02:32:00 +08:00
if (has$1[id] == null) {
2016-10-12 12:54:06 +08:00
has$1[id] = true;
2016-07-17 13:53:44 +08:00
if (!flushing) {
2016-10-12 12:54:06 +08:00
queue.push(watcher);
2016-07-17 13:53:44 +08:00
} else {
2016-07-26 10:07:26 +08:00
// if already flushing, splice the watcher based on its id
// if already past its id, it will be run next immediately.
2016-10-12 12:54:06 +08:00
var i = queue.length - 1;
2016-07-26 10:07:26 +08:00
while (i >= 0 && queue[i].id > watcher.id) {
2016-10-12 12:54:06 +08:00
i--;
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
queue.splice(Math.max(i, index) + 1, 0, watcher);
2016-07-17 13:53:44 +08:00
}
2016-06-08 09:53:43 +08:00
// queue the flush
if (!waiting) {
2016-10-12 12:54:06 +08:00
waiting = true;
nextTick(flushSchedulerQueue);
2016-06-08 09:53:43 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
/* */
2016-10-12 12:54:06 +08:00
var uid$1 = 0;
2016-06-08 09:53:43 +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.
*/
2016-08-30 03:49:00 +08:00
var Watcher = function Watcher (
vm,
expOrFn,
cb,
options
) {
if ( options === void 0 ) options = {};
2016-10-12 12:54:06 +08:00
this.vm = vm;
vm._watchers.push(this);
2016-08-30 03:49:00 +08:00
// options
2016-10-12 12:54:06 +08:00
this.deep = !!options.deep;
this.user = !!options.user;
this.lazy = !!options.lazy;
this.sync = !!options.sync;
this.expression = expOrFn.toString();
this.cb = cb;
this.id = ++uid$1; // 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();
2016-08-30 03:49:00 +08:00
// parse expression for getter
if (typeof expOrFn === 'function') {
2016-10-12 12:54:06 +08:00
this.getter = expOrFn;
2016-08-30 03:49:00 +08:00
} else {
2016-10-12 12:54:06 +08:00
this.getter = parsePath(expOrFn);
2016-08-30 03:49:00 +08:00
if (!this.getter) {
2016-10-12 12:54:06 +08:00
this.getter = function () {};
2016-08-30 03:49:00 +08:00
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
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
}
}
this.value = this.lazy
? undefined
2016-10-12 12:54:06 +08:00
: this.get();
2016-08-30 03:49:00 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
* Evaluate the getter, and re-collect dependencies.
*/
Watcher.prototype.get = function get () {
2016-10-12 12:54:06 +08:00
pushTarget(this);
var value = this.getter.call(this.vm, this.vm);
2016-08-30 03:49:00 +08:00
// "touch" every property so they are all tracked as
// dependencies for deep watching
if (this.deep) {
2016-10-12 12:54:06 +08:00
traverse(value);
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
popTarget();
this.cleanupDeps();
2016-08-30 03:49:00 +08:00
return value
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
* Add a dependency to this directive.
*/
Watcher.prototype.addDep = function addDep (dep) {
2016-10-12 12:54:06 +08:00
var id = dep.id;
2016-08-30 03:49:00 +08:00
if (!this.newDepIds.has(id)) {
2016-10-12 12:54:06 +08:00
this.newDepIds.add(id);
this.newDeps.push(dep);
2016-08-30 03:49:00 +08:00
if (!this.depIds.has(id)) {
2016-10-12 12:54:06 +08:00
dep.addSub(this);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
}
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
* Clean up for dependency collection.
*/
Watcher.prototype.cleanupDeps = function cleanupDeps () {
var this$1 = this;
2016-06-08 09:53:43 +08:00
2016-10-12 12:54:06 +08:00
var i = this.deps.length;
2016-08-30 03:49:00 +08:00
while (i--) {
2016-10-12 12:54:06 +08:00
var dep = this$1.deps[i];
2016-08-30 03:49:00 +08:00
if (!this$1.newDepIds.has(dep.id)) {
2016-10-12 12:54:06 +08:00
dep.removeSub(this$1);
2016-08-30 03:49:00 +08:00
}
}
2016-10-12 12:54:06 +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-08-30 03:49:00 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
* Subscriber interface.
* Will be called when a dependency changes.
*/
Watcher.prototype.update = function update () {
/* istanbul ignore else */
if (this.lazy) {
2016-10-12 12:54:06 +08:00
this.dirty = true;
2016-08-30 03:49:00 +08:00
} else if (this.sync) {
2016-10-12 12:54:06 +08:00
this.run();
2016-08-30 03:49:00 +08:00
} else {
2016-10-12 12:54:06 +08:00
queueWatcher(this);
2016-08-30 03:49:00 +08:00
}
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
* Scheduler job interface.
* Will be called by the scheduler.
*/
Watcher.prototype.run = function run () {
if (this.active) {
2016-10-12 12:54:06 +08:00
var value = this.get();
2016-08-30 03:49:00 +08:00
if (
value !== this.value ||
2016-06-08 09:53:43 +08:00
// Deep watchers and watchers on Object/Arrays should fire even
// when the value is the same, because the value may
// have mutated.
2016-08-30 03:49:00 +08:00
isObject(value) ||
this.deep
) {
// set new value
2016-10-12 12:54:06 +08:00
var oldValue = this.value;
this.value = value;
2016-08-30 03:49:00 +08:00
if (this.user) {
try {
2016-10-12 12:54:06 +08:00
this.cb.call(this.vm, value, oldValue);
2016-08-30 03:49:00 +08:00
} catch (e) {
process.env.NODE_ENV !== 'production' && warn(
("Error in watcher \"" + (this.expression) + "\""),
this.vm
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
/* istanbul ignore else */
if (config.errorHandler) {
2016-10-12 12:54:06 +08:00
config.errorHandler.call(null, e, this.vm);
2016-08-30 03:49:00 +08:00
} else {
throw e
2016-06-28 10:25:12 +08:00
}
}
2016-08-30 03:49:00 +08:00
} else {
2016-10-12 12:54:06 +08:00
this.cb.call(this.vm, value, oldValue);
2016-06-08 09:53:43 +08:00
}
}
2016-08-30 03:49:00 +08:00
}
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
* Evaluate the value of the watcher.
* This only gets called for lazy watchers.
*/
Watcher.prototype.evaluate = function evaluate () {
2016-10-12 12:54:06 +08:00
this.value = this.get();
this.dirty = false;
2016-08-30 03:49:00 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
* Depend on all deps collected by this watcher.
*/
Watcher.prototype.depend = function depend () {
var this$1 = this;
2016-06-08 09:53:43 +08:00
2016-10-12 12:54:06 +08:00
var i = this.deps.length;
2016-08-30 03:49:00 +08:00
while (i--) {
2016-10-12 12:54:06 +08:00
this$1.deps[i].depend();
2016-08-30 03:49:00 +08:00
}
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
2016-11-05 04:47:02 +08:00
* Remove self from all dependencies' subscriber list.
2016-08-30 03:49:00 +08:00
*/
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 or is performing a v-for
// re-render (the watcher list is then filtered by v-for).
if (!this.vm._isBeingDestroyed && !this.vm._vForRemoving) {
2016-10-12 12:54:06 +08:00
remove$1(this.vm._watchers, this);
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
var i = this.deps.length;
2016-06-08 09:53:43 +08:00
while (i--) {
2016-10-12 12:54:06 +08:00
this$1.deps[i].removeSub(this$1);
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
this.active = false;
2016-08-30 03:49:00 +08:00
}
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +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.
*/
2016-10-12 12:54:06 +08:00
var seenObjects = new _Set();
2016-11-05 04:47:02 +08:00
function traverse (val) {
seenObjects.clear();
_traverse(val, seenObjects);
}
function _traverse (val, seen) {
2016-10-12 12:54:06 +08:00
var i, keys;
var isA = Array.isArray(val);
2016-11-05 04:47:02 +08:00
if ((!isA && !isObject(val)) || !Object.isExtensible(val)) {
return
}
if (val.__ob__) {
var depId = val.__ob__.dep.id;
if (seen.has(depId)) {
return
2016-06-08 09:53:43 +08:00
}
2016-11-05 04:47:02 +08:00
seen.add(depId);
}
if (isA) {
i = val.length;
while (i--) { _traverse(val[i], seen); }
} else {
keys = Object.keys(val);
i = keys.length;
while (i--) { _traverse(val[keys[i]], seen); }
2016-06-08 09:53:43 +08:00
}
}
2016-08-30 03:49:00 +08:00
/*
* not type checking this file because flow doesn't play well with
* dynamically accessing methods on Array prototype
*/
2016-10-12 12:54:06 +08:00
var arrayProto = Array.prototype;
2016-10-01 02:32:00 +08:00
var arrayMethods = Object.create(arrayProto);[
2016-08-30 03:49:00 +08:00
'push',
'pop',
'shift',
'unshift',
'splice',
'sort',
'reverse'
]
.forEach(function (method) {
2016-06-08 09:53:43 +08:00
// cache original method
2016-10-12 12:54:06 +08:00
var original = arrayProto[method];
2016-08-30 03:49:00 +08:00
def(arrayMethods, method, function mutator () {
var arguments$1 = arguments;
2016-06-08 09:53:43 +08:00
// avoid leaking arguments:
2016-04-27 01:29:27 +08:00
// http://jsperf.com/closure-with-arguments
2016-10-12 12:54:06 +08:00
var i = arguments.length;
var args = new Array(i);
2016-04-27 01:29:27 +08:00
while (i--) {
2016-10-12 12:54:06 +08:00
args[i] = arguments$1[i];
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var result = original.apply(this, args);
var ob = this.__ob__;
var inserted;
2016-04-27 01:29:27 +08:00
switch (method) {
case 'push':
2016-10-12 12:54:06 +08:00
inserted = args;
2016-08-30 03:49:00 +08:00
break
2016-04-27 01:29:27 +08:00
case 'unshift':
2016-10-12 12:54:06 +08:00
inserted = args;
2016-08-30 03:49:00 +08:00
break
2016-04-27 01:29:27 +08:00
case 'splice':
2016-10-12 12:54:06 +08:00
inserted = args.slice(2);
2016-08-30 03:49:00 +08:00
break
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
if (inserted) { ob.observeArray(inserted); }
2016-04-27 01:29:27 +08:00
// notify change
2016-10-12 12:54:06 +08:00
ob.dep.notify();
2016-08-30 03:49:00 +08:00
return result
2016-10-12 12:54:06 +08:00
});
});
2016-08-30 03:49:00 +08:00
/* */
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
var arrayKeys = Object.getOwnPropertyNames(arrayMethods);
2016-04-27 01:29:27 +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.
*/
var observerState = {
2016-06-08 09:53:43 +08:00
shouldConvert: true,
isSettingProps: false
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +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.
*/
2016-08-30 03:49:00 +08:00
var Observer = function Observer (value) {
2016-10-12 12:54:06 +08:00
this.value = value;
this.dep = new Dep();
this.vmCount = 0;
def(value, '__ob__', this);
2016-08-30 03:49:00 +08:00
if (Array.isArray(value)) {
var augment = hasProto
? protoAugment
2016-10-12 12:54:06 +08:00
: copyAugment;
augment(value, arrayMethods, arrayKeys);
this.observeArray(value);
2016-08-30 03:49:00 +08:00
} else {
2016-10-12 12:54:06 +08:00
this.walk(value);
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +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) {
2016-10-12 12:54:06 +08:00
var keys = Object.keys(obj);
2016-09-13 21:21:02 +08:00
for (var i = 0; i < keys.length; i++) {
2016-10-12 12:54:06 +08:00
defineReactive$$1(obj, keys[i], obj[keys[i]]);
2016-08-30 03:49:00 +08:00
}
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/**
* Observe a list of Array items.
*/
Observer.prototype.observeArray = function observeArray (items) {
for (var i = 0, l = items.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
observe(items[i]);
2016-08-30 03:49:00 +08:00
}
};
2016-04-27 01:29:27 +08:00
// helpers
/**
* Augment an target Object or Array by intercepting
* the prototype chain using __proto__
*/
2016-08-30 03:49:00 +08:00
function protoAugment (target, src) {
2016-04-27 01:29:27 +08:00
/* eslint-disable no-proto */
2016-10-12 12:54:06 +08:00
target.__proto__ = src;
2016-04-27 01:29:27 +08:00
/* eslint-enable no-proto */
}
/**
* Augment an target Object or Array by defining
* hidden properties.
*
2016-06-08 09:53:43 +08:00
* istanbul ignore next
2016-04-27 01:29:27 +08:00
*/
2016-08-30 03:49:00 +08:00
function copyAugment (target, src, keys) {
2016-04-27 01:29:27 +08:00
for (var i = 0, l = keys.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
var key = keys[i];
def(target, key, src[key]);
2016-04-27 01:29:27 +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.
*/
2016-08-30 03:49:00 +08:00
function observe (value) {
2016-04-27 01:29:27 +08:00
if (!isObject(value)) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var ob;
2016-04-27 01:29:27 +08:00
if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {
2016-10-12 12:54:06 +08:00
ob = value.__ob__;
2016-08-30 03:49:00 +08:00
} else if (
observerState.shouldConvert &&
!config._isServer &&
(Array.isArray(value) || isPlainObject(value)) &&
Object.isExtensible(value) &&
!value._isVue
) {
2016-10-12 12:54:06 +08:00
ob = new Observer(value);
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return ob
2016-04-27 01:29:27 +08:00
}
/**
* Define a reactive property on an Object.
*/
2016-10-01 02:32:00 +08:00
function defineReactive$$1 (
2016-08-30 03:49:00 +08:00
obj,
key,
val,
customSetter
) {
2016-10-12 12:54:06 +08:00
var dep = new Dep();
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
var property = Object.getOwnPropertyDescriptor(obj, key);
2016-04-27 01:29:27 +08:00
if (property && property.configurable === false) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
// cater for pre-defined getter/setters
2016-10-12 12:54:06 +08:00
var getter = property && property.get;
var setter = property && property.set;
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
var childOb = observe(val);
2016-04-27 01:29:27 +08:00
Object.defineProperty(obj, key, {
enumerable: true,
configurable: true,
2016-08-30 03:49:00 +08:00
get: function reactiveGetter () {
2016-10-12 12:54:06 +08:00
var value = getter ? getter.call(obj) : val;
2016-04-27 01:29:27 +08:00
if (Dep.target) {
2016-10-12 12:54:06 +08:00
dep.depend();
2016-04-27 01:29:27 +08:00
if (childOb) {
2016-10-12 12:54:06 +08:00
childOb.dep.depend();
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
if (Array.isArray(value)) {
2016-10-12 12:54:06 +08:00
dependArray(value);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
return value
2016-04-27 01:29:27 +08:00
},
2016-08-30 03:49:00 +08:00
set: function reactiveSetter (newVal) {
2016-10-12 12:54:06 +08:00
var value = getter ? getter.call(obj) : val;
2016-11-20 11:14:58 +08:00
/* eslint-disable no-self-compare */
if (newVal === value || (newVal !== newVal && value !== value)) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-11-20 11:14:58 +08:00
/* eslint-enable no-self-compare */
2016-06-08 09:53:43 +08:00
if (process.env.NODE_ENV !== 'production' && customSetter) {
2016-10-12 12:54:06 +08:00
customSetter();
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
if (setter) {
2016-10-12 12:54:06 +08:00
setter.call(obj, newVal);
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
val = newVal;
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
childOb = observe(newVal);
dep.notify();
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
});
2016-04-27 01:29:27 +08:00
}
/**
* Set a property on an object. Adds the new property and
* triggers change notification if the property doesn't
* already exist.
*/
2016-08-30 03:49:00 +08:00
function set (obj, key, val) {
2016-06-08 09:53:43 +08:00
if (Array.isArray(obj)) {
2016-11-05 04:47:02 +08:00
obj.length = Math.max(obj.length, key);
2016-10-12 12:54:06 +08:00
obj.splice(key, 1, val);
2016-08-30 03:49:00 +08:00
return val
2016-04-27 01:29:27 +08:00
}
if (hasOwn(obj, key)) {
2016-10-12 12:54:06 +08:00
obj[key] = val;
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var ob = obj.__ob__;
2016-08-30 03:49:00 +08:00
if (obj._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.'
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
if (!ob) {
2016-10-12 12:54:06 +08:00
obj[key] = val;
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
defineReactive$$1(ob.value, key, val);
ob.dep.notify();
2016-08-30 03:49:00 +08:00
return val
2016-04-27 01:29:27 +08:00
}
/**
* Delete a property and trigger change if necessary.
*/
2016-08-30 03:49:00 +08:00
function del (obj, key) {
2016-10-12 12:54:06 +08:00
var ob = obj.__ob__;
2016-08-30 03:49:00 +08:00
if (obj._isVue || (ob && ob.vmCount)) {
process.env.NODE_ENV !== 'production' && warn(
'Avoid deleting properties on a Vue instance or its root $data ' +
'- just set it to null.'
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
if (!hasOwn(obj, key)) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
delete obj[key];
2016-04-27 01:29:27 +08:00
if (!ob) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
ob.dep.notify();
}
/**
* Collect dependencies on array elements when the array is touched, since
* we cannot intercept array element access like property getters.
*/
function dependArray (value) {
2016-11-16 07:05:02 +08:00
for (var e = (void 0), i = 0, l = value.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
e = value[i];
e && e.__ob__ && e.__ob__.dep.depend();
if (Array.isArray(e)) {
dependArray(e);
}
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
function initState (vm) {
2016-10-12 12:54:06 +08:00
vm._watchers = [];
initProps(vm);
initData(vm);
initComputed(vm);
initMethods(vm);
initWatch(vm);
2016-04-27 01:29:27 +08:00
}
2016-11-20 11:14:58 +08:00
var isReservedProp = makeMap('key,ref,slot');
2016-08-30 03:49:00 +08:00
function initProps (vm) {
2016-10-12 12:54:06 +08:00
var props = vm.$options.props;
2016-06-08 09:53:43 +08:00
if (props) {
2016-10-12 12:54:06 +08:00
var propsData = vm.$options.propsData || {};
var keys = vm.$options._propKeys = Object.keys(props);
var isRoot = !vm.$parent;
2016-06-08 09:53:43 +08:00
// root instance props should be converted
2016-10-12 12:54:06 +08:00
observerState.shouldConvert = isRoot;
2016-08-30 03:49:00 +08:00
var loop = function ( i ) {
2016-10-12 12:54:06 +08:00
var key = keys[i];
2016-06-08 09:53:43 +08:00
/* istanbul ignore else */
if (process.env.NODE_ENV !== 'production') {
2016-11-20 11:14:58 +08:00
if (isReservedProp(key)) {
warn(
("\"" + key + "\" is a reserved attribute and cannot be used as component prop."),
vm
);
}
2016-10-01 02:32:00 +08:00
defineReactive$$1(vm, key, validateProp(key, props, propsData, vm), function () {
2016-06-08 09:53:43 +08:00
if (vm.$parent && !observerState.isSettingProps) {
2016-08-30 03:49:00 +08:00
warn(
"Avoid mutating a prop directly since the value will be " +
"overwritten whenever the parent component re-renders. " +
"Instead, use a data or computed property based on the prop's " +
"value. Prop being mutated: \"" + key + "\"",
vm
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
});
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
defineReactive$$1(vm, key, validateProp(key, props, propsData, vm));
2016-04-27 01:29:27 +08:00
}
};
2016-08-30 03:49:00 +08:00
for (var i = 0; i < keys.length; i++) loop( i );
2016-10-12 12:54:06 +08:00
observerState.shouldConvert = true;
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function initData (vm) {
2016-10-12 12:54:06 +08:00
var data = vm.$options.data;
2016-08-30 03:49:00 +08:00
data = vm._data = typeof data === 'function'
? data.call(vm)
2016-10-12 12:54:06 +08:00
: data || {};
2016-06-08 09:53:43 +08:00
if (!isPlainObject(data)) {
2016-10-12 12:54:06 +08:00
data = {};
2016-08-30 03:49:00 +08:00
process.env.NODE_ENV !== 'production' && warn(
'data functions should return an object.',
vm
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
}
// proxy data on instance
2016-10-12 12:54:06 +08:00
var keys = Object.keys(data);
var props = vm.$options.props;
var i = keys.length;
2016-06-08 09:53:43 +08:00
while (i--) {
if (props && hasOwn(props, keys[i])) {
2016-08-30 03:49:00 +08:00
process.env.NODE_ENV !== 'production' && warn(
"The data property \"" + (keys[i]) + "\" is already declared as a prop. " +
"Use prop default value instead.",
vm
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
proxy(vm, keys[i]);
2016-04-27 01:29:27 +08:00
}
}
2016-06-08 09:53:43 +08:00
// observe data
2016-10-12 12:54:06 +08:00
observe(data);
data.__ob__ && data.__ob__.vmCount++;
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
var computedSharedDefinition = {
enumerable: true,
configurable: true,
get: noop,
set: noop
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function initComputed (vm) {
2016-10-12 12:54:06 +08:00
var computed = vm.$options.computed;
2016-06-08 09:53:43 +08:00
if (computed) {
2016-08-30 03:49:00 +08:00
for (var key in computed) {
2016-10-12 12:54:06 +08:00
var userDef = computed[key];
2016-06-08 09:53:43 +08:00
if (typeof userDef === 'function') {
2016-10-12 12:54:06 +08:00
computedSharedDefinition.get = makeComputedGetter(userDef, vm);
computedSharedDefinition.set = noop;
2016-06-08 09:53:43 +08:00
} else {
2016-08-30 03:49:00 +08:00
computedSharedDefinition.get = userDef.get
? userDef.cache !== false
? makeComputedGetter(userDef.get, vm)
2016-10-01 02:32:00 +08:00
: bind$1(userDef.get, vm)
2016-10-12 12:54:06 +08:00
: noop;
2016-08-30 03:49:00 +08:00
computedSharedDefinition.set = userDef.set
2016-10-01 02:32:00 +08:00
? bind$1(userDef.set, vm)
2016-10-12 12:54:06 +08:00
: noop;
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
Object.defineProperty(vm, key, computedSharedDefinition);
2016-04-27 01:29:27 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
function makeComputedGetter (getter, owner) {
2016-06-08 09:53:43 +08:00
var watcher = new Watcher(owner, getter, noop, {
lazy: true
2016-10-12 12:54:06 +08:00
});
2016-08-30 03:49:00 +08:00
return function computedGetter () {
2016-06-08 09:53:43 +08:00
if (watcher.dirty) {
2016-10-12 12:54:06 +08:00
watcher.evaluate();
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
if (Dep.target) {
2016-10-12 12:54:06 +08:00
watcher.depend();
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return watcher.value
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function initMethods (vm) {
2016-10-12 12:54:06 +08:00
var methods = vm.$options.methods;
2016-06-08 09:53:43 +08:00
if (methods) {
2016-08-30 03:49:00 +08:00
for (var key in methods) {
2016-10-12 12:54:06 +08:00
vm[key] = methods[key] == null ? noop : bind$1(methods[key], vm);
2016-11-16 07:05:02 +08:00
if (process.env.NODE_ENV !== 'production' && methods[key] == null) {
warn(
2016-10-12 12:54:06 +08:00
"method \"" + key + "\" has an undefined value in the component definition. " +
"Did you reference the function correctly?",
vm
);
2016-09-13 21:21:02 +08:00
}
2016-04-27 01:29:27 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
function initWatch (vm) {
2016-10-12 12:54:06 +08:00
var watch = vm.$options.watch;
2016-06-08 09:53:43 +08:00
if (watch) {
2016-08-30 03:49:00 +08:00
for (var key in watch) {
2016-10-12 12:54:06 +08:00
var handler = watch[key];
2016-06-08 09:53:43 +08:00
if (Array.isArray(handler)) {
for (var i = 0; i < handler.length; i++) {
2016-10-12 12:54:06 +08:00
createWatcher(vm, key, handler[i]);
2016-06-08 09:53:43 +08:00
}
} else {
2016-10-12 12:54:06 +08:00
createWatcher(vm, key, handler);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
function createWatcher (vm, key, handler) {
2016-10-12 12:54:06 +08:00
var options;
2016-06-08 09:53:43 +08:00
if (isPlainObject(handler)) {
2016-10-12 12:54:06 +08:00
options = handler;
handler = handler.handler;
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
if (typeof handler === 'string') {
2016-10-12 12:54:06 +08:00
handler = vm[handler];
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
vm.$watch(key, handler, options);
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function stateMixin (Vue) {
2016-06-08 09:53:43 +08:00
// flow somehow has problems with directly declared definition object
// when using Object.defineProperty, so we have to procedurally build up
// the object here.
2016-10-12 12:54:06 +08:00
var dataDef = {};
2016-06-08 09:53:43 +08:00
dataDef.get = function () {
2016-08-30 03:49:00 +08:00
return this._data
2016-10-12 12:54:06 +08:00
};
2016-06-18 02:22:51 +08:00
if (process.env.NODE_ENV !== 'production') {
dataDef.set = function (newData) {
2016-08-30 03:49:00 +08:00
warn(
'Avoid replacing instance root $data. ' +
'Use nested data properties instead.',
this
2016-10-12 12:54:06 +08:00
);
};
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
Object.defineProperty(Vue.prototype, '$data', dataDef);
2016-08-30 03:49:00 +08:00
2016-10-12 12:54:06 +08:00
Vue.prototype.$set = set;
Vue.prototype.$delete = del;
2016-08-30 03:49:00 +08:00
Vue.prototype.$watch = function (
expOrFn,
cb,
options
) {
2016-10-12 12:54:06 +08:00
var vm = this;
options = options || {};
options.user = true;
var watcher = new Watcher(vm, expOrFn, cb, options);
2016-06-08 09:53:43 +08:00
if (options.immediate) {
2016-10-12 12:54:06 +08:00
cb.call(vm, watcher.value);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return function unwatchFn () {
2016-10-12 12:54:06 +08:00
watcher.teardown();
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function proxy (vm, key) {
2016-06-18 02:22:51 +08:00
if (!isReserved(key)) {
Object.defineProperty(vm, key, {
configurable: true,
enumerable: true,
2016-08-30 03:49:00 +08:00
get: function proxyGetter () {
return vm._data[key]
2016-06-18 02:22:51 +08:00
},
2016-08-30 03:49:00 +08:00
set: function proxySetter (val) {
2016-10-12 12:54:06 +08:00
vm._data[key] = val;
2016-06-18 02:22:51 +08:00
}
2016-10-12 12:54:06 +08:00
});
2016-08-30 03:49:00 +08:00
}
}
/* */
var VNode = function VNode (
tag,
data,
children,
text,
elm,
ns,
context,
componentOptions
) {
2016-10-12 12:54:06 +08:00
this.tag = tag;
this.data = data;
this.children = children;
this.text = text;
this.elm = elm;
this.ns = ns;
this.context = context;
this.functionalContext = undefined;
this.key = data && data.key;
this.componentOptions = componentOptions;
this.child = undefined;
this.parent = undefined;
this.raw = false;
this.isStatic = false;
this.isRootInsert = true;
this.isComment = false;
this.isCloned = false;
2016-11-05 04:47:02 +08:00
this.isOnce = false;
2016-06-11 07:23:32 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
var emptyVNode = function () {
2016-10-12 12:54:06 +08:00
var node = new VNode();
node.text = '';
node.isComment = true;
2016-08-30 03:49:00 +08:00
return node
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +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.
function cloneVNode (vnode) {
var cloned = new VNode(
vnode.tag,
vnode.data,
vnode.children,
vnode.text,
vnode.elm,
vnode.ns,
vnode.context,
vnode.componentOptions
2016-10-12 12:54:06 +08:00
);
cloned.isStatic = vnode.isStatic;
cloned.key = vnode.key;
cloned.isCloned = true;
2016-08-30 03:49:00 +08:00
return cloned
}
function cloneVNodes (vnodes) {
2016-10-12 12:54:06 +08:00
var res = new Array(vnodes.length);
2016-08-30 03:49:00 +08:00
for (var i = 0; i < vnodes.length; i++) {
2016-10-12 12:54:06 +08:00
res[i] = cloneVNode(vnodes[i]);
2016-08-30 03:49:00 +08:00
}
return res
}
/* */
2016-10-13 17:27:27 +08:00
function mergeVNodeHook (def, hookKey, hook, key) {
2016-10-12 12:54:06 +08:00
key = key + hookKey;
2016-10-13 17:27:27 +08:00
var injectedHash = def.__injected || (def.__injected = {});
2016-10-12 12:54:06 +08:00
if (!injectedHash[key]) {
injectedHash[key] = true;
2016-10-13 17:27:27 +08:00
var oldHook = def[hookKey];
2016-10-12 12:54:06 +08:00
if (oldHook) {
2016-10-13 17:27:27 +08:00
def[hookKey] = function () {
2016-10-12 12:54:06 +08:00
oldHook.apply(this, arguments);
hook.apply(this, arguments);
};
} else {
2016-10-13 17:27:27 +08:00
def[hookKey] = hook;
2016-08-30 03:49:00 +08:00
}
2016-07-17 13:53:44 +08:00
}
}
2016-10-13 17:27:27 +08:00
/* */
2016-08-30 03:49:00 +08:00
function updateListeners (
on,
oldOn,
add,
2016-10-12 12:54:06 +08:00
remove$$1,
vm
2016-08-30 03:49:00 +08:00
) {
2016-10-12 12:54:06 +08:00
var name, cur, old, fn, event, capture;
2016-06-08 09:53:43 +08:00
for (name in on) {
2016-10-12 12:54:06 +08:00
cur = on[name];
old = oldOn[name];
2016-08-16 11:39:07 +08:00
if (!cur) {
2016-08-30 03:49:00 +08:00
process.env.NODE_ENV !== 'production' && warn(
2016-10-12 12:54:06 +08:00
"Invalid handler for event \"" + name + "\": got " + String(cur),
vm
);
2016-08-16 11:39:07 +08:00
} else if (!old) {
2016-10-12 12:54:06 +08:00
capture = name.charAt(0) === '!';
event = capture ? name.slice(1) : name;
2016-06-08 09:53:43 +08:00
if (Array.isArray(cur)) {
2016-10-12 12:54:06 +08:00
add(event, (cur.invoker = arrInvoker(cur)), capture);
2016-06-08 09:53:43 +08:00
} else {
2016-08-30 03:49:00 +08:00
if (!cur.invoker) {
2016-10-12 12:54:06 +08:00
fn = cur;
cur = on[name] = {};
cur.fn = fn;
cur.invoker = fnInvoker(cur);
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
add(event, cur.invoker, capture);
2016-06-08 09:53:43 +08:00
}
2016-09-08 19:29:47 +08:00
} else if (cur !== old) {
if (Array.isArray(old)) {
2016-10-12 12:54:06 +08:00
old.length = cur.length;
for (var i = 0; i < old.length; i++) { old[i] = cur[i]; }
on[name] = old;
2016-09-08 19:29:47 +08:00
} else {
2016-10-12 12:54:06 +08:00
old.fn = cur;
on[name] = old;
2016-09-08 19:29:47 +08:00
}
2016-04-27 01:29:27 +08:00
}
}
2016-06-08 09:53:43 +08:00
for (name in oldOn) {
if (!on[name]) {
2016-10-12 12:54:06 +08:00
event = name.charAt(0) === '!' ? name.slice(1) : name;
remove$$1(event, oldOn[name].invoker);
2016-04-27 01:29:27 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
function arrInvoker (arr) {
2016-06-08 09:53:43 +08:00
return function (ev) {
2016-08-30 03:49:00 +08:00
var arguments$1 = arguments;
2016-10-12 12:54:06 +08:00
var single = arguments.length === 1;
2016-06-08 09:53:43 +08:00
for (var i = 0; i < arr.length; i++) {
2016-10-12 12:54:06 +08:00
single ? arr[i](ev) : arr[i].apply(null, arguments$1);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function fnInvoker (o) {
2016-06-08 09:53:43 +08:00
return function (ev) {
2016-10-12 12:54:06 +08:00
var single = arguments.length === 1;
single ? o.fn(ev) : o.fn.apply(null, arguments);
2016-08-30 03:49:00 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-08-06 06:14:22 +08:00
2016-10-13 17:27:27 +08:00
function normalizeChildren (
children,
ns,
nestedIndex
) {
if (isPrimitive(children)) {
return [createTextVNode(children)]
}
if (Array.isArray(children)) {
var res = [];
for (var i = 0, l = children.length; i < l; i++) {
var c = children[i];
var last = res[res.length - 1];
// nested
if (Array.isArray(c)) {
res.push.apply(res, normalizeChildren(c, ns, ((nestedIndex || '') + "_" + i)));
} else if (isPrimitive(c)) {
if (last && last.text) {
last.text += String(c);
} else if (c !== '') {
// convert primitive to vnode
res.push(createTextVNode(c));
}
} else if (c instanceof VNode) {
if (c.text && last && last.text) {
2016-11-17 05:54:25 +08:00
if (!last.isCloned) {
last.text += c.text;
}
2016-10-13 17:27:27 +08:00
} else {
// inherit parent namespace
if (ns) {
applyNS(c, ns);
}
// default key for nested array children (likely generated by v-for)
if (c.tag && c.key == null && nestedIndex != null) {
c.key = "__vlist" + nestedIndex + "_" + i + "__";
}
res.push(c);
}
}
}
return res
}
}
function createTextVNode (val) {
return new VNode(undefined, undefined, undefined, String(val))
}
function applyNS (vnode, ns) {
if (vnode.tag && !vnode.ns) {
vnode.ns = ns;
if (vnode.children) {
for (var i = 0, l = vnode.children.length; i < l; i++) {
applyNS(vnode.children[i], ns);
}
}
}
}
/* */
function getFirstComponentChild (children) {
return children && children.filter(function (c) { return c && c.componentOptions; })[0]
}
/* */
2016-10-12 12:54:06 +08:00
var activeInstance = null;
2016-08-30 03:49:00 +08:00
function initLifecycle (vm) {
2016-10-12 12:54:06 +08:00
var options = vm.$options;
2016-04-27 01:29:27 +08:00
2016-07-17 13:53:44 +08:00
// locate first non-abstract parent
2016-10-12 12:54:06 +08:00
var parent = options.parent;
2016-07-24 10:48:09 +08:00
if (parent && !options.abstract) {
while (parent.$options.abstract && parent.$parent) {
2016-10-12 12:54:06 +08:00
parent = parent.$parent;
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
parent.$children.push(vm);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
vm.$parent = parent;
vm.$root = parent ? parent.$root : vm;
2016-07-17 13:53:44 +08:00
2016-10-12 12:54:06 +08:00
vm.$children = [];
vm.$refs = {};
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
vm._watcher = null;
vm._inactive = false;
vm._isMounted = false;
vm._isDestroyed = false;
vm._isBeingDestroyed = false;
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function lifecycleMixin (Vue) {
Vue.prototype._mount = function (
el,
hydrating
) {
2016-10-12 12:54:06 +08:00
var vm = this;
vm.$el = el;
2016-06-08 09:53:43 +08:00
if (!vm.$options.render) {
2016-10-12 12:54:06 +08:00
vm.$options.render = emptyVNode;
2016-06-08 09:53:43 +08:00
if (process.env.NODE_ENV !== 'production') {
/* istanbul ignore if */
2016-11-16 07:05:02 +08:00
if (vm.$options.template && vm.$options.template.charAt(0) !== '#') {
2016-08-30 03:49:00 +08:00
warn(
'You are using the runtime-only build of Vue where the template ' +
'option is not available. Either pre-compile the templates into ' +
'render functions, or use the compiler-included build.',
vm
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
} else {
2016-08-30 03:49:00 +08:00
warn(
'Failed to mount component: template or render function not defined.',
vm
2016-10-12 12:54:06 +08:00
);
2016-04-27 01:29:27 +08:00
}
}
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
callHook(vm, 'beforeMount');
2016-06-08 09:53:43 +08:00
vm._watcher = new Watcher(vm, function () {
2016-10-12 12:54:06 +08:00
vm._update(vm._render(), hydrating);
}, noop);
hydrating = false;
// manually mounted instance, call mounted on self
// mounted is called for render-created child components in its inserted hook
if (vm.$vnode == null) {
vm._isMounted = true;
callHook(vm, 'mounted');
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return vm
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
Vue.prototype._update = function (vnode, hydrating) {
2016-10-12 12:54:06 +08:00
var vm = this;
2016-06-08 09:53:43 +08:00
if (vm._isMounted) {
2016-10-12 12:54:06 +08:00
callHook(vm, 'beforeUpdate');
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var prevEl = vm.$el;
var prevActiveInstance = activeInstance;
activeInstance = vm;
var prevVnode = vm._vnode;
vm._vnode = vnode;
2016-08-16 11:39:07 +08:00
if (!prevVnode) {
2016-06-08 09:53:43 +08:00
// Vue.prototype.__patch__ is injected in entry points
// based on the rendering backend used.
2016-10-12 12:54:06 +08:00
vm.$el = vm.__patch__(vm.$el, vnode, hydrating);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
vm.$el = vm.__patch__(prevVnode, vnode);
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
activeInstance = prevActiveInstance;
2016-06-23 03:33:53 +08:00
// update __vue__ reference
if (prevEl) {
2016-10-12 12:54:06 +08:00
prevEl.__vue__ = null;
2016-06-23 03:33:53 +08:00
}
if (vm.$el) {
2016-10-12 12:54:06 +08:00
vm.$el.__vue__ = vm;
2016-06-23 03:33:53 +08:00
}
2016-07-08 05:53:22 +08:00
// if parent is an HOC, update its $el as well
if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {
2016-10-12 12:54:06 +08:00
vm.$parent.$el = vm.$el;
2016-06-08 09:53:43 +08:00
}
if (vm._isMounted) {
2016-10-12 12:54:06 +08:00
callHook(vm, 'updated');
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
Vue.prototype._updateFromParent = function (
propsData,
listeners,
parentVnode,
renderChildren
) {
2016-10-12 12:54:06 +08:00
var vm = this;
var hasChildren = !!(vm.$options._renderChildren || renderChildren);
vm.$options._parentVnode = parentVnode;
vm.$options._renderChildren = renderChildren;
2016-06-08 09:53:43 +08:00
// update props
if (propsData && vm.$options.props) {
2016-10-12 12:54:06 +08:00
observerState.shouldConvert = false;
2016-06-08 09:53:43 +08:00
if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
observerState.isSettingProps = true;
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var propKeys = vm.$options._propKeys || [];
2016-06-08 09:53:43 +08:00
for (var i = 0; i < propKeys.length; i++) {
2016-10-12 12:54:06 +08:00
var key = propKeys[i];
vm[key] = validateProp(key, vm.$options.props, propsData, vm);
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
observerState.shouldConvert = true;
2016-06-08 09:53:43 +08:00
if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
observerState.isSettingProps = false;
2016-04-27 01:29:27 +08:00
}
2016-11-05 11:47:26 +08:00
vm.$options.propsData = propsData;
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
// update listeners
if (listeners) {
2016-10-12 12:54:06 +08:00
var oldListeners = vm.$options._parentListeners;
vm.$options._parentListeners = listeners;
vm._updateListeners(listeners, oldListeners);
2016-06-08 09:53:43 +08:00
}
2016-08-10 12:55:30 +08:00
// resolve slots + force update if has children
2016-08-06 06:14:22 +08:00
if (hasChildren) {
2016-10-12 12:54:06 +08:00
vm.$slots = resolveSlots(renderChildren, vm._renderContext);
vm.$forceUpdate();
2016-08-06 06:14:22 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
Vue.prototype.$forceUpdate = function () {
2016-10-12 12:54:06 +08:00
var vm = this;
2016-06-08 09:53:43 +08:00
if (vm._watcher) {
2016-10-12 12:54:06 +08:00
vm._watcher.update();
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
Vue.prototype.$destroy = function () {
2016-10-12 12:54:06 +08:00
var vm = this;
2016-06-08 09:53:43 +08:00
if (vm._isBeingDestroyed) {
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
callHook(vm, 'beforeDestroy');
vm._isBeingDestroyed = true;
2016-06-08 09:53:43 +08:00
// remove self from parent
2016-10-12 12:54:06 +08:00
var parent = vm.$parent;
2016-07-24 10:48:09 +08:00
if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {
2016-10-12 12:54:06 +08:00
remove$1(parent.$children, vm);
2016-06-08 09:53:43 +08:00
}
// teardown watchers
if (vm._watcher) {
2016-10-12 12:54:06 +08:00
vm._watcher.teardown();
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var i = vm._watchers.length;
2016-06-08 09:53:43 +08:00
while (i--) {
2016-10-12 12:54:06 +08:00
vm._watchers[i].teardown();
2016-06-08 09:53:43 +08:00
}
// remove reference from data ob
// frozen object may not have observer.
if (vm._data.__ob__) {
2016-10-12 12:54:06 +08:00
vm._data.__ob__.vmCount--;
2016-06-08 09:53:43 +08:00
}
// call the last hook...
2016-10-12 12:54:06 +08:00
vm._isDestroyed = true;
callHook(vm, 'destroyed');
2016-06-08 09:53:43 +08:00
// turn off all instance listeners.
2016-10-12 12:54:06 +08:00
vm.$off();
2016-06-23 03:33:53 +08:00
// remove __vue__ reference
if (vm.$el) {
2016-10-12 12:54:06 +08:00
vm.$el.__vue__ = null;
2016-06-23 03:33:53 +08:00
}
2016-10-13 17:27:27 +08:00
// invoke destroy hooks on current rendered tree
vm.__patch__(vm._vnode, null);
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function callHook (vm, hook) {
2016-10-12 12:54:06 +08:00
var handlers = vm.$options[hook];
2016-06-08 09:53:43 +08:00
if (handlers) {
for (var i = 0, j = handlers.length; i < j; i++) {
2016-10-12 12:54:06 +08:00
handlers[i].call(vm);
2016-04-27 01:29:27 +08:00
}
}
2016-10-12 12:54:06 +08:00
vm.$emit('hook:' + hook);
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-10-12 12:54:06 +08:00
var hooks = { init: init, prepatch: prepatch, insert: insert, destroy: destroy$1 };
var hooksToMerge = Object.keys(hooks);
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function createComponent (
Ctor,
data,
context,
children,
tag
) {
2016-06-08 09:53:43 +08:00
if (!Ctor) {
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-06-28 10:25:12 +08:00
2016-11-16 07:05:02 +08:00
var baseCtor = context.$options._base;
2016-06-08 09:53:43 +08:00
if (isObject(Ctor)) {
2016-11-16 07:05:02 +08:00
Ctor = baseCtor.extend(Ctor);
2016-06-08 09:53:43 +08:00
}
2016-06-28 10:25:12 +08:00
2016-06-08 09:53:43 +08:00
if (typeof Ctor !== 'function') {
if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
warn(("Invalid Component definition: " + (String(Ctor))), context);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
// async component
if (!Ctor.cid) {
if (Ctor.resolved) {
2016-10-12 12:54:06 +08:00
Ctor = Ctor.resolved;
2016-06-08 09:53:43 +08:00
} else {
2016-11-16 07:05:02 +08:00
Ctor = resolveAsyncComponent(Ctor, baseCtor, function () {
2016-06-08 09:53:43 +08:00
// it's ok to queue this on every render because
2016-08-06 06:14:22 +08:00
// $forceUpdate is buffered by the scheduler.
2016-10-12 12:54:06 +08:00
context.$forceUpdate();
});
2016-06-08 09:53:43 +08:00
if (!Ctor) {
// return nothing if this is indeed an async component
// wait for the callback to trigger parent update.
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
}
2016-11-16 07:05:02 +08:00
// resolve constructor options in case global mixins are applied after
// component constructor creation
resolveConstructorOptions(Ctor);
2016-10-12 12:54:06 +08:00
data = data || {};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
// extract props
2016-10-12 12:54:06 +08:00
var propsData = extractProps(data, Ctor);
2016-04-27 01:29:27 +08:00
2016-06-28 10:25:12 +08:00
// functional component
if (Ctor.options.functional) {
2016-08-30 03:49:00 +08:00
return createFunctionalComponent(Ctor, propsData, data, context, children)
2016-06-28 10:25:12 +08:00
}
2016-06-08 09:53:43 +08:00
// extract listeners, since these needs to be treated as
// child component listeners instead of DOM listeners
2016-10-12 12:54:06 +08:00
var listeners = data.on;
2016-07-24 10:48:09 +08:00
// replace with listeners with .native modifier
2016-10-12 12:54:06 +08:00
data.on = data.nativeOn;
2016-04-27 01:29:27 +08:00
2016-07-27 12:25:41 +08:00
if (Ctor.options.abstract) {
// abstract components do not keep anything
// other than props & listeners
2016-10-12 12:54:06 +08:00
data = {};
2016-07-27 12:25:41 +08:00
}
// merge component management hooks onto the placeholder node
2016-10-12 12:54:06 +08:00
mergeHooks(data);
2016-07-27 12:25:41 +08:00
2016-06-08 09:53:43 +08:00
// return a placeholder vnode
2016-10-12 12:54:06 +08:00
var name = Ctor.options.name || tag;
2016-08-30 03:49:00 +08:00
var vnode = new VNode(
("vue-component-" + (Ctor.cid) + (name ? ("-" + name) : '')),
data, undefined, undefined, undefined, undefined, context,
{ Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children }
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return vnode
}
function createFunctionalComponent (
Ctor,
propsData,
data,
context,
children
) {
2016-10-12 12:54:06 +08:00
var props = {};
var propOptions = Ctor.options.props;
2016-08-21 02:04:54 +08:00
if (propOptions) {
for (var key in propOptions) {
2016-10-12 12:54:06 +08:00
props[key] = validateProp(key, propOptions, propsData);
2016-08-21 02:04:54 +08:00
}
}
2016-10-12 12:54:06 +08:00
var vnode = Ctor.options.render.call(
2016-08-30 03:49:00 +08:00
null,
2016-10-01 02:32:00 +08:00
// ensure the createElement function in functional components
// gets a unique context - this is necessary for correct named slot check
bind$1(createElement, { _self: Object.create(context) }),
2016-08-30 03:49:00 +08:00
{
props: props,
data: data,
parent: context,
children: normalizeChildren(children),
2016-10-01 02:32:00 +08:00
slots: function () { return resolveSlots(children, context); }
2016-08-21 02:04:54 +08:00
}
2016-10-12 12:54:06 +08:00
);
2016-10-13 17:27:27 +08:00
if (vnode instanceof VNode) {
vnode.functionalContext = context;
if (data.slot) {
(vnode.data || (vnode.data = {})).slot = data.slot;
}
2016-10-12 12:54:06 +08:00
}
return vnode
2016-08-21 02:04:54 +08:00
}
2016-08-30 03:49:00 +08:00
function createComponentInstanceForVnode (
vnode, // we know it's MountedComponentVNode but flow doesn't
parent // activeInstance in lifecycle state
2016-06-08 09:53:43 +08:00
) {
2016-10-12 12:54:06 +08:00
var vnodeComponentOptions = vnode.componentOptions;
2016-06-08 09:53:43 +08:00
var options = {
_isComponent: true,
2016-08-06 06:14:22 +08:00
parent: parent,
2016-06-08 09:53:43 +08:00
propsData: vnodeComponentOptions.propsData,
_componentTag: vnodeComponentOptions.tag,
_parentVnode: vnode,
_parentListeners: vnodeComponentOptions.listeners,
_renderChildren: vnodeComponentOptions.children
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
// check inline-template render functions
2016-10-12 12:54:06 +08:00
var inlineTemplate = vnode.data.inlineTemplate;
2016-06-08 09:53:43 +08:00
if (inlineTemplate) {
2016-10-12 12:54:06 +08:00
options.render = inlineTemplate.render;
options.staticRenderFns = inlineTemplate.staticRenderFns;
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return new vnodeComponentOptions.Ctor(options)
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function init (vnode, hydrating) {
2016-08-16 11:39:07 +08:00
if (!vnode.child || vnode.child._isDestroyed) {
2016-10-12 12:54:06 +08:00
var child = vnode.child = createComponentInstanceForVnode(vnode, activeInstance);
child.$mount(hydrating ? vnode.elm : undefined, hydrating);
2016-11-20 11:14:58 +08:00
} else if (vnode.data.keepAlive) {
// kept-alive components, treat as a patch
var mountedNode = vnode; // work around flow
prepatch(mountedNode, mountedNode);
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function prepatch (
oldVnode,
vnode
) {
2016-10-12 12:54:06 +08:00
var options = vnode.componentOptions;
var child = vnode.child = oldVnode.child;
2016-08-30 03:49:00 +08:00
child._updateFromParent(
options.propsData, // updated props
options.listeners, // updated listeners
vnode, // new parent vnode
options.children // new children
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function insert (vnode) {
2016-06-08 09:53:43 +08:00
if (!vnode.child._isMounted) {
2016-10-12 12:54:06 +08:00
vnode.child._isMounted = true;
callHook(vnode.child, 'mounted');
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
if (vnode.data.keepAlive) {
2016-10-12 12:54:06 +08:00
vnode.child._inactive = false;
callHook(vnode.child, 'activated');
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-10-01 02:32:00 +08:00
function destroy$1 (vnode) {
2016-06-08 09:53:43 +08:00
if (!vnode.child._isDestroyed) {
if (!vnode.data.keepAlive) {
2016-10-12 12:54:06 +08:00
vnode.child.$destroy();
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
vnode.child._inactive = true;
callHook(vnode.child, 'deactivated');
2016-04-27 01:29:27 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
function resolveAsyncComponent (
factory,
2016-11-16 07:05:02 +08:00
baseCtor,
2016-08-30 03:49:00 +08:00
cb
) {
2016-06-08 09:53:43 +08:00
if (factory.requested) {
// pool callbacks
2016-10-12 12:54:06 +08:00
factory.pendingCallbacks.push(cb);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
factory.requested = true;
var cbs = factory.pendingCallbacks = [cb];
var sync = true;
2016-08-30 03:49:00 +08:00
var resolve = function (res) {
if (isObject(res)) {
2016-11-16 07:05:02 +08:00
res = baseCtor.extend(res);
2016-08-30 03:49:00 +08:00
}
// cache resolved
2016-10-12 12:54:06 +08:00
factory.resolved = res;
2016-08-30 03:49:00 +08:00
// invoke callbacks only if this is not a synchronous resolve
// (async resolves are shimmed as synchronous during SSR)
if (!sync) {
for (var i = 0, l = cbs.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
cbs[i](res);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
var reject = function (reason) {
process.env.NODE_ENV !== 'production' && warn(
"Failed to resolve async component: " + (String(factory)) +
(reason ? ("\nReason: " + reason) : '')
2016-10-12 12:54:06 +08:00
);
};
2016-08-30 03:49:00 +08:00
2016-10-12 12:54:06 +08:00
var res = factory(resolve, reject);
2016-08-30 03:49:00 +08:00
// handle promise
if (res && typeof res.then === 'function' && !factory.resolved) {
2016-10-12 12:54:06 +08:00
res.then(resolve, reject);
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
sync = false;
2016-08-30 03:49:00 +08:00
// return in case resolved synchronously
return factory.resolved
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function extractProps (data, Ctor) {
2016-11-05 04:47:02 +08:00
// we are only extracting raw values here.
2016-06-08 09:53:43 +08:00
// validation and default values are handled in the child
// component itself.
2016-10-12 12:54:06 +08:00
var propOptions = Ctor.options.props;
2016-06-08 09:53:43 +08:00
if (!propOptions) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var res = {};
2016-06-08 09:53:43 +08:00
var attrs = data.attrs;
var props = data.props;
2016-07-24 10:48:09 +08:00
var domProps = data.domProps;
2016-08-02 03:31:12 +08:00
if (attrs || props || domProps) {
2016-07-24 10:48:09 +08:00
for (var key in propOptions) {
2016-10-12 12:54:06 +08:00
var altKey = hyphenate(key);
2016-08-30 03:49:00 +08:00
checkProp(res, props, key, altKey, true) ||
checkProp(res, attrs, key, altKey) ||
2016-10-12 12:54:06 +08:00
checkProp(res, domProps, key, altKey);
2016-07-24 10:48:09 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return res
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function checkProp (
res,
hash,
key,
altKey,
preserve
) {
2016-06-08 09:53:43 +08:00
if (hash) {
if (hasOwn(hash, key)) {
2016-10-12 12:54:06 +08:00
res[key] = hash[key];
2016-07-24 10:48:09 +08:00
if (!preserve) {
2016-10-12 12:54:06 +08:00
delete hash[key];
2016-07-24 10:48:09 +08:00
}
2016-08-30 03:49:00 +08:00
return true
2016-06-08 09:53:43 +08:00
} else if (hasOwn(hash, altKey)) {
2016-10-12 12:54:06 +08:00
res[key] = hash[altKey];
2016-07-24 10:48:09 +08:00
if (!preserve) {
2016-10-12 12:54:06 +08:00
delete hash[altKey];
2016-07-24 10:48:09 +08:00
}
2016-08-30 03:49:00 +08:00
return true
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
return false
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function mergeHooks (data) {
2016-07-17 13:53:44 +08:00
if (!data.hook) {
2016-10-12 12:54:06 +08:00
data.hook = {};
2016-07-17 13:53:44 +08:00
}
for (var i = 0; i < hooksToMerge.length; i++) {
2016-10-12 12:54:06 +08:00
var key = hooksToMerge[i];
var fromParent = data.hook[key];
var ours = hooks[key];
data.hook[key] = fromParent ? mergeHook$1(ours, fromParent) : ours;
2016-06-08 09:53:43 +08:00
}
}
2016-08-30 03:49:00 +08:00
function mergeHook$1 (a, b) {
2016-06-08 09:53:43 +08:00
// since all hooks have at most two args, use fixed args
// to avoid having to use fn.apply().
return function (_, __) {
2016-10-12 12:54:06 +08:00
a(_, __);
b(_, __);
2016-08-30 03:49:00 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-06-28 10:25:12 +08:00
// wrapper function for providing a more flexible interface
// without getting yelled at by flow
2016-08-30 03:49:00 +08:00
function createElement (
tag,
data,
children
) {
2016-06-28 10:25:12 +08:00
if (data && (Array.isArray(data) || typeof data !== 'object')) {
2016-10-12 12:54:06 +08:00
children = data;
data = undefined;
2016-04-27 01:29:27 +08:00
}
2016-07-17 13:53:44 +08:00
// make sure to use real instance instead of proxy as context
2016-08-30 03:49:00 +08:00
return _createElement(this._self, tag, data, children)
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function _createElement (
context,
tag,
data,
children
) {
2016-07-17 13:53:44 +08:00
if (data && data.__ob__) {
2016-08-30 03:49:00 +08:00
process.env.NODE_ENV !== 'production' && warn(
"Avoid using observed data object as vnode data: " + (JSON.stringify(data)) + "\n" +
'Always create fresh vnode data objects in each render!',
context
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return
2016-07-17 13:53:44 +08:00
}
2016-06-08 09:53:43 +08:00
if (!tag) {
// in case of component :is set to falsy value
2016-08-30 03:49:00 +08:00
return emptyVNode()
2016-06-08 09:53:43 +08:00
}
if (typeof tag === 'string') {
2016-10-12 12:54:06 +08:00
var Ctor;
var ns = config.getTagNamespace(tag);
2016-06-08 09:53:43 +08:00
if (config.isReservedTag(tag)) {
2016-07-08 05:53:22 +08:00
// platform built-in elements
2016-08-30 03:49:00 +08:00
return new VNode(
tag, data, normalizeChildren(children, ns),
undefined, undefined, ns, context
)
} else if ((Ctor = resolveAsset(context.$options, 'components', tag))) {
2016-07-08 05:53:22 +08:00
// component
2016-08-30 03:49:00 +08:00
return createComponent(Ctor, data, context, children, tag)
2016-06-08 09:53:43 +08:00
} else {
2016-07-17 13:53:44 +08:00
// unknown or unlisted namespaced elements
2016-07-08 05:53:22 +08:00
// check at runtime because it may get assigned a namespace when its
// parent normalizes children
2016-11-05 11:47:26 +08:00
var childNs = tag === 'foreignObject' ? 'xhtml' : ns;
2016-08-30 03:49:00 +08:00
return new VNode(
2016-11-05 11:47:26 +08:00
tag, data, normalizeChildren(children, childNs),
2016-08-30 03:49:00 +08:00
undefined, undefined, ns, context
)
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
} else {
2016-07-08 05:53:22 +08:00
// direct component options / constructor
2016-08-30 03:49:00 +08:00
return createComponent(tag, data, context, children)
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
/* */
function initRender (vm) {
2016-10-12 12:54:06 +08:00
vm.$vnode = null; // the placeholder node in parent tree
vm._vnode = null; // the root of the child tree
vm._staticTrees = null;
vm._renderContext = vm.$options._parentVnode && vm.$options._parentVnode.context;
vm.$slots = resolveSlots(vm.$options._renderChildren, vm._renderContext);
2016-06-08 09:53:43 +08:00
// bind the public createElement fn to this instance
// so that we get proper render context inside it.
2016-10-12 12:54:06 +08:00
vm.$createElement = bind$1(createElement, vm);
2016-06-08 09:53:43 +08:00
if (vm.$options.el) {
2016-10-12 12:54:06 +08:00
vm.$mount(vm.$options.el);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function renderMixin (Vue) {
2016-06-08 09:53:43 +08:00
Vue.prototype.$nextTick = function (fn) {
2016-10-12 12:54:06 +08:00
nextTick(fn, this);
};
2016-06-08 09:53:43 +08:00
Vue.prototype._render = function () {
2016-10-12 12:54:06 +08:00
var vm = this;
2016-08-30 03:49:00 +08:00
var ref = vm.$options;
var render = ref.render;
var staticRenderFns = ref.staticRenderFns;
var _parentVnode = ref._parentVnode;
2016-06-11 07:23:32 +08:00
2016-09-13 21:21:02 +08:00
if (vm._isMounted) {
// clone slot nodes on re-renders
for (var key in vm.$slots) {
2016-10-12 12:54:06 +08:00
vm.$slots[key] = cloneVNodes(vm.$slots[key]);
2016-09-13 21:21:02 +08:00
}
}
2016-07-17 13:53:44 +08:00
if (staticRenderFns && !vm._staticTrees) {
2016-10-12 12:54:06 +08:00
vm._staticTrees = [];
2016-06-11 07:23:32 +08:00
}
2016-07-08 05:53:22 +08:00
// set parent vnode. this allows render functions to have access
// to the data on the placeholder node.
2016-10-12 12:54:06 +08:00
vm.$vnode = _parentVnode;
2016-06-08 09:53:43 +08:00
// render self
2016-10-12 12:54:06 +08:00
var vnode;
2016-07-17 13:53:44 +08:00
try {
2016-10-12 12:54:06 +08:00
vnode = render.call(vm._renderProxy, vm.$createElement);
2016-07-17 13:53:44 +08:00
} catch (e) {
if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
warn(("Error when rendering " + (formatComponentName(vm)) + ":"));
2016-07-17 13:53:44 +08:00
}
/* istanbul ignore else */
if (config.errorHandler) {
2016-10-12 12:54:06 +08:00
config.errorHandler.call(null, e, vm);
2016-07-17 13:53:44 +08:00
} else {
if (config._isServer) {
2016-08-30 03:49:00 +08:00
throw e
2016-07-17 13:53:44 +08:00
} else {
2016-11-05 11:47:26 +08:00
console.error(e);
2016-07-17 13:53:44 +08:00
}
}
// return previous vnode to prevent render error causing blank component
2016-10-12 12:54:06 +08:00
vnode = vm._vnode;
2016-07-17 13:53:44 +08:00
}
2016-06-08 09:53:43 +08:00
// return empty vnode in case the render function errored out
if (!(vnode instanceof VNode)) {
if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {
2016-08-30 03:49:00 +08:00
warn(
'Multiple root nodes returned from render function. Render function ' +
'should return a single root node.',
vm
2016-10-12 12:54:06 +08:00
);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
vnode = emptyVNode();
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
// set parent
2016-10-12 12:54:06 +08:00
vnode.parent = _parentVnode;
2016-08-30 03:49:00 +08:00
return vnode
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
// shorthands used in render functions
2016-10-12 12:54:06 +08:00
Vue.prototype._h = createElement;
2016-06-08 09:53:43 +08:00
// toString for mustaches
2016-10-12 12:54:06 +08:00
Vue.prototype._s = _toString;
2016-06-28 10:25:12 +08:00
// number conversion
2016-10-12 12:54:06 +08:00
Vue.prototype._n = toNumber;
2016-08-30 03:49:00 +08:00
// empty vnode
2016-10-12 12:54:06 +08:00
Vue.prototype._e = emptyVNode;
2016-09-24 06:24:49 +08:00
// loose equal
2016-10-12 12:54:06 +08:00
Vue.prototype._q = looseEqual;
2016-09-24 06:24:49 +08:00
// loose indexOf
2016-10-12 12:54:06 +08:00
Vue.prototype._i = looseIndexOf;
2016-06-28 10:25:12 +08:00
2016-07-27 12:25:41 +08:00
// render static tree by index
2016-08-30 03:49:00 +08:00
Vue.prototype._m = function renderStatic (
index,
isInFor
) {
2016-10-12 12:54:06 +08:00
var tree = this._staticTrees[index];
2016-08-10 12:55:30 +08:00
// if has already-rendered static tree and not inside v-for,
2016-08-30 03:49:00 +08:00
// we can reuse the same tree by doing a shallow clone.
2016-08-10 12:55:30 +08:00
if (tree && !isInFor) {
2016-08-30 03:49:00 +08:00
return Array.isArray(tree)
? cloneVNodes(tree)
: cloneVNode(tree)
2016-08-10 12:55:30 +08:00
}
// otherwise, render a fresh tree.
2016-10-12 12:54:06 +08:00
tree = this._staticTrees[index] = this.$options.staticRenderFns[index].call(this._renderProxy);
2016-11-05 04:47:02 +08:00
markStatic(tree, ("__static__" + index), false);
return tree
};
// mark node as static (v-once)
Vue.prototype._o = function markOnce (
tree,
index,
key
) {
markStatic(tree, ("__once__" + index + (key ? ("_" + key) : "")), true);
return tree
};
function markStatic (tree, key, isOnce) {
2016-08-10 12:55:30 +08:00
if (Array.isArray(tree)) {
for (var i = 0; i < tree.length; i++) {
2016-11-05 04:47:02 +08:00
if (tree[i] && typeof tree[i] !== 'string') {
markStaticNode(tree[i], (key + "_" + i), isOnce);
2016-10-12 12:54:06 +08:00
}
2016-08-10 12:55:30 +08:00
}
} else {
2016-11-05 04:47:02 +08:00
markStaticNode(tree, key, isOnce);
2016-07-27 12:25:41 +08:00
}
2016-11-05 04:47:02 +08:00
}
function markStaticNode (node, key, isOnce) {
node.isStatic = true;
node.key = key;
node.isOnce = isOnce;
}
2016-06-08 09:53:43 +08:00
// filter resolution helper
2016-10-12 12:54:06 +08:00
var identity = function (_) { return _; };
2016-08-30 03:49:00 +08:00
Vue.prototype._f = function resolveFilter (id) {
return resolveAsset(this.$options, 'filters', id, true) || identity
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
// render v-for
2016-08-30 03:49:00 +08:00
Vue.prototype._l = function renderList (
val,
render
) {
2016-10-12 12:54:06 +08:00
var ret, i, l, keys, key;
2016-06-08 09:53:43 +08:00
if (Array.isArray(val)) {
2016-10-12 12:54:06 +08:00
ret = new Array(val.length);
2016-06-08 09:53:43 +08:00
for (i = 0, l = val.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
ret[i] = render(val[i], i);
2016-06-08 09:53:43 +08:00
}
} else if (typeof val === 'number') {
2016-10-12 12:54:06 +08:00
ret = new Array(val);
2016-06-08 09:53:43 +08:00
for (i = 0; i < val; i++) {
2016-10-12 12:54:06 +08:00
ret[i] = render(i + 1, i);
2016-06-08 09:53:43 +08:00
}
} else if (isObject(val)) {
2016-10-12 12:54:06 +08:00
keys = Object.keys(val);
ret = new Array(keys.length);
2016-06-08 09:53:43 +08:00
for (i = 0, l = keys.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
key = keys[i];
ret[i] = render(val[key], key, i);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return ret
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-09-08 19:29:47 +08:00
// renderSlot
Vue.prototype._t = function (
name,
fallback
) {
2016-10-12 12:54:06 +08:00
var slotNodes = this.$slots[name];
2016-09-13 21:21:02 +08:00
// warn duplicate slot usage
if (slotNodes && process.env.NODE_ENV !== 'production') {
slotNodes._rendered && warn(
"Duplicate presence of slot \"" + name + "\" found in the same render tree " +
"- this will likely cause render errors.",
this
2016-10-12 12:54:06 +08:00
);
slotNodes._rendered = true;
2016-09-08 19:29:47 +08:00
}
return slotNodes || fallback
2016-10-12 12:54:06 +08:00
};
2016-09-08 19:29:47 +08:00
2016-06-08 09:53:43 +08:00
// apply v-bind object
2016-08-30 03:49:00 +08:00
Vue.prototype._b = function bindProps (
2016-09-24 06:24:49 +08:00
data,
2016-11-20 11:14:58 +08:00
tag,
2016-08-30 03:49:00 +08:00
value,
2016-09-24 06:24:49 +08:00
asProp
) {
2016-06-08 09:53:43 +08:00
if (value) {
if (!isObject(value)) {
2016-08-30 03:49:00 +08:00
process.env.NODE_ENV !== 'production' && warn(
'v-bind without argument expects an Object or Array value',
this
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
} else {
if (Array.isArray(value)) {
2016-10-12 12:54:06 +08:00
value = toObject(value);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
for (var key in value) {
if (key === 'class' || key === 'style') {
2016-10-12 12:54:06 +08:00
data[key] = value[key];
2016-08-06 06:14:22 +08:00
} else {
2016-11-20 11:14:58 +08:00
var hash = asProp || config.mustUseProp(tag, key)
2016-08-30 03:49:00 +08:00
? data.domProps || (data.domProps = {})
2016-10-12 12:54:06 +08:00
: data.attrs || (data.attrs = {});
hash[key] = value[key];
2016-08-06 06:14:22 +08:00
}
2016-06-08 09:53:43 +08:00
}
}
}
2016-09-24 06:24:49 +08:00
return data
2016-10-12 12:54:06 +08:00
};
2016-06-23 03:33:53 +08:00
// expose v-on keyCodes
2016-08-30 03:49:00 +08:00
Vue.prototype._k = function getKeyCodes (key) {
return config.keyCodes[key]
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function resolveSlots (
2016-10-01 02:32:00 +08:00
renderChildren,
context
2016-08-30 03:49:00 +08:00
) {
2016-10-12 12:54:06 +08:00
var slots = {};
2016-07-24 10:48:09 +08:00
if (!renderChildren) {
2016-08-30 03:49:00 +08:00
return slots
2016-07-24 10:48:09 +08:00
}
2016-10-12 12:54:06 +08:00
var children = normalizeChildren(renderChildren) || [];
var defaultSlot = [];
var name, child;
2016-07-17 13:53:44 +08:00
for (var i = 0, l = children.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
child = children[i];
2016-10-01 02:32:00 +08:00
// named slots should only be respected if the vnode was rendered in the
// same context.
2016-10-12 12:54:06 +08:00
if ((child.context === context || child.functionalContext === context) &&
2016-10-01 02:32:00 +08:00
child.data && (name = child.data.slot)) {
2016-10-12 12:54:06 +08:00
var slot = (slots[name] || (slots[name] = []));
2016-07-17 13:53:44 +08:00
if (child.tag === 'template') {
2016-10-12 12:54:06 +08:00
slot.push.apply(slot, child.children);
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
slot.push(child);
2016-04-27 01:29:27 +08:00
}
2016-07-17 13:53:44 +08:00
} else {
2016-10-12 12:54:06 +08:00
defaultSlot.push(child);
2016-04-27 01:29:27 +08:00
}
2016-07-17 13:53:44 +08:00
}
// ignore single whitespace
2016-08-30 03:49:00 +08:00
if (defaultSlot.length && !(
defaultSlot.length === 1 &&
(defaultSlot[0].text === ' ' || defaultSlot[0].isComment)
)) {
2016-10-12 12:54:06 +08:00
slots.default = defaultSlot;
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return slots
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
function initEvents (vm) {
2016-10-12 12:54:06 +08:00
vm._events = Object.create(null);
2016-06-08 09:53:43 +08:00
// init parent attached events
2016-10-12 12:54:06 +08:00
var listeners = vm.$options._parentListeners;
var on = bind$1(vm.$on, vm);
var off = bind$1(vm.$off, vm);
2016-06-08 09:53:43 +08:00
vm._updateListeners = function (listeners, oldListeners) {
2016-10-12 12:54:06 +08:00
updateListeners(listeners, oldListeners || {}, on, off, vm);
};
2016-06-08 09:53:43 +08:00
if (listeners) {
2016-10-12 12:54:06 +08:00
vm._updateListeners(listeners);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function eventsMixin (Vue) {
2016-06-08 09:53:43 +08:00
Vue.prototype.$on = function (event, fn) {
2016-10-12 12:54:06 +08:00
var vm = this;(vm._events[event] || (vm._events[event] = [])).push(fn);
2016-08-30 03:49:00 +08:00
return vm
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
Vue.prototype.$once = function (event, fn) {
2016-10-12 12:54:06 +08:00
var vm = this;
2016-08-30 03:49:00 +08:00
function on () {
2016-10-12 12:54:06 +08:00
vm.$off(event, on);
fn.apply(vm, arguments);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
on.fn = fn;
vm.$on(event, on);
2016-08-30 03:49:00 +08:00
return vm
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
Vue.prototype.$off = function (event, fn) {
2016-10-12 12:54:06 +08:00
var vm = this;
2016-06-08 09:53:43 +08:00
// all
if (!arguments.length) {
2016-10-12 12:54:06 +08:00
vm._events = Object.create(null);
2016-08-30 03:49:00 +08:00
return vm
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
// specific event
2016-10-12 12:54:06 +08:00
var cbs = vm._events[event];
2016-06-08 09:53:43 +08:00
if (!cbs) {
2016-08-30 03:49:00 +08:00
return vm
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
if (arguments.length === 1) {
2016-10-12 12:54:06 +08:00
vm._events[event] = null;
2016-08-30 03:49:00 +08:00
return vm
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
// specific handler
2016-10-12 12:54:06 +08:00
var cb;
var i = cbs.length;
2016-06-08 09:53:43 +08:00
while (i--) {
2016-10-12 12:54:06 +08:00
cb = cbs[i];
2016-06-08 09:53:43 +08:00
if (cb === fn || cb.fn === fn) {
2016-10-12 12:54:06 +08:00
cbs.splice(i, 1);
2016-08-30 03:49:00 +08:00
break
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return vm
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
Vue.prototype.$emit = function (event) {
2016-10-12 12:54:06 +08:00
var vm = this;
var cbs = vm._events[event];
2016-06-08 09:53:43 +08:00
if (cbs) {
2016-10-12 12:54:06 +08:00
cbs = cbs.length > 1 ? toArray(cbs) : cbs;
var args = toArray(arguments, 1);
2016-06-08 09:53:43 +08:00
for (var i = 0, l = cbs.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
cbs[i].apply(vm, args);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
return vm
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/* */
2016-10-12 12:54:06 +08:00
var uid = 0;
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function initMixin (Vue) {
2016-06-08 09:53:43 +08:00
Vue.prototype._init = function (options) {
2016-10-12 12:54:06 +08:00
var vm = this;
2016-06-08 09:53:43 +08:00
// a uid
2016-10-12 12:54:06 +08:00
vm._uid = uid++;
2016-06-08 09:53:43 +08:00
// a flag to avoid this being observed
2016-10-12 12:54:06 +08:00
vm._isVue = true;
2016-06-08 09:53:43 +08:00
// merge options
if (options && options._isComponent) {
// optimize internal component instantiation
// since dynamic options merging is pretty slow, and none of the
// internal component options needs special treatment.
2016-10-12 12:54:06 +08:00
initInternalComponent(vm, options);
2016-06-08 09:53:43 +08:00
} else {
2016-08-30 03:49:00 +08:00
vm.$options = mergeOptions(
2016-11-05 04:47:02 +08:00
resolveConstructorOptions(vm.constructor),
2016-08-30 03:49:00 +08:00
options || {},
vm
2016-10-12 12:54:06 +08:00
);
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
/* istanbul ignore else */
if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
initProxy(vm);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
vm._renderProxy = vm;
2016-06-08 09:53:43 +08:00
}
// expose real self
2016-10-12 12:54:06 +08:00
vm._self = vm;
initLifecycle(vm);
initEvents(vm);
callHook(vm, 'beforeCreate');
initState(vm);
callHook(vm, 'created');
initRender(vm);
};
2016-11-05 04:47:02 +08:00
}
2016-08-30 03:49:00 +08:00
2016-11-05 04:47:02 +08:00
function initInternalComponent (vm, options) {
var opts = vm.$options = Object.create(vm.constructor.options);
// doing this because it's faster than dynamic enumeration.
opts.parent = options.parent;
opts.propsData = options.propsData;
opts._parentVnode = options._parentVnode;
opts._parentListeners = options._parentListeners;
opts._renderChildren = options._renderChildren;
opts._componentTag = options._componentTag;
if (options.render) {
opts.render = options.render;
opts.staticRenderFns = options.staticRenderFns;
}
}
function resolveConstructorOptions (Ctor) {
var options = Ctor.options;
if (Ctor.super) {
var superOptions = Ctor.super.options;
var cachedSuperOptions = Ctor.superOptions;
var extendOptions = Ctor.extendOptions;
if (superOptions !== cachedSuperOptions) {
// super option changed
Ctor.superOptions = superOptions;
extendOptions.render = options.render;
extendOptions.staticRenderFns = options.staticRenderFns;
options = Ctor.options = mergeOptions(superOptions, extendOptions);
if (options.name) {
options.components[options.name] = Ctor;
2016-06-28 10:25:12 +08:00
}
}
2016-04-27 01:29:27 +08:00
}
2016-11-05 04:47:02 +08:00
return options
2016-04-27 01:29:27 +08:00
}
2016-11-16 07:05:02 +08:00
function Vue$2 (options) {
2016-10-01 02:32:00 +08:00
if (process.env.NODE_ENV !== 'production' &&
2016-11-16 07:05:02 +08:00
!(this instanceof Vue$2)) {
2016-10-12 12:54:06 +08:00
warn('Vue is a constructor and should be called with the `new` keyword');
2016-10-01 02:32:00 +08:00
}
2016-10-12 12:54:06 +08:00
this._init(options);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-11-16 07:05:02 +08:00
initMixin(Vue$2);
stateMixin(Vue$2);
eventsMixin(Vue$2);
lifecycleMixin(Vue$2);
renderMixin(Vue$2);
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
var warn = noop;
var formatComponentName;
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
var hasConsole = typeof console !== 'undefined';
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
warn = function (msg, vm) {
if (hasConsole && (!config.silent)) {
console.error("[Vue warn]: " + msg + " " + (
vm ? formatLocation(formatComponentName(vm)) : ''
2016-10-12 12:54:06 +08:00
));
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
formatComponentName = function (vm) {
if (vm.$root === vm) {
return 'root instance'
}
var name = vm._isVue
? vm.$options.name || vm.$options._componentTag
2016-10-12 12:54:06 +08:00
: vm.name;
return (
(name ? ("component <" + name + ">") : "anonymous component") +
(vm._isVue && vm.$options.__file ? (" at " + (vm.$options.__file)) : '')
)
};
2016-07-17 13:53:44 +08:00
2016-08-30 03:49:00 +08:00
var formatLocation = function (str) {
if (str === 'anonymous component') {
2016-10-12 12:54:06 +08:00
str += " - use the \"name\" option for better debugging messages.";
2016-08-30 03:49:00 +08:00
}
2016-10-12 12:54:06 +08:00
return ("\n(found in " + str + ")")
};
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +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.
*/
2016-10-12 12:54:06 +08:00
var strats = config.optionMergeStrategies;
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Options with restrictions
*/
if (process.env.NODE_ENV !== 'production') {
strats.el = strats.propsData = function (parent, child, vm, key) {
if (!vm) {
2016-08-30 03:49:00 +08:00
warn(
"option \"" + key + "\" can only be used during instance " +
'creation with the `new` keyword.'
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return defaultStrat(parent, child)
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
/**
* Helper that recursively merges two data objects together.
*/
2016-08-30 03:49:00 +08:00
function mergeData (to, from) {
2016-11-16 07:05:02 +08:00
if (!from) { return to }
2016-10-12 12:54:06 +08:00
var key, toVal, fromVal;
2016-11-16 07:05:02 +08:00
var keys = Object.keys(from);
for (var i = 0; i < keys.length; i++) {
key = keys[i];
2016-10-12 12:54:06 +08:00
toVal = to[key];
fromVal = from[key];
2016-06-08 09:53:43 +08:00
if (!hasOwn(to, key)) {
2016-10-12 12:54:06 +08:00
set(to, key, fromVal);
2016-11-16 07:05:02 +08:00
} else if (isPlainObject(toVal) && isPlainObject(fromVal)) {
2016-10-12 12:54:06 +08:00
mergeData(toVal, fromVal);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return to
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
/**
* Data
*/
2016-08-30 03:49:00 +08:00
strats.data = function (
parentVal,
childVal,
vm
) {
2016-06-08 09:53:43 +08:00
if (!vm) {
// in a Vue.extend merge, both should be functions
if (!childVal) {
2016-08-30 03:49:00 +08:00
return parentVal
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
if (typeof childVal !== 'function') {
2016-08-30 03:49:00 +08:00
process.env.NODE_ENV !== 'production' && warn(
'The "data" option should be a function ' +
'that returns a per-instance value in component ' +
'definitions.',
vm
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return parentVal
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
if (!parentVal) {
2016-08-30 03:49:00 +08:00
return childVal
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +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.
2016-08-30 03:49:00 +08:00
return function mergedDataFn () {
return mergeData(
childVal.call(this),
parentVal.call(this)
)
}
2016-06-08 09:53:43 +08:00
} else if (parentVal || childVal) {
2016-08-30 03:49:00 +08:00
return function mergedInstanceDataFn () {
2016-06-08 09:53:43 +08:00
// instance merge
2016-08-30 03:49:00 +08:00
var instanceData = typeof childVal === 'function'
? childVal.call(vm)
2016-10-12 12:54:06 +08:00
: childVal;
2016-08-30 03:49:00 +08:00
var defaultData = typeof parentVal === 'function'
? parentVal.call(vm)
2016-10-12 12:54:06 +08:00
: undefined;
2016-06-08 09:53:43 +08:00
if (instanceData) {
2016-08-30 03:49:00 +08:00
return mergeData(instanceData, defaultData)
2016-06-08 09:53:43 +08:00
} else {
2016-08-30 03:49:00 +08:00
return defaultData
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
/**
* Hooks and param attributes are merged as arrays.
*/
2016-08-30 03:49:00 +08:00
function mergeHook (
parentVal,
childVal
) {
return childVal
? parentVal
? parentVal.concat(childVal)
: Array.isArray(childVal)
? childVal
: [childVal]
: parentVal
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
config._lifecycleHooks.forEach(function (hook) {
2016-10-12 12:54:06 +08:00
strats[hook] = mergeHook;
});
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Assets
*
* When a vm is present (instance creation), we need to do
* a three-way merge between constructor options, instance
* options and parent options.
*/
2016-08-30 03:49:00 +08:00
function mergeAssets (parentVal, childVal) {
2016-10-12 12:54:06 +08:00
var res = Object.create(parentVal || null);
2016-08-30 03:49:00 +08:00
return childVal
? extend(res, childVal)
: res
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
config._assetTypes.forEach(function (type) {
2016-10-12 12:54:06 +08:00
strats[type + 's'] = mergeAssets;
});
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Watchers.
*
* Watchers hashes should not overwrite one
* another, so we merge them as arrays.
*/
strats.watch = function (parentVal, childVal) {
/* istanbul ignore if */
2016-09-24 06:24:49 +08:00
if (!childVal) { return parentVal }
if (!parentVal) { return childVal }
2016-10-12 12:54:06 +08:00
var ret = {};
extend(ret, parentVal);
2016-06-08 09:53:43 +08:00
for (var key in childVal) {
2016-10-12 12:54:06 +08:00
var parent = ret[key];
var child = childVal[key];
2016-06-08 09:53:43 +08:00
if (parent && !Array.isArray(parent)) {
2016-10-12 12:54:06 +08:00
parent = [parent];
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
ret[key] = parent
? parent.concat(child)
2016-10-12 12:54:06 +08:00
: [child];
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return ret
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Other object hashes.
*/
2016-08-30 03:49:00 +08:00
strats.props =
strats.methods =
strats.computed = function (parentVal, childVal) {
2016-09-24 06:24:49 +08:00
if (!childVal) { return parentVal }
if (!parentVal) { return childVal }
2016-10-12 12:54:06 +08:00
var ret = Object.create(null);
extend(ret, parentVal);
extend(ret, childVal);
2016-08-30 03:49:00 +08:00
return ret
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Default strategy.
*/
2016-08-30 03:49:00 +08:00
var defaultStrat = function (parentVal, childVal) {
return childVal === undefined
? parentVal
: childVal
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
2016-11-05 11:47:26 +08:00
* Validate component names
2016-06-08 09:53:43 +08:00
*/
2016-11-05 11:47:26 +08:00
function checkComponents (options) {
for (var key in options.components) {
var lower = key.toLowerCase();
if (isBuiltInTag(lower) || config.isReservedTag(lower)) {
warn(
'Do not use built-in or reserved HTML elements as component ' +
'id: ' + key
);
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
}
}
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Ensure all props option syntax are normalized into the
* Object-based format.
*/
2016-08-30 03:49:00 +08:00
function normalizeProps (options) {
2016-10-12 12:54:06 +08:00
var props = options.props;
2016-09-24 06:24:49 +08:00
if (!props) { return }
2016-10-12 12:54:06 +08:00
var res = {};
var i, val, name;
2016-06-08 09:53:43 +08:00
if (Array.isArray(props)) {
2016-10-12 12:54:06 +08:00
i = props.length;
2016-06-08 09:53:43 +08:00
while (i--) {
2016-10-12 12:54:06 +08:00
val = props[i];
2016-06-08 09:53:43 +08:00
if (typeof val === 'string') {
2016-10-12 12:54:06 +08:00
name = camelize(val);
res[name] = { type: null };
2016-06-08 09:53:43 +08:00
} else if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
warn('props must be strings when using array syntax.');
2016-04-27 01:29:27 +08:00
}
}
2016-06-08 09:53:43 +08:00
} else if (isPlainObject(props)) {
for (var key in props) {
2016-10-12 12:54:06 +08:00
val = props[key];
name = camelize(key);
2016-08-30 03:49:00 +08:00
res[name] = isPlainObject(val)
? val
2016-10-12 12:54:06 +08:00
: { type: val };
2016-06-08 09:53:43 +08:00
}
}
2016-10-12 12:54:06 +08:00
options.props = res;
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
/**
* Normalize raw function directives into object format.
*/
2016-08-30 03:49:00 +08:00
function normalizeDirectives (options) {
2016-10-12 12:54:06 +08:00
var dirs = options.directives;
2016-06-08 09:53:43 +08:00
if (dirs) {
for (var key in dirs) {
2016-10-12 12:54:06 +08:00
var def = dirs[key];
2016-06-08 09:53:43 +08:00
if (typeof def === 'function') {
2016-10-12 12:54:06 +08:00
dirs[key] = { bind: def, update: def };
2016-04-27 01:29:27 +08:00
}
}
}
}
2016-06-08 09:53:43 +08:00
/**
* Merge two option objects into a new one.
* Core utility used in both instantiation and inheritance.
*/
2016-08-30 03:49:00 +08:00
function mergeOptions (
parent,
child,
vm
) {
2016-11-05 11:47:26 +08:00
if (process.env.NODE_ENV !== 'production') {
checkComponents(child);
}
2016-10-12 12:54:06 +08:00
normalizeProps(child);
normalizeDirectives(child);
var extendsFrom = child.extends;
2016-06-08 09:53:43 +08:00
if (extendsFrom) {
2016-08-30 03:49:00 +08:00
parent = typeof extendsFrom === 'function'
? mergeOptions(parent, extendsFrom.options, vm)
2016-10-12 12:54:06 +08:00
: mergeOptions(parent, extendsFrom, vm);
2016-06-08 09:53:43 +08:00
}
if (child.mixins) {
for (var i = 0, l = child.mixins.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
var mixin = child.mixins[i];
2016-11-16 07:05:02 +08:00
if (mixin.prototype instanceof Vue$2) {
2016-10-12 12:54:06 +08:00
mixin = mixin.options;
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
parent = mergeOptions(parent, mixin, vm);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var options = {};
var key;
2016-06-08 09:53:43 +08:00
for (key in parent) {
2016-10-12 12:54:06 +08:00
mergeField(key);
2016-06-08 09:53:43 +08:00
}
for (key in child) {
if (!hasOwn(parent, key)) {
2016-10-12 12:54:06 +08:00
mergeField(key);
2016-06-08 09:53:43 +08:00
}
}
2016-08-30 03:49:00 +08:00
function mergeField (key) {
2016-10-12 12:54:06 +08:00
var strat = strats[key] || defaultStrat;
options[key] = strat(parent[key], child[key], vm, key);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return options
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
/**
* Resolve an asset.
* This function is used because child instances need access
* to assets defined in its ancestor chain.
*/
2016-08-30 03:49:00 +08:00
function resolveAsset (
options,
type,
id,
warnMissing
) {
2016-06-08 09:53:43 +08:00
/* istanbul ignore if */
if (typeof id !== 'string') {
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var assets = options[type];
2016-06-08 09:53:43 +08:00
var res = assets[id] ||
2016-08-30 03:49:00 +08:00
// camelCase ID
assets[camelize(id)] ||
// Pascal Case ID
2016-10-12 12:54:06 +08:00
assets[capitalize(camelize(id))];
2016-06-08 09:53:43 +08:00
if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {
2016-08-30 03:49:00 +08:00
warn(
'Failed to resolve ' + type.slice(0, -1) + ': ' + id,
options
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return res
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/* */
function validateProp (
key,
propOptions,
propsData,
vm
) {
2016-10-12 12:54:06 +08:00
var prop = propOptions[key];
var absent = !hasOwn(propsData, key);
var value = propsData[key];
2016-06-08 09:53:43 +08:00
// handle boolean props
2016-10-12 12:54:06 +08:00
if (isBooleanType(prop.type)) {
2016-06-08 09:53:43 +08:00
if (absent && !hasOwn(prop, 'default')) {
2016-10-12 12:54:06 +08:00
value = false;
2016-06-08 09:53:43 +08:00
} else if (value === '' || value === hyphenate(key)) {
2016-10-12 12:54:06 +08:00
value = true;
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
}
// check default value
if (value === undefined) {
2016-10-12 12:54:06 +08:00
value = getPropDefaultValue(vm, prop, key);
2016-06-08 09:53:43 +08:00
// since the default value is a fresh copy,
// make sure to observe it.
2016-10-12 12:54:06 +08:00
var prevShouldConvert = observerState.shouldConvert;
observerState.shouldConvert = true;
observe(value);
observerState.shouldConvert = prevShouldConvert;
2016-06-08 09:53:43 +08:00
}
if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
assertProp(prop, key, value, vm, absent);
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return value
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Get the default value of a prop.
*/
2016-11-05 11:47:26 +08:00
function getPropDefaultValue (vm, prop, key) {
2016-06-08 09:53:43 +08:00
// no default, return undefined
if (!hasOwn(prop, 'default')) {
2016-08-30 03:49:00 +08:00
return undefined
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var def = prop.default;
2016-06-08 09:53:43 +08:00
// warn against non-factory defaults for Object & Array
if (isObject(def)) {
2016-08-30 03:49:00 +08:00
process.env.NODE_ENV !== 'production' && warn(
2016-11-05 11:47:26 +08:00
'Invalid default value for prop "' + key + '": ' +
2016-08-30 03:49:00 +08:00
'Props with type Object/Array must use a factory function ' +
'to return the default value.',
vm
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
}
2016-11-05 11:47:26 +08:00
// the raw prop value was also undefined from previous render,
// return previous default value to avoid unnecessary watcher trigger
if (vm && vm.$options.propsData &&
vm.$options.propsData[key] === undefined &&
vm[key] !== undefined) {
return vm[key]
}
2016-06-08 09:53:43 +08:00
// call factory function for non-Function types
2016-08-30 03:49:00 +08:00
return typeof def === 'function' && prop.type !== Function
? def.call(vm)
: def
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
/**
* Assert whether a prop is valid.
*/
2016-08-30 03:49:00 +08:00
function assertProp (
prop,
name,
value,
vm,
absent
) {
2016-06-08 09:53:43 +08:00
if (prop.required && absent) {
2016-08-30 03:49:00 +08:00
warn(
'Missing required prop: "' + name + '"',
vm
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
if (value == null && !prop.required) {
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var type = prop.type;
var valid = !type || type === true;
var expectedTypes = [];
2016-06-08 09:53:43 +08:00
if (type) {
if (!Array.isArray(type)) {
2016-10-12 12:54:06 +08:00
type = [type];
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
for (var i = 0; i < type.length && !valid; i++) {
2016-10-12 12:54:06 +08:00
var assertedType = assertType(value, type[i]);
expectedTypes.push(assertedType.expectedType);
valid = assertedType.valid;
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
}
if (!valid) {
2016-08-30 03:49:00 +08:00
warn(
'Invalid prop: type check failed for prop "' + name + '".' +
' Expected ' + expectedTypes.map(capitalize).join(', ') +
', got ' + Object.prototype.toString.call(value).slice(8, -1) + '.',
vm
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return
}
2016-10-12 12:54:06 +08:00
var validator = prop.validator;
2016-06-08 09:53:43 +08:00
if (validator) {
if (!validator(value)) {
2016-08-30 03:49:00 +08:00
warn(
'Invalid prop: custom validator check failed for prop "' + name + '".',
vm
2016-10-12 12:54:06 +08:00
);
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
/**
* Assert the type of a value
*/
2016-08-30 03:49:00 +08:00
function assertType (value, type) {
2016-10-12 12:54:06 +08:00
var valid;
var expectedType = getType(type);
2016-08-11 13:43:09 +08:00
if (expectedType === 'String') {
2016-10-12 12:54:06 +08:00
valid = typeof value === (expectedType = 'string');
2016-08-11 13:43:09 +08:00
} else if (expectedType === 'Number') {
2016-10-12 12:54:06 +08:00
valid = typeof value === (expectedType = 'number');
2016-08-11 13:43:09 +08:00
} else if (expectedType === 'Boolean') {
2016-10-12 12:54:06 +08:00
valid = typeof value === (expectedType = 'boolean');
2016-08-11 13:43:09 +08:00
} else if (expectedType === 'Function') {
2016-10-12 12:54:06 +08:00
valid = typeof value === (expectedType = 'function');
2016-08-11 13:43:09 +08:00
} else if (expectedType === 'Object') {
2016-10-12 12:54:06 +08:00
valid = isPlainObject(value);
2016-08-11 13:43:09 +08:00
} else if (expectedType === 'Array') {
2016-10-12 12:54:06 +08:00
valid = Array.isArray(value);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
valid = value instanceof type;
2016-06-08 09:53:43 +08:00
}
return {
valid: valid,
expectedType: expectedType
2016-08-30 03:49:00 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-08-11 13:43:09 +08:00
/**
* Use function string name to check built-in types,
* because a simple equality check will fail when running
* across different vms / iframes.
*/
2016-08-30 03:49:00 +08:00
function getType (fn) {
2016-10-12 12:54:06 +08:00
var match = fn && fn.toString().match(/^\s*function (\w+)/);
2016-08-30 03:49:00 +08:00
return match && match[1]
2016-08-11 13:43:09 +08:00
}
2016-10-12 12:54:06 +08:00
function isBooleanType (fn) {
if (!Array.isArray(fn)) {
return getType(fn) === 'Boolean'
}
for (var i = 0, len = fn.length; i < len; i++) {
if (getType(fn[i]) === 'Boolean') {
return true
}
}
/* istanbul ignore next */
return false
}
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
var util = Object.freeze({
2016-10-01 02:32:00 +08:00
defineReactive: defineReactive$$1,
2016-06-28 10:25:12 +08:00
_toString: _toString,
toNumber: toNumber,
2016-06-08 09:53:43 +08:00
makeMap: makeMap,
isBuiltInTag: isBuiltInTag,
2016-10-01 02:32:00 +08:00
remove: remove$1,
2016-06-08 09:53:43 +08:00
hasOwn: hasOwn,
isPrimitive: isPrimitive,
cached: cached,
camelize: camelize,
capitalize: capitalize,
hyphenate: hyphenate,
2016-10-01 02:32:00 +08:00
bind: bind$1,
2016-06-08 09:53:43 +08:00
toArray: toArray,
extend: extend,
isObject: isObject,
isPlainObject: isPlainObject,
toObject: toObject,
noop: noop,
no: no,
genStaticKeys: genStaticKeys,
2016-09-24 06:24:49 +08:00
looseEqual: looseEqual,
looseIndexOf: looseIndexOf,
2016-06-08 09:53:43 +08:00
isReserved: isReserved,
def: def,
parsePath: parsePath,
hasProto: hasProto,
inBrowser: inBrowser,
2016-06-14 07:36:46 +08:00
UA: UA,
2016-09-24 06:24:49 +08:00
isIE: isIE,
isIE9: isIE9,
isEdge: isEdge,
isAndroid: isAndroid,
2016-09-28 05:08:27 +08:00
isIOS: isIOS,
2016-09-24 06:24:49 +08:00
devtools: devtools,
2016-06-08 09:53:43 +08:00
nextTick: nextTick,
2016-06-28 10:25:12 +08:00
get _Set () { return _Set; },
2016-06-08 09:53:43 +08:00
mergeOptions: mergeOptions,
resolveAsset: resolveAsset,
get warn () { return warn; },
2016-07-17 13:53:44 +08:00
get formatComponentName () { return formatComponentName; },
2016-06-08 09:53:43 +08:00
validateProp: validateProp
});
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/* */
function initUse (Vue) {
2016-04-27 01:29:27 +08:00
Vue.use = function (plugin) {
/* istanbul ignore if */
if (plugin.installed) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
// additional parameters
2016-10-12 12:54:06 +08:00
var args = toArray(arguments, 1);
args.unshift(this);
2016-04-27 01:29:27 +08:00
if (typeof plugin.install === 'function') {
2016-10-12 12:54:06 +08:00
plugin.install.apply(plugin, args);
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
plugin.apply(null, args);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
plugin.installed = true;
2016-08-30 03:49:00 +08:00
return this
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
function initMixin$1 (Vue) {
2016-04-27 01:29:27 +08:00
Vue.mixin = function (mixin) {
2016-11-16 07:05:02 +08:00
this.options = mergeOptions(this.options, mixin);
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
function initExtend (Vue) {
2016-04-27 01:29:27 +08:00
/**
* Each instance constructor, including Vue, has a unique
* cid. This enables us to create wrapped "child
* constructors" for prototypal inheritance and cache them.
*/
2016-10-12 12:54:06 +08:00
Vue.cid = 0;
var cid = 1;
2016-04-27 01:29:27 +08:00
/**
* Class inheritance
*/
Vue.extend = function (extendOptions) {
2016-10-12 12:54:06 +08:00
extendOptions = extendOptions || {};
var Super = this;
2016-11-16 07:05:02 +08:00
var SuperId = Super.cid;
var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});
if (cachedCtors[SuperId]) {
return cachedCtors[SuperId]
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var name = extendOptions.name || Super.options.name;
2016-04-27 01:29:27 +08:00
if (process.env.NODE_ENV !== 'production') {
if (!/^[a-zA-Z][\w-]*$/.test(name)) {
2016-08-30 03:49:00 +08:00
warn(
'Invalid component name: "' + name + '". Component names ' +
'can only contain alphanumeric characaters and the hyphen.'
2016-10-12 12:54:06 +08:00
);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
var Sub = function VueComponent (options) {
2016-10-12 12:54:06 +08:00
this._init(options);
};
Sub.prototype = Object.create(Super.prototype);
Sub.prototype.constructor = Sub;
Sub.cid = cid++;
2016-08-30 03:49:00 +08:00
Sub.options = mergeOptions(
Super.options,
extendOptions
2016-10-12 12:54:06 +08:00
);
Sub['super'] = Super;
2016-11-16 07:05:02 +08:00
// allow further extension/mixin/plugin usage
2016-10-12 12:54:06 +08:00
Sub.extend = Super.extend;
2016-11-16 07:05:02 +08:00
Sub.mixin = Super.mixin;
Sub.use = Super.use;
2016-04-27 01:29:27 +08:00
// create asset registers, so extended classes
// can have their private assets too.
config._assetTypes.forEach(function (type) {
2016-10-12 12:54:06 +08:00
Sub[type] = Super[type];
});
2016-04-27 01:29:27 +08:00
// enable recursive self-lookup
if (name) {
2016-10-12 12:54:06 +08:00
Sub.options.components[name] = Sub;
2016-04-27 01:29:27 +08:00
}
2016-06-28 10:25:12 +08:00
// keep a reference to the super options at extension time.
// later at instantiation we can check if Super's options have
// been updated.
2016-10-12 12:54:06 +08:00
Sub.superOptions = Super.options;
Sub.extendOptions = extendOptions;
2016-04-27 01:29:27 +08:00
// cache constructor
2016-11-16 07:05:02 +08:00
cachedCtors[SuperId] = Sub;
2016-08-30 03:49:00 +08:00
return Sub
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
function initAssetRegisters (Vue) {
2016-04-27 01:29:27 +08:00
/**
2016-06-08 09:53:43 +08:00
* Create asset registration methods.
*/
2016-04-27 01:29:27 +08:00
config._assetTypes.forEach(function (type) {
2016-08-30 03:49:00 +08:00
Vue[type] = function (
id,
definition
) {
2016-04-27 01:29:27 +08:00
if (!definition) {
2016-08-30 03:49:00 +08:00
return this.options[type + 's'][id]
2016-04-27 01:29:27 +08:00
} else {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production') {
if (type === 'component' && config.isReservedTag(id)) {
2016-08-30 03:49:00 +08:00
warn(
'Do not use built-in or reserved HTML elements as component ' +
'id: ' + id
2016-10-12 12:54:06 +08:00
);
2016-04-27 01:29:27 +08:00
}
}
if (type === 'component' && isPlainObject(definition)) {
2016-10-12 12:54:06 +08:00
definition.name = definition.name || id;
2016-11-16 07:05:02 +08:00
definition = this.options._base.extend(definition);
2016-04-27 01:29:27 +08:00
}
2016-07-08 05:53:22 +08:00
if (type === 'directive' && typeof definition === 'function') {
2016-10-12 12:54:06 +08:00
definition = { bind: definition, update: definition };
2016-07-08 05:53:22 +08:00
}
2016-10-12 12:54:06 +08:00
this.options[type + 's'][id] = definition;
2016-08-30 03:49:00 +08:00
return definition
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
};
});
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
var KeepAlive = {
name: 'keep-alive',
2016-07-24 10:48:09 +08:00
abstract: true,
2016-08-30 03:49:00 +08:00
created: function created () {
2016-10-12 12:54:06 +08:00
this.cache = Object.create(null);
2016-06-08 09:53:43 +08:00
},
2016-08-30 03:49:00 +08:00
render: function render () {
2016-10-12 12:54:06 +08:00
var vnode = getFirstComponentChild(this.$slots.default);
2016-08-10 12:55:30 +08:00
if (vnode && vnode.componentOptions) {
2016-10-12 12:54:06 +08:00
var opts = vnode.componentOptions;
2016-08-10 12:55:30 +08:00
var key = vnode.key == null
2016-08-30 03:49:00 +08:00
// same constructor may get registered as different local components
// so cid alone is not enough (#3269)
? opts.Ctor.cid + '::' + opts.tag
2016-10-12 12:54:06 +08:00
: vnode.key;
2016-07-17 13:53:44 +08:00
if (this.cache[key]) {
2016-10-12 12:54:06 +08:00
vnode.child = this.cache[key].child;
2016-07-17 13:53:44 +08:00
} else {
2016-10-12 12:54:06 +08:00
this.cache[key] = vnode;
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
vnode.data.keepAlive = true;
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return vnode
2016-06-08 09:53:43 +08:00
},
2016-08-30 03:49:00 +08:00
destroyed: function destroyed () {
var this$1 = this;
2016-06-08 09:53:43 +08:00
for (var key in this.cache) {
2016-10-12 12:54:06 +08:00
var vnode = this$1.cache[key];
callHook(vnode.child, 'deactivated');
vnode.child.$destroy();
2016-06-08 09:53:43 +08:00
}
}
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
var builtInComponents = {
KeepAlive: KeepAlive
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
function initGlobalAPI (Vue) {
2016-06-23 03:33:53 +08:00
// config
2016-10-12 12:54:06 +08:00
var configDef = {};
configDef.get = function () { return config; };
2016-06-23 03:33:53 +08:00
if (process.env.NODE_ENV !== 'production') {
configDef.set = function () {
2016-08-30 03:49:00 +08:00
warn(
'Do not replace the Vue.config object, set individual fields instead.'
2016-10-12 12:54:06 +08:00
);
};
2016-06-23 03:33:53 +08:00
}
2016-10-12 12:54:06 +08:00
Object.defineProperty(Vue, 'config', configDef);
Vue.util = util;
Vue.set = set;
Vue.delete = del;
Vue.nextTick = nextTick;
2016-06-08 09:53:43 +08:00
2016-10-12 12:54:06 +08:00
Vue.options = Object.create(null);
2016-06-08 09:53:43 +08:00
config._assetTypes.forEach(function (type) {
2016-10-12 12:54:06 +08:00
Vue.options[type + 's'] = Object.create(null);
});
2016-06-08 09:53:43 +08:00
2016-11-16 07:05:02 +08:00
// this is used to identify the "base" constructor to extend all plain-object
// components with in Weex's multi-instance scenarios.
Vue.options._base = Vue;
2016-10-12 12:54:06 +08:00
extend(Vue.options.components, builtInComponents);
2016-06-08 09:53:43 +08:00
2016-10-12 12:54:06 +08:00
initUse(Vue);
initMixin$1(Vue);
initExtend(Vue);
initAssetRegisters(Vue);
2016-06-08 09:53:43 +08:00
}
2016-11-16 07:05:02 +08:00
initGlobalAPI(Vue$2);
2016-06-08 09:53:43 +08:00
2016-11-16 07:05:02 +08:00
Object.defineProperty(Vue$2.prototype, '$isServer', {
2016-08-30 03:49:00 +08:00
get: function () { return config._isServer; }
2016-10-12 12:54:06 +08:00
});
2016-08-30 03:49:00 +08:00
2016-11-20 11:14:58 +08:00
Vue$2.version = '2.0.8';
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
// attributes that should be using props for binding
2016-11-20 11:14:58 +08:00
var mustUseProp = function (tag, attr) {
return (
(attr === 'value' && (tag === 'input' || tag === 'textarea' || tag === 'option')) ||
(attr === 'selected' && tag === 'option') ||
(attr === 'checked' && tag === 'input') ||
(attr === 'muted' && tag === 'video')
)
};
2016-06-08 09:53:43 +08:00
2016-10-12 12:54:06 +08:00
var isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +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-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +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,<th>,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'
2016-10-12 12:54:06 +08:00
);
2016-06-16 02:22:40 +08:00
2016-10-01 02:32:00 +08:00
2016-10-12 12:54:06 +08:00
var xlinkNS = 'http://www.w3.org/1999/xlink';
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
var isXlink = function (name) {
return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
var getXlinkProp = function (name) {
return isXlink(name) ? name.slice(6, name.length) : ''
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
var isFalsyAttrValue = function (val) {
return val == null || val === false
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/* */
function genClassForVnode (vnode) {
2016-10-12 12:54:06 +08:00
var data = vnode.data;
var parentNode = vnode;
var childNode = vnode;
2016-08-02 03:31:12 +08:00
while (childNode.child) {
2016-10-12 12:54:06 +08:00
childNode = childNode.child._vnode;
2016-08-02 03:31:12 +08:00
if (childNode.data) {
2016-10-12 12:54:06 +08:00
data = mergeClassData(childNode.data, data);
2016-08-02 03:31:12 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
while ((parentNode = parentNode.parent)) {
2016-08-02 03:31:12 +08:00
if (parentNode.data) {
2016-10-12 12:54:06 +08:00
data = mergeClassData(data, parentNode.data);
2016-08-02 03:31:12 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return genClassFromData(data)
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function mergeClassData (child, parent) {
2016-06-08 09:53:43 +08:00
return {
staticClass: concat(child.staticClass, parent.staticClass),
2016-08-30 03:49:00 +08:00
class: child.class
? [child.class, parent.class]
: parent.class
}
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function genClassFromData (data) {
2016-10-12 12:54:06 +08:00
var dynamicClass = data.class;
var staticClass = data.staticClass;
2016-06-08 09:53:43 +08:00
if (staticClass || dynamicClass) {
2016-08-30 03:49:00 +08:00
return concat(staticClass, stringifyClass(dynamicClass))
2016-06-08 09:53:43 +08:00
}
/* istanbul ignore next */
2016-08-30 03:49:00 +08:00
return ''
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function concat (a, b) {
return a ? b ? (a + ' ' + b) : a : (b || '')
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function stringifyClass (value) {
2016-10-12 12:54:06 +08:00
var res = '';
2016-06-08 09:53:43 +08:00
if (!value) {
2016-08-30 03:49:00 +08:00
return res
2016-06-08 09:53:43 +08:00
}
if (typeof value === 'string') {
2016-08-30 03:49:00 +08:00
return value
2016-06-08 09:53:43 +08:00
}
if (Array.isArray(value)) {
2016-10-12 12:54:06 +08:00
var stringified;
2016-06-08 09:53:43 +08:00
for (var i = 0, l = value.length; i < l; i++) {
if (value[i]) {
2016-08-30 03:49:00 +08:00
if ((stringified = stringifyClass(value[i]))) {
2016-10-12 12:54:06 +08:00
res += stringified + ' ';
2016-06-08 09:53:43 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
return res.slice(0, -1)
2016-06-08 09:53:43 +08:00
}
if (isObject(value)) {
for (var key in value) {
2016-10-12 12:54:06 +08:00
if (value[key]) { res += key + ' '; }
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
return res.slice(0, -1)
2016-06-08 09:53:43 +08:00
}
/* istanbul ignore next */
2016-08-30 03:49:00 +08:00
return res
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
var namespaceMap = {
svg: 'http://www.w3.org/2000/svg',
2016-11-05 11:47:26 +08:00
math: 'http://www.w3.org/1998/Math/MathML',
2016-11-16 07:05:02 +08:00
xhtml: 'http://www.w3.org/1999/xhtml'
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +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-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
var isUnaryTag = makeMap(
'area,base,br,col,embed,frame,hr,img,input,isindex,keygen,' +
'link,meta,param,source,track,wbr',
true
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
// Elements that you can, intentionally, leave open
// (and which close themselves)
2016-08-30 03:49:00 +08:00
var canBeLeftOpenTag = makeMap(
'colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source',
true
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +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
2016-08-30 03:49:00 +08:00
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',
true
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
2016-07-17 13:53:44 +08:00
// this map is intentionally selective, only covering SVG elements that may
// contain child elements.
2016-08-30 03:49:00 +08:00
var isSVG = makeMap(
'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font,' +
'font-face,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +
'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',
true
2016-10-12 12:54:06 +08:00
);
2016-07-17 13:53:44 +08:00
2016-10-01 02:32:00 +08:00
2016-08-30 03:49:00 +08:00
var isReservedTag = function (tag) {
return isHTMLTag(tag) || isSVG(tag)
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
function getTagNamespace (tag) {
2016-06-28 10:25:12 +08:00
if (isSVG(tag)) {
2016-08-30 03:49:00 +08:00
return 'svg'
2016-06-28 10:25:12 +08:00
}
// basic support for MathML
// note it doesn't support other MathML elements being component roots
if (tag === 'math') {
2016-08-30 03:49:00 +08:00
return 'math'
2016-06-28 10:25:12 +08:00
}
}
2016-10-12 12:54:06 +08:00
var unknownElementCache = Object.create(null);
2016-08-30 03:49:00 +08:00
function isUnknownElement (tag) {
2016-06-08 09:53:43 +08:00
/* istanbul ignore if */
if (!inBrowser) {
2016-08-30 03:49:00 +08:00
return true
2016-06-08 09:53:43 +08:00
}
2016-07-24 10:48:09 +08:00
if (isReservedTag(tag)) {
2016-08-30 03:49:00 +08:00
return false
2016-07-24 10:48:09 +08:00
}
2016-10-12 12:54:06 +08:00
tag = tag.toLowerCase();
2016-06-08 09:53:43 +08:00
/* istanbul ignore if */
if (unknownElementCache[tag] != null) {
2016-08-30 03:49:00 +08:00
return unknownElementCache[tag]
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var el = document.createElement(tag);
2016-06-08 09:53:43 +08:00
if (tag.indexOf('-') > -1) {
// http://stackoverflow.com/a/28210364/1070244
2016-08-30 03:49:00 +08:00
return (unknownElementCache[tag] = (
el.constructor === window.HTMLUnknownElement ||
el.constructor === window.HTMLElement
))
2016-06-08 09:53:43 +08:00
} else {
2016-08-30 03:49:00 +08:00
return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))
2016-06-08 09:53:43 +08:00
}
}
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
/**
* Query an element selector if it's not an element already.
*/
2016-08-30 03:49:00 +08:00
function query (el) {
2016-06-08 09:53:43 +08:00
if (typeof el === 'string') {
2016-10-12 12:54:06 +08:00
var selector = el;
el = document.querySelector(el);
2016-06-08 09:53:43 +08:00
if (!el) {
2016-08-30 03:49:00 +08:00
process.env.NODE_ENV !== 'production' && warn(
'Cannot find element: ' + selector
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return document.createElement('div')
2016-06-08 09:53:43 +08:00
}
}
2016-08-30 03:49:00 +08:00
return el
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-10-12 12:54:06 +08:00
function createElement$1 (tagName, vnode) {
var elm = document.createElement(tagName);
if (tagName !== 'select') {
return elm
}
if (vnode.data && vnode.data.attrs && 'multiple' in vnode.data.attrs) {
elm.setAttribute('multiple', 'multiple');
}
return elm
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function createElementNS (namespace, tagName) {
return document.createElementNS(namespaceMap[namespace], tagName)
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function createTextNode (text) {
return document.createTextNode(text)
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function createComment (text) {
return document.createComment(text)
2016-08-06 06:14:22 +08:00
}
2016-08-30 03:49:00 +08:00
function insertBefore (parentNode, newNode, referenceNode) {
2016-10-12 12:54:06 +08:00
parentNode.insertBefore(newNode, referenceNode);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function removeChild (node, child) {
2016-10-12 12:54:06 +08:00
node.removeChild(child);
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function appendChild (node, child) {
2016-10-12 12:54:06 +08:00
node.appendChild(child);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function parentNode (node) {
return node.parentNode
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function nextSibling (node) {
return node.nextSibling
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function tagName (node) {
return node.tagName
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function setTextContent (node, text) {
2016-10-12 12:54:06 +08:00
node.textContent = text;
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function childNodes (node) {
return node.childNodes
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function setAttribute (node, key, val) {
2016-10-12 12:54:06 +08:00
node.setAttribute(key, val);
2016-06-11 07:23:32 +08:00
}
2016-08-30 03:49:00 +08:00
2016-06-08 09:53:43 +08:00
var nodeOps = Object.freeze({
2016-10-01 02:32:00 +08:00
createElement: createElement$1,
createElementNS: createElementNS,
createTextNode: createTextNode,
createComment: createComment,
insertBefore: insertBefore,
removeChild: removeChild,
appendChild: appendChild,
parentNode: parentNode,
nextSibling: nextSibling,
tagName: tagName,
setTextContent: setTextContent,
childNodes: childNodes,
setAttribute: setAttribute
2016-06-08 09:53:43 +08:00
});
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/* */
2016-08-21 02:04:54 +08:00
var ref = {
2016-08-30 03:49:00 +08:00
create: function create (_, vnode) {
2016-10-12 12:54:06 +08:00
registerRef(vnode);
2016-08-21 02:04:54 +08:00
},
2016-08-30 03:49:00 +08:00
update: function update (oldVnode, vnode) {
2016-08-21 02:04:54 +08:00
if (oldVnode.data.ref !== vnode.data.ref) {
2016-10-12 12:54:06 +08:00
registerRef(oldVnode, true);
registerRef(vnode);
2016-08-21 02:04:54 +08:00
}
},
2016-08-30 03:49:00 +08:00
destroy: function destroy (vnode) {
2016-10-12 12:54:06 +08:00
registerRef(vnode, true);
2016-08-21 02:04:54 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-08-21 02:04:54 +08:00
2016-08-30 03:49:00 +08:00
function registerRef (vnode, isRemoval) {
2016-10-12 12:54:06 +08:00
var key = vnode.data.ref;
2016-09-24 06:24:49 +08:00
if (!key) { return }
2016-08-21 02:04:54 +08:00
2016-10-12 12:54:06 +08:00
var vm = vnode.context;
var ref = vnode.child || vnode.elm;
var refs = vm.$refs;
2016-08-21 02:04:54 +08:00
if (isRemoval) {
if (Array.isArray(refs[key])) {
2016-10-12 12:54:06 +08:00
remove$1(refs[key], ref);
2016-08-21 02:04:54 +08:00
} else if (refs[key] === ref) {
2016-10-12 12:54:06 +08:00
refs[key] = undefined;
2016-08-21 02:04:54 +08:00
}
} else {
if (vnode.data.refInFor) {
2016-11-20 11:14:58 +08:00
if (Array.isArray(refs[key]) && refs[key].indexOf(ref) < 0) {
2016-10-12 12:54:06 +08:00
refs[key].push(ref);
2016-08-21 02:04:54 +08:00
} else {
2016-10-12 12:54:06 +08:00
refs[key] = [ref];
2016-08-21 02:04:54 +08:00
}
} else {
2016-10-12 12:54:06 +08:00
refs[key] = ref;
2016-08-21 02:04:54 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
/**
* Virtual DOM patching algorithm based on Snabbdom by
* Simon Friis Vindum (@paldepind)
* Licensed under the MIT License
* https://github.com/paldepind/snabbdom/blob/master/LICENSE
*
* modified by Evan You (@yyx990803)
*
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/*
* Not type-checking this because this file is perf-critical and the cost
* of making flow understand it is not worth it.
*/
2016-10-12 12:54:06 +08:00
var emptyNode = new VNode('', {}, []);
var hooks$1 = ['create', 'update', 'remove', 'destroy'];
2016-08-30 03:49:00 +08:00
function isUndef (s) {
return s == null
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function isDef (s) {
return s != null
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function sameVnode (vnode1, vnode2) {
return (
vnode1.key === vnode2.key &&
vnode1.tag === vnode2.tag &&
vnode1.isComment === vnode2.isComment &&
!vnode1.data === !vnode2.data
)
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function createKeyToOldIdx (children, beginIdx, endIdx) {
2016-10-12 12:54:06 +08:00
var i, key;
var map = {};
2016-04-27 01:29:27 +08:00
for (i = beginIdx; i <= endIdx; ++i) {
2016-10-12 12:54:06 +08:00
key = children[i].key;
if (isDef(key)) { map[key] = i; }
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return map
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function createPatchFunction (backend) {
2016-10-12 12:54:06 +08:00
var i, j;
var cbs = {};
2016-04-27 01:29:27 +08:00
var modules = backend.modules;
var nodeOps = backend.nodeOps;
for (i = 0; i < hooks$1.length; ++i) {
2016-10-12 12:54:06 +08:00
cbs[hooks$1[i]] = [];
2016-04-27 01:29:27 +08:00
for (j = 0; j < modules.length; ++j) {
2016-10-12 12:54:06 +08:00
if (modules[j][hooks$1[i]] !== undefined) { cbs[hooks$1[i]].push(modules[j][hooks$1[i]]); }
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function emptyNodeAt (elm) {
return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function createRmCb (childElm, listeners) {
2016-10-01 02:32:00 +08:00
function remove$$1 () {
if (--remove$$1.listeners === 0) {
2016-10-12 12:54:06 +08:00
removeElement(childElm);
2016-04-27 01:29:27 +08:00
}
}
2016-10-12 12:54:06 +08:00
remove$$1.listeners = listeners;
2016-10-01 02:32:00 +08:00
return remove$$1
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function removeElement (el) {
2016-10-12 12:54:06 +08:00
var parent = nodeOps.parentNode(el);
2016-11-05 04:47:02 +08:00
// element may have already been removed due to v-html
if (parent) {
nodeOps.removeChild(parent, el);
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function createElm (vnode, insertedVnodeQueue, nested) {
2016-10-12 12:54:06 +08:00
var i;
var data = vnode.data;
vnode.isRootInsert = !nested;
2016-04-27 01:29:27 +08:00
if (isDef(data)) {
2016-10-12 12:54:06 +08:00
if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode); }
2016-04-27 01:29:27 +08:00
// after calling the init hook, if the vnode is a child component
// it should've created a child instance and mounted it. the child
// component also has set the placeholder vnode's elm.
// in that case we can just return the element and be done.
if (isDef(i = vnode.child)) {
2016-10-12 12:54:06 +08:00
initComponent(vnode, insertedVnodeQueue);
2016-08-30 03:49:00 +08:00
return vnode.elm
2016-04-27 01:29:27 +08:00
}
}
2016-10-12 12:54:06 +08:00
var children = vnode.children;
var tag = vnode.tag;
2016-04-27 01:29:27 +08:00
if (isDef(tag)) {
2016-07-08 05:53:22 +08:00
if (process.env.NODE_ENV !== 'production') {
2016-08-30 03:49:00 +08:00
if (
!vnode.ns &&
!(config.ignoredElements && config.ignoredElements.indexOf(tag) > -1) &&
config.isUnknownElement(tag)
) {
warn(
'Unknown custom element: <' + tag + '> - did you ' +
'register the component correctly? For recursive components, ' +
'make sure to provide the "name" option.',
vnode.context
2016-10-12 12:54:06 +08:00
);
2016-07-08 05:53:22 +08:00
}
}
2016-09-08 19:29:47 +08:00
vnode.elm = vnode.ns
2016-08-30 03:49:00 +08:00
? nodeOps.createElementNS(vnode.ns, tag)
2016-10-12 12:54:06 +08:00
: nodeOps.createElement(tag, vnode);
setScope(vnode);
createChildren(vnode, children, insertedVnodeQueue);
2016-04-27 01:29:27 +08:00
if (isDef(data)) {
2016-10-12 12:54:06 +08:00
invokeCreateHooks(vnode, insertedVnodeQueue);
2016-04-27 01:29:27 +08:00
}
2016-08-06 06:14:22 +08:00
} else if (vnode.isComment) {
2016-10-12 12:54:06 +08:00
vnode.elm = nodeOps.createComment(vnode.text);
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
vnode.elm = nodeOps.createTextNode(vnode.text);
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return vnode.elm
2016-04-27 01:29:27 +08:00
}
2016-09-08 19:29:47 +08:00
function createChildren (vnode, children, insertedVnodeQueue) {
if (Array.isArray(children)) {
for (var i = 0; i < children.length; ++i) {
2016-10-12 12:54:06 +08:00
nodeOps.appendChild(vnode.elm, createElm(children[i], insertedVnodeQueue, true));
2016-09-08 19:29:47 +08:00
}
} else if (isPrimitive(vnode.text)) {
2016-10-12 12:54:06 +08:00
nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(vnode.text));
2016-09-08 19:29:47 +08:00
}
}
2016-08-30 03:49:00 +08:00
function isPatchable (vnode) {
2016-08-16 11:39:07 +08:00
while (vnode.child) {
2016-10-12 12:54:06 +08:00
vnode = vnode.child._vnode;
2016-08-16 11:39:07 +08:00
}
2016-08-30 03:49:00 +08:00
return isDef(vnode.tag)
2016-08-16 11:39:07 +08:00
}
2016-08-30 03:49:00 +08:00
function invokeCreateHooks (vnode, insertedVnodeQueue) {
for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {
2016-10-12 12:54:06 +08:00
cbs.create[i$1](emptyNode, vnode);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
i = vnode.data.hook; // Reuse variable
2016-04-27 01:29:27 +08:00
if (isDef(i)) {
2016-10-12 12:54:06 +08:00
if (i.create) { i.create(emptyNode, vnode); }
if (i.insert) { insertedVnodeQueue.push(vnode); }
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function initComponent (vnode, insertedVnodeQueue) {
2016-08-06 06:14:22 +08:00
if (vnode.data.pendingInsert) {
2016-10-12 12:54:06 +08:00
insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);
2016-08-06 06:14:22 +08:00
}
2016-10-12 12:54:06 +08:00
vnode.elm = vnode.child.$el;
2016-08-16 11:39:07 +08:00
if (isPatchable(vnode)) {
2016-10-12 12:54:06 +08:00
invokeCreateHooks(vnode, insertedVnodeQueue);
setScope(vnode);
2016-08-16 11:39:07 +08:00
} else {
2016-08-21 02:04:54 +08:00
// empty component root.
// skip all element-related modules except for ref (#3455)
2016-10-12 12:54:06 +08:00
registerRef(vnode);
2016-08-21 02:04:54 +08:00
// make sure to invoke the insert hook
2016-10-12 12:54:06 +08:00
insertedVnodeQueue.push(vnode);
2016-08-16 11:39:07 +08:00
}
2016-08-06 06:14:22 +08:00
}
2016-06-11 07:23:32 +08:00
// set scope id attribute for scoped CSS.
// this is implemented as a special case to avoid the overhead
// of going through the normal attribute patching process.
2016-08-30 03:49:00 +08:00
function setScope (vnode) {
2016-10-12 12:54:06 +08:00
var i;
2016-08-06 06:14:22 +08:00
if (isDef(i = vnode.context) && isDef(i = i.$options._scopeId)) {
2016-10-12 12:54:06 +08:00
nodeOps.setAttribute(vnode.elm, i, '');
2016-06-16 02:22:40 +08:00
}
2016-08-30 03:49:00 +08:00
if (isDef(i = activeInstance) &&
i !== vnode.context &&
isDef(i = i.$options._scopeId)) {
2016-10-12 12:54:06 +08:00
nodeOps.setAttribute(vnode.elm, i, '');
2016-06-11 07:23:32 +08:00
}
}
2016-08-30 03:49:00 +08:00
function addVnodes (parentElm, before, vnodes, startIdx, endIdx, insertedVnodeQueue) {
2016-04-27 01:29:27 +08:00
for (; startIdx <= endIdx; ++startIdx) {
2016-10-12 12:54:06 +08:00
nodeOps.insertBefore(parentElm, createElm(vnodes[startIdx], insertedVnodeQueue), before);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function invokeDestroyHook (vnode) {
2016-10-12 12:54:06 +08:00
var i, j;
var data = vnode.data;
2016-04-27 01:29:27 +08:00
if (isDef(data)) {
2016-10-12 12:54:06 +08:00
if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }
for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }
2016-06-08 09:53:43 +08:00
}
if (isDef(i = vnode.children)) {
for (j = 0; j < vnode.children.length; ++j) {
2016-10-12 12:54:06 +08:00
invokeDestroyHook(vnode.children[j]);
2016-04-27 01:29:27 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
function removeVnodes (parentElm, vnodes, startIdx, endIdx) {
2016-04-27 01:29:27 +08:00
for (; startIdx <= endIdx; ++startIdx) {
2016-10-12 12:54:06 +08:00
var ch = vnodes[startIdx];
2016-04-27 01:29:27 +08:00
if (isDef(ch)) {
if (isDef(ch.tag)) {
2016-10-12 12:54:06 +08:00
removeAndInvokeRemoveHook(ch);
invokeDestroyHook(ch);
2016-08-30 03:49:00 +08:00
} else { // Text node
2016-10-12 12:54:06 +08:00
nodeOps.removeChild(parentElm, ch.elm);
2016-04-27 01:29:27 +08:00
}
}
}
}
2016-08-30 03:49:00 +08:00
function removeAndInvokeRemoveHook (vnode, rm) {
2016-04-27 01:29:27 +08:00
if (rm || isDef(vnode.data)) {
2016-10-12 12:54:06 +08:00
var listeners = cbs.remove.length + 1;
2016-04-27 01:29:27 +08:00
if (!rm) {
// directly removing
2016-10-12 12:54:06 +08:00
rm = createRmCb(vnode.elm, listeners);
2016-04-27 01:29:27 +08:00
} else {
// we have a recursively passed down rm callback
// increase the listeners count
2016-10-12 12:54:06 +08:00
rm.listeners += listeners;
2016-04-27 01:29:27 +08:00
}
// recursively invoke hooks on child component root node
if (isDef(i = vnode.child) && isDef(i = i._vnode) && isDef(i.data)) {
2016-10-12 12:54:06 +08:00
removeAndInvokeRemoveHook(i, rm);
2016-04-27 01:29:27 +08:00
}
for (i = 0; i < cbs.remove.length; ++i) {
2016-10-12 12:54:06 +08:00
cbs.remove[i](vnode, rm);
2016-04-27 01:29:27 +08:00
}
if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {
2016-10-12 12:54:06 +08:00
i(vnode, rm);
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
rm();
2016-04-27 01:29:27 +08:00
}
} else {
2016-10-12 12:54:06 +08:00
removeElement(vnode.elm);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {
2016-10-12 12:54:06 +08:00
var oldStartIdx = 0;
var newStartIdx = 0;
var oldEndIdx = oldCh.length - 1;
var oldStartVnode = oldCh[0];
var oldEndVnode = oldCh[oldEndIdx];
var newEndIdx = newCh.length - 1;
var newStartVnode = newCh[0];
var newEndVnode = newCh[newEndIdx];
var oldKeyToIdx, idxInOld, elmToMove, before;
2016-04-27 01:29:27 +08:00
2016-07-17 13:53:44 +08:00
// removeOnly is a special flag used only by <transition-group>
// to ensure removed elements stay in correct relative positions
// during leaving transitions
2016-10-12 12:54:06 +08:00
var canMove = !removeOnly;
2016-07-17 13:53:44 +08:00
2016-04-27 01:29:27 +08:00
while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {
if (isUndef(oldStartVnode)) {
2016-10-12 12:54:06 +08:00
oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left
2016-04-27 01:29:27 +08:00
} else if (isUndef(oldEndVnode)) {
2016-10-12 12:54:06 +08:00
oldEndVnode = oldCh[--oldEndIdx];
2016-06-28 10:25:12 +08:00
} else if (sameVnode(oldStartVnode, newStartVnode)) {
2016-10-12 12:54:06 +08:00
patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue);
oldStartVnode = oldCh[++oldStartIdx];
newStartVnode = newCh[++newStartIdx];
2016-06-28 10:25:12 +08:00
} else if (sameVnode(oldEndVnode, newEndVnode)) {
2016-10-12 12:54:06 +08:00
patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue);
oldEndVnode = oldCh[--oldEndIdx];
newEndVnode = newCh[--newEndIdx];
2016-08-30 03:49:00 +08:00
} else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right
2016-10-12 12:54:06 +08:00
patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue);
canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));
oldStartVnode = oldCh[++oldStartIdx];
newEndVnode = newCh[--newEndIdx];
2016-08-30 03:49:00 +08:00
} else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left
2016-10-12 12:54:06 +08:00
patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue);
canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);
oldEndVnode = oldCh[--oldEndIdx];
newStartVnode = newCh[++newStartIdx];
2016-06-28 10:25:12 +08:00
} else {
2016-10-12 12:54:06 +08:00
if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }
idxInOld = isDef(newStartVnode.key) ? oldKeyToIdx[newStartVnode.key] : null;
2016-08-30 03:49:00 +08:00
if (isUndef(idxInOld)) { // New element
2016-10-12 12:54:06 +08:00
nodeOps.insertBefore(parentElm, createElm(newStartVnode, insertedVnodeQueue), oldStartVnode.elm);
newStartVnode = newCh[++newStartIdx];
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
elmToMove = oldCh[idxInOld];
2016-06-28 10:25:12 +08:00
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && !elmToMove) {
2016-08-30 03:49:00 +08:00
warn(
'It seems there are duplicate keys that is causing an update error. ' +
'Make sure each v-for item has a unique key.'
2016-10-12 12:54:06 +08:00
);
2016-06-28 10:25:12 +08:00
}
if (elmToMove.tag !== newStartVnode.tag) {
// same key but different element. treat as new element
2016-10-12 12:54:06 +08:00
nodeOps.insertBefore(parentElm, createElm(newStartVnode, insertedVnodeQueue), oldStartVnode.elm);
newStartVnode = newCh[++newStartIdx];
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
patchVnode(elmToMove, newStartVnode, insertedVnodeQueue);
oldCh[idxInOld] = undefined;
canMove && nodeOps.insertBefore(parentElm, newStartVnode.elm, oldStartVnode.elm);
newStartVnode = newCh[++newStartIdx];
2016-04-27 01:29:27 +08:00
}
}
2016-06-28 10:25:12 +08:00
}
2016-04-27 01:29:27 +08:00
}
if (oldStartIdx > oldEndIdx) {
2016-10-12 12:54:06 +08:00
before = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;
addVnodes(parentElm, before, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);
2016-04-27 01:29:27 +08:00
} else if (newStartIdx > newEndIdx) {
2016-10-12 12:54:06 +08:00
removeVnodes(parentElm, oldCh, oldStartIdx, oldEndIdx);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function patchVnode (oldVnode, vnode, insertedVnodeQueue, removeOnly) {
2016-08-10 12:55:30 +08:00
if (oldVnode === vnode) {
2016-08-30 03:49:00 +08:00
return
}
// reuse element for static trees.
// note we only do this if the vnode is cloned -
// if the new node is not cloned it means the render functions have been
2016-09-08 19:29:47 +08:00
// reset by the hot-reload-api and we need to do a proper re-render.
2016-08-30 03:49:00 +08:00
if (vnode.isStatic &&
oldVnode.isStatic &&
vnode.key === oldVnode.key &&
2016-11-05 04:47:02 +08:00
(vnode.isCloned || vnode.isOnce)) {
2016-10-12 12:54:06 +08:00
vnode.elm = oldVnode.elm;
2016-08-30 03:49:00 +08:00
return
}
2016-10-12 12:54:06 +08:00
var i;
var data = vnode.data;
var hasData = isDef(data);
if (hasData && isDef(i = data.hook) && isDef(i = i.prepatch)) {
i(oldVnode, vnode);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var elm = vnode.elm = oldVnode.elm;
var oldCh = oldVnode.children;
var ch = vnode.children;
2016-08-16 11:39:07 +08:00
if (hasData && isPatchable(vnode)) {
2016-10-12 12:54:06 +08:00
for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }
if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }
2016-04-27 01:29:27 +08:00
}
if (isUndef(vnode.text)) {
if (isDef(oldCh) && isDef(ch)) {
2016-10-12 12:54:06 +08:00
if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }
2016-04-27 01:29:27 +08:00
} else if (isDef(ch)) {
2016-10-12 12:54:06 +08:00
if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }
addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);
2016-04-27 01:29:27 +08:00
} else if (isDef(oldCh)) {
2016-10-12 12:54:06 +08:00
removeVnodes(elm, oldCh, 0, oldCh.length - 1);
2016-04-27 01:29:27 +08:00
} else if (isDef(oldVnode.text)) {
2016-10-12 12:54:06 +08:00
nodeOps.setTextContent(elm, '');
2016-04-27 01:29:27 +08:00
}
} else if (oldVnode.text !== vnode.text) {
2016-10-12 12:54:06 +08:00
nodeOps.setTextContent(elm, vnode.text);
2016-04-27 01:29:27 +08:00
}
2016-06-28 17:03:10 +08:00
if (hasData) {
2016-10-12 12:54:06 +08:00
if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function invokeInsertHook (vnode, queue, initial) {
2016-07-17 13:53:44 +08:00
// delay insert hooks for component root nodes, invoke them after the
// element is really inserted
if (initial && vnode.parent) {
2016-10-12 12:54:06 +08:00
vnode.parent.data.pendingInsert = queue;
2016-07-17 13:53:44 +08:00
} else {
2016-08-30 03:49:00 +08:00
for (var i = 0; i < queue.length; ++i) {
2016-10-12 12:54:06 +08:00
queue[i].data.hook.insert(queue[i]);
2016-07-17 13:53:44 +08:00
}
2016-04-27 01:29:27 +08:00
}
}
2016-10-12 12:54:06 +08:00
var bailed = false;
2016-08-30 03:49:00 +08:00
function hydrate (elm, vnode, insertedVnodeQueue) {
2016-04-27 01:29:27 +08:00
if (process.env.NODE_ENV !== 'production') {
if (!assertNodeMatch(elm, vnode)) {
2016-08-30 03:49:00 +08:00
return false
2016-04-27 01:29:27 +08:00
}
}
2016-10-12 12:54:06 +08:00
vnode.elm = elm;
2016-04-27 01:29:27 +08:00
var tag = vnode.tag;
var data = vnode.data;
var children = vnode.children;
if (isDef(data)) {
2016-10-12 12:54:06 +08:00
if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }
2016-04-27 01:29:27 +08:00
if (isDef(i = vnode.child)) {
// child component. it should have hydrated its own tree.
2016-10-12 12:54:06 +08:00
initComponent(vnode, insertedVnodeQueue);
2016-08-30 03:49:00 +08:00
return true
2016-04-27 01:29:27 +08:00
}
}
if (isDef(tag)) {
if (isDef(children)) {
2016-10-12 12:54:06 +08:00
var childNodes = nodeOps.childNodes(elm);
2016-09-08 19:29:47 +08:00
// empty element, allow client to pick up and populate children
if (!childNodes.length) {
2016-10-12 12:54:06 +08:00
createChildren(vnode, children, insertedVnodeQueue);
2016-08-06 06:14:22 +08:00
} else {
2016-10-12 12:54:06 +08:00
var childrenMatch = true;
2016-09-08 19:29:47 +08:00
if (childNodes.length !== children.length) {
2016-10-12 12:54:06 +08:00
childrenMatch = false;
2016-09-08 19:29:47 +08:00
} else {
for (var i$1 = 0; i$1 < children.length; i$1++) {
if (!hydrate(childNodes[i$1], children[i$1], insertedVnodeQueue)) {
2016-10-12 12:54:06 +08:00
childrenMatch = false;
2016-09-08 19:29:47 +08:00
break
}
2016-08-06 06:14:22 +08:00
}
}
2016-09-08 19:29:47 +08:00
if (!childrenMatch) {
if (process.env.NODE_ENV !== 'production' &&
typeof console !== 'undefined' &&
!bailed) {
2016-10-12 12:54:06 +08:00
bailed = true;
console.warn('Parent: ', elm);
console.warn('Mismatching childNodes vs. VNodes: ', childNodes, children);
2016-09-08 19:29:47 +08:00
}
return false
2016-04-27 01:29:27 +08:00
}
}
}
if (isDef(data)) {
2016-10-12 12:54:06 +08:00
invokeCreateHooks(vnode, insertedVnodeQueue);
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
return true
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function assertNodeMatch (node, vnode) {
2016-08-06 06:14:22 +08:00
if (vnode.tag) {
2016-08-30 03:49:00 +08:00
return (
vnode.tag.indexOf('vue-component') === 0 ||
2016-11-16 07:05:02 +08:00
vnode.tag.toLowerCase() === nodeOps.tagName(node).toLowerCase()
2016-08-30 03:49:00 +08:00
)
2016-04-27 01:29:27 +08:00
} else {
2016-08-30 03:49:00 +08:00
return _toString(vnode.text) === node.data
2016-07-24 10:48:09 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
return function patch (oldVnode, vnode, hydrating, removeOnly) {
2016-10-13 17:27:27 +08:00
if (!vnode) {
if (oldVnode) { invokeDestroyHook(oldVnode); }
return
}
2016-10-12 12:54:06 +08:00
var elm, parent;
var isInitialPatch = false;
var insertedVnodeQueue = [];
2016-04-27 01:29:27 +08:00
if (!oldVnode) {
// empty mount, create new root element
2016-10-12 12:54:06 +08:00
isInitialPatch = true;
createElm(vnode, insertedVnodeQueue);
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
var isRealElement = isDef(oldVnode.nodeType);
2016-06-08 09:53:43 +08:00
if (!isRealElement && sameVnode(oldVnode, vnode)) {
2016-10-12 12:54:06 +08:00
patchVnode(oldVnode, vnode, insertedVnodeQueue, removeOnly);
2016-04-27 01:29:27 +08:00
} else {
2016-06-08 09:53:43 +08:00
if (isRealElement) {
2016-04-27 01:29:27 +08:00
// mounting to a real element
// check if this is server-rendered content and if we can perform
// a successful hydration.
2016-08-06 06:14:22 +08:00
if (oldVnode.nodeType === 1 && oldVnode.hasAttribute('server-rendered')) {
2016-10-12 12:54:06 +08:00
oldVnode.removeAttribute('server-rendered');
hydrating = true;
2016-06-08 09:53:43 +08:00
}
if (hydrating) {
2016-04-27 01:29:27 +08:00
if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {
2016-10-12 12:54:06 +08:00
invokeInsertHook(vnode, insertedVnodeQueue, true);
2016-08-30 03:49:00 +08:00
return oldVnode
2016-08-06 06:14:22 +08:00
} else if (process.env.NODE_ENV !== 'production') {
2016-08-30 03:49:00 +08:00
warn(
'The client-side rendered virtual DOM tree is not matching ' +
'server-rendered content. This is likely caused by incorrect ' +
'HTML markup, for example nesting block-level elements inside ' +
'<p>, or missing <tbody>. Bailing hydration and performing ' +
'full client-side render.'
2016-10-12 12:54:06 +08:00
);
2016-04-27 01:29:27 +08:00
}
}
// either not server-rendered, or hydration failed.
// create an empty node and replace it
2016-10-12 12:54:06 +08:00
oldVnode = emptyNodeAt(oldVnode);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
elm = oldVnode.elm;
parent = nodeOps.parentNode(elm);
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
createElm(vnode, insertedVnodeQueue);
2016-04-27 01:29:27 +08:00
2016-07-08 05:53:22 +08:00
// component root element replaced.
// update parent placeholder node element.
if (vnode.parent) {
2016-10-12 12:54:06 +08:00
vnode.parent.elm = vnode.elm;
2016-08-16 11:39:07 +08:00
if (isPatchable(vnode)) {
2016-08-30 03:49:00 +08:00
for (var i = 0; i < cbs.create.length; ++i) {
2016-10-12 12:54:06 +08:00
cbs.create[i](emptyNode, vnode.parent);
2016-08-16 11:39:07 +08:00
}
2016-07-08 05:53:22 +08:00
}
}
2016-04-27 01:29:27 +08:00
if (parent !== null) {
2016-10-12 12:54:06 +08:00
nodeOps.insertBefore(parent, vnode.elm, nodeOps.nextSibling(elm));
removeVnodes(parent, [oldVnode], 0, 0);
2016-06-08 09:53:43 +08:00
} else if (isDef(oldVnode.tag)) {
2016-10-12 12:54:06 +08:00
invokeDestroyHook(oldVnode);
2016-04-27 01:29:27 +08:00
}
}
}
2016-10-12 12:54:06 +08:00
invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);
2016-08-30 03:49:00 +08:00
return vnode.elm
}
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
var directives = {
2016-10-12 12:54:06 +08:00
create: updateDirectives,
update: updateDirectives,
destroy: function unbindDirectives (vnode) {
updateDirectives(vnode, emptyNode);
}
};
function updateDirectives (
oldVnode,
vnode
) {
if (!oldVnode.data.directives && !vnode.data.directives) {
return
}
var isCreate = oldVnode === emptyNode;
var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);
var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);
var dirsWithInsert = [];
var dirsWithPostpatch = [];
var key, oldDir, dir;
for (key in newDirs) {
oldDir = oldDirs[key];
dir = newDirs[key];
if (!oldDir) {
// new directive, bind
callHook$1(dir, 'bind', vnode, oldVnode);
if (dir.def && dir.def.inserted) {
dirsWithInsert.push(dir);
}
} else {
// existing directive, update
dir.oldValue = oldDir.value;
callHook$1(dir, 'update', vnode, oldVnode);
if (dir.def && dir.def.componentUpdated) {
dirsWithPostpatch.push(dir);
2016-09-08 19:29:47 +08:00
}
}
2016-10-12 12:54:06 +08:00
}
if (dirsWithInsert.length) {
var callInsert = function () {
dirsWithInsert.forEach(function (dir) {
callHook$1(dir, 'inserted', vnode, oldVnode);
});
};
if (isCreate) {
mergeVNodeHook(vnode.data.hook || (vnode.data.hook = {}), 'insert', callInsert, 'dir-insert');
} else {
callInsert();
2016-08-30 03:49:00 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
if (dirsWithPostpatch.length) {
mergeVNodeHook(vnode.data.hook || (vnode.data.hook = {}), 'postpatch', function () {
dirsWithPostpatch.forEach(function (dir) {
callHook$1(dir, 'componentUpdated', vnode, oldVnode);
});
}, 'dir-postpatch');
}
2016-07-08 05:53:22 +08:00
2016-10-12 12:54:06 +08:00
if (!isCreate) {
for (key in oldDirs) {
if (!newDirs[key]) {
// no longer present, unbind
callHook$1(oldDirs[key], 'unbind', oldVnode);
2016-06-08 09:53:43 +08:00
}
}
2016-04-27 01:29:27 +08:00
}
}
2016-10-12 12:54:06 +08:00
var emptyModifiers = Object.create(null);
function normalizeDirectives$1 (
dirs,
vm
2016-09-08 19:29:47 +08:00
) {
2016-10-12 12:54:06 +08:00
var res = Object.create(null);
if (!dirs) {
return res
}
var i, dir;
for (i = 0; i < dirs.length; i++) {
dir = dirs[i];
if (!dir.modifiers) {
dir.modifiers = emptyModifiers;
}
2016-10-13 17:27:27 +08:00
res[getRawDirName(dir)] = dir;
2016-10-12 12:54:06 +08:00
dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);
}
return res
2016-09-08 19:29:47 +08:00
}
2016-10-12 12:54:06 +08:00
function getRawDirName (dir) {
2016-10-13 17:27:27 +08:00
return dir.rawName || ((dir.name) + "." + (Object.keys(dir.modifiers || {}).join('.')))
2016-10-12 12:54:06 +08:00
}
function callHook$1 (dir, hook, vnode, oldVnode) {
var fn = dir.def && dir.def[hook];
2016-09-08 19:29:47 +08:00
if (fn) {
2016-10-12 12:54:06 +08:00
fn(vnode.elm, dir, vnode, oldVnode);
2016-09-08 19:29:47 +08:00
}
}
2016-08-30 03:49:00 +08:00
var baseModules = [
ref,
directives
2016-10-12 12:54:06 +08:00
];
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/* */
function updateAttrs (oldVnode, vnode) {
2016-06-08 09:53:43 +08:00
if (!oldVnode.data.attrs && !vnode.data.attrs) {
2016-08-30 03:49:00 +08:00
return
}
2016-10-12 12:54:06 +08:00
var key, cur, old;
var elm = vnode.elm;
var oldAttrs = oldVnode.data.attrs || {};
var attrs = vnode.data.attrs || {};
2016-08-02 03:31:12 +08:00
// clone observed objects, as the user probably wants to mutate it
if (attrs.__ob__) {
2016-10-12 12:54:06 +08:00
attrs = vnode.data.attrs = extend({}, attrs);
2016-08-02 03:31:12 +08:00
}
2016-06-08 09:53:43 +08:00
for (key in attrs) {
2016-10-12 12:54:06 +08:00
cur = attrs[key];
old = oldAttrs[key];
2016-06-08 09:53:43 +08:00
if (old !== cur) {
2016-10-12 12:54:06 +08:00
setAttr(elm, key, cur);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
for (key in oldAttrs) {
if (attrs[key] == null) {
if (isXlink(key)) {
2016-10-12 12:54:06 +08:00
elm.removeAttributeNS(xlinkNS, getXlinkProp(key));
2016-06-08 09:53:43 +08:00
} else if (!isEnumeratedAttr(key)) {
2016-10-12 12:54:06 +08:00
elm.removeAttribute(key);
2016-06-08 09:53:43 +08:00
}
}
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function setAttr (el, key, value) {
2016-06-08 09:53:43 +08:00
if (isBooleanAttr(key)) {
// set attribute for blank value
// e.g. <option disabled>Select one</option>
if (isFalsyAttrValue(value)) {
2016-10-12 12:54:06 +08:00
el.removeAttribute(key);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
el.setAttribute(key, key);
2016-06-08 09:53:43 +08:00
}
} else if (isEnumeratedAttr(key)) {
2016-10-12 12:54:06 +08:00
el.setAttribute(key, isFalsyAttrValue(value) || value === 'false' ? 'false' : 'true');
2016-06-08 09:53:43 +08:00
} else if (isXlink(key)) {
if (isFalsyAttrValue(value)) {
2016-10-12 12:54:06 +08:00
el.removeAttributeNS(xlinkNS, getXlinkProp(key));
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
el.setAttributeNS(xlinkNS, key, value);
2016-06-08 09:53:43 +08:00
}
} else {
if (isFalsyAttrValue(value)) {
2016-10-12 12:54:06 +08:00
el.removeAttribute(key);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
el.setAttribute(key, value);
2016-04-27 01:29:27 +08:00
}
}
}
2016-06-08 09:53:43 +08:00
var attrs = {
2016-08-02 03:31:12 +08:00
create: updateAttrs,
2016-06-08 09:53:43 +08:00
update: updateAttrs
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function updateClass (oldVnode, vnode) {
2016-10-12 12:54:06 +08:00
var el = vnode.elm;
var data = vnode.data;
var oldData = oldVnode.data;
2016-08-30 03:49:00 +08:00
if (!data.staticClass && !data.class &&
(!oldData || (!oldData.staticClass && !oldData.class))) {
return
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
var cls = genClassForVnode(vnode);
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
// handle transition classes
2016-10-12 12:54:06 +08:00
var transitionClass = el._transitionClasses;
2016-06-08 09:53:43 +08:00
if (transitionClass) {
2016-10-12 12:54:06 +08:00
cls = concat(cls, stringifyClass(transitionClass));
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
// set the class
if (cls !== el._prevClass) {
2016-10-12 12:54:06 +08:00
el.setAttribute('class', cls);
el._prevClass = cls;
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
var klass = {
create: updateClass,
update: updateClass
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
// skip type checking this file because we need to attach private properties
// to elements
function updateDOMListeners (oldVnode, vnode) {
2016-06-08 09:53:43 +08:00
if (!oldVnode.data.on && !vnode.data.on) {
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var on = vnode.data.on || {};
var oldOn = oldVnode.data.on || {};
2016-06-08 09:53:43 +08:00
var add = vnode.elm._v_add || (vnode.elm._v_add = function (event, handler, capture) {
2016-10-12 12:54:06 +08:00
vnode.elm.addEventListener(event, handler, capture);
});
2016-06-08 09:53:43 +08:00
var remove = vnode.elm._v_remove || (vnode.elm._v_remove = function (event, handler) {
2016-10-12 12:54:06 +08:00
vnode.elm.removeEventListener(event, handler);
});
updateListeners(on, oldOn, add, remove, vnode.context);
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
var events = {
create: updateDOMListeners,
update: updateDOMListeners
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
function updateDOMProps (oldVnode, vnode) {
2016-07-24 10:48:09 +08:00
if (!oldVnode.data.domProps && !vnode.data.domProps) {
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var key, cur;
var elm = vnode.elm;
var oldProps = oldVnode.data.domProps || {};
var props = vnode.data.domProps || {};
2016-08-02 03:31:12 +08:00
// clone observed objects, as the user probably wants to mutate it
if (props.__ob__) {
2016-10-12 12:54:06 +08:00
props = vnode.data.domProps = extend({}, props);
2016-08-02 03:31:12 +08:00
}
2016-06-08 09:53:43 +08:00
for (key in oldProps) {
if (props[key] == null) {
2016-11-05 04:47:02 +08:00
elm[key] = '';
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
}
for (key in props) {
2016-11-20 11:14:58 +08:00
cur = props[key];
2016-08-02 03:31:12 +08:00
// ignore children if the node has textContent or innerHTML,
// as these will throw away existing DOM nodes and cause removal errors
// on subsequent patches (#3360)
2016-11-20 11:14:58 +08:00
if (key === 'textContent' || key === 'innerHTML') {
if (vnode.children) { vnode.children.length = 0; }
if (cur === oldProps[key]) { continue }
2016-08-02 03:31:12 +08:00
}
2016-06-08 09:53:43 +08:00
if (key === 'value') {
// store value as _value as well since
// non-string values will be stringified
2016-10-12 12:54:06 +08:00
elm._value = cur;
2016-06-08 09:53:43 +08:00
// avoid resetting cursor position when value is the same
2016-10-12 12:54:06 +08:00
var strCur = cur == null ? '' : String(cur);
if (elm.value !== strCur && !elm.composing) {
elm.value = strCur;
2016-06-08 09:53:43 +08:00
}
} else {
2016-10-12 12:54:06 +08:00
elm[key] = cur;
2016-04-27 01:29:27 +08:00
}
}
}
2016-07-24 10:48:09 +08:00
var domProps = {
create: updateDOMProps,
update: updateDOMProps
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
2016-04-27 01:29:27 +08:00
2016-11-16 07:05:02 +08:00
var parseStyleText = cached(function (cssText) {
var res = {};
var hasBackground = cssText.indexOf('background') >= 0;
// maybe with background-image: url(http://xxx) or base64 img
var listDelimiter = hasBackground ? /;(?![^(]*\))/g : ';';
var propertyDelimiter = hasBackground ? /:(.+)/ : ':';
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
}
// normalize possible array / string values into Object
function normalizeStyleBinding (bindingStyle) {
if (Array.isArray(bindingStyle)) {
return toObject(bindingStyle)
}
if (typeof bindingStyle === 'string') {
return parseStyleText(bindingStyle)
}
return bindingStyle
}
/**
* 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.child) {
childNode = childNode.child._vnode;
if (childNode.data && (styleData = normalizeStyleData(childNode.data))) {
extend(res, styleData);
}
}
}
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);
}
}
return res
}
/* */
2016-11-05 04:47:02 +08:00
var cssVarRE = /^--/;
var setProp = function (el, name, val) {
/* istanbul ignore if */
if (cssVarRE.test(name)) {
el.style.setProperty(name, val);
} else {
el.style[normalize(name)] = val;
}
};
2016-10-12 12:54:06 +08:00
var prefixes = ['Webkit', 'Moz', 'ms'];
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
var testEl;
2016-06-08 09:53:43 +08:00
var normalize = cached(function (prop) {
2016-10-12 12:54:06 +08:00
testEl = testEl || document.createElement('div');
prop = camelize(prop);
2016-08-30 03:49:00 +08:00
if (prop !== 'filter' && (prop in testEl.style)) {
return prop
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var upper = prop.charAt(0).toUpperCase() + prop.slice(1);
2016-06-08 09:53:43 +08:00
for (var i = 0; i < prefixes.length; i++) {
2016-10-12 12:54:06 +08:00
var prefixed = prefixes[i] + upper;
2016-06-08 09:53:43 +08:00
if (prefixed in testEl.style) {
2016-08-30 03:49:00 +08:00
return prefixed
2016-06-08 09:53:43 +08:00
}
}
2016-10-12 12:54:06 +08:00
});
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function updateStyle (oldVnode, vnode) {
2016-11-16 07:05:02 +08:00
var data = vnode.data;
var oldData = oldVnode.data;
if (!data.staticStyle && !data.style &&
!oldData.staticStyle && !oldData.style) {
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-11-16 07:05:02 +08:00
2016-10-12 12:54:06 +08:00
var cur, name;
var el = vnode.elm;
2016-11-20 11:14:58 +08:00
var oldStaticStyle = oldVnode.data.staticStyle;
var oldStyleBinding = oldVnode.data.style || {};
// if static style exists, stylebinding already merged into it when doing normalizeStyleData
var oldStyle = oldStaticStyle || oldStyleBinding;
2016-11-16 07:05:02 +08:00
var style = normalizeStyleBinding(vnode.data.style) || {};
2016-08-06 06:14:22 +08:00
2016-11-16 07:05:02 +08:00
vnode.data.style = style.__ob__ ? extend({}, style) : style;
2016-04-27 01:29:27 +08:00
2016-11-16 07:05:02 +08:00
var newStyle = getStyle(vnode, true);
2016-07-17 13:53:44 +08:00
2016-06-08 09:53:43 +08:00
for (name in oldStyle) {
2016-11-16 07:05:02 +08:00
if (newStyle[name] == null) {
2016-11-05 04:47:02 +08:00
setProp(el, name, '');
2016-06-08 09:53:43 +08:00
}
}
2016-11-16 07:05:02 +08:00
for (name in newStyle) {
cur = newStyle[name];
2016-06-08 09:53:43 +08:00
if (cur !== oldStyle[name]) {
// ie9 setting to null has no effect, must use empty string
2016-11-05 04:47:02 +08:00
setProp(el, name, cur == null ? '' : cur);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
}
2016-06-08 09:53:43 +08:00
var style = {
create: updateStyle,
update: updateStyle
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
2016-04-27 01:29:27 +08:00
/**
2016-06-08 09:53:43 +08:00
* Add class with compatibility for SVG since classList is not supported on
* SVG elements in IE
2016-04-27 01:29:27 +08:00
*/
2016-08-30 03:49:00 +08:00
function addClass (el, cls) {
2016-11-05 04:47:02 +08:00
/* istanbul ignore if */
if (!cls || !cls.trim()) {
return
}
2016-06-08 09:53:43 +08:00
/* istanbul ignore else */
2016-04-27 01:29:27 +08:00
if (el.classList) {
if (cls.indexOf(' ') > -1) {
2016-10-12 12:54:06 +08:00
cls.split(/\s+/).forEach(function (c) { return el.classList.add(c); });
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
el.classList.add(cls);
2016-04-27 01:29:27 +08:00
}
} else {
2016-10-12 12:54:06 +08:00
var cur = ' ' + el.getAttribute('class') + ' ';
2016-04-27 01:29:27 +08:00
if (cur.indexOf(' ' + cls + ' ') < 0) {
2016-10-12 12:54:06 +08:00
el.setAttribute('class', (cur + cls).trim());
2016-04-27 01:29:27 +08:00
}
}
}
/**
2016-06-08 09:53:43 +08:00
* Remove class with compatibility for SVG since classList is not supported on
* SVG elements in IE
2016-04-27 01:29:27 +08:00
*/
2016-08-30 03:49:00 +08:00
function removeClass (el, cls) {
2016-11-05 04:47:02 +08:00
/* istanbul ignore if */
if (!cls || !cls.trim()) {
return
}
2016-06-08 09:53:43 +08:00
/* istanbul ignore else */
2016-04-27 01:29:27 +08:00
if (el.classList) {
if (cls.indexOf(' ') > -1) {
2016-10-12 12:54:06 +08:00
cls.split(/\s+/).forEach(function (c) { return el.classList.remove(c); });
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
el.classList.remove(cls);
2016-04-27 01:29:27 +08:00
}
} else {
2016-10-12 12:54:06 +08:00
var cur = ' ' + el.getAttribute('class') + ' ';
var tar = ' ' + cls + ' ';
2016-04-27 01:29:27 +08:00
while (cur.indexOf(tar) >= 0) {
2016-10-12 12:54:06 +08:00
cur = cur.replace(tar, ' ');
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
el.setAttribute('class', cur.trim());
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
/* */
2016-10-12 12:54:06 +08:00
var hasTransition = inBrowser && !isIE9;
var TRANSITION = 'transition';
var ANIMATION = 'animation';
2016-04-27 01:29:27 +08:00
// Transition property/event sniffing
2016-10-12 12:54:06 +08:00
var transitionProp = 'transition';
var transitionEndEvent = 'transitionend';
var animationProp = 'animation';
var animationEndEvent = 'animationend';
2016-06-08 09:53:43 +08:00
if (hasTransition) {
/* istanbul ignore if */
2016-08-30 03:49:00 +08:00
if (window.ontransitionend === undefined &&
window.onwebkittransitionend !== undefined) {
2016-10-12 12:54:06 +08:00
transitionProp = 'WebkitTransition';
transitionEndEvent = 'webkitTransitionEnd';
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
if (window.onanimationend === undefined &&
window.onwebkitanimationend !== undefined) {
2016-10-12 12:54:06 +08:00
animationProp = 'WebkitAnimation';
animationEndEvent = 'webkitAnimationEnd';
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var raf = (inBrowser && window.requestAnimationFrame) || setTimeout;
2016-08-30 03:49:00 +08:00
function nextFrame (fn) {
2016-04-27 01:29:27 +08:00
raf(function () {
2016-10-12 12:54:06 +08:00
raf(fn);
});
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function addTransitionClass (el, cls) {
2016-10-12 12:54:06 +08:00
(el._transitionClasses || (el._transitionClasses = [])).push(cls);
addClass(el, cls);
2016-07-17 13:53:44 +08:00
}
2016-08-30 03:49:00 +08:00
function removeTransitionClass (el, cls) {
2016-07-17 13:53:44 +08:00
if (el._transitionClasses) {
2016-10-12 12:54:06 +08:00
remove$1(el._transitionClasses, cls);
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
removeClass(el, cls);
2016-07-17 13:53:44 +08:00
}
2016-08-30 03:49:00 +08:00
function whenTransitionEnds (
el,
expectedType,
cb
) {
var ref = getTransitionInfo(el, expectedType);
var type = ref.type;
var timeout = ref.timeout;
var propCount = ref.propCount;
2016-09-24 06:24:49 +08:00
if (!type) { return cb() }
2016-10-12 12:54:06 +08:00
var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;
var ended = 0;
2016-08-30 03:49:00 +08:00
var end = function () {
2016-10-12 12:54:06 +08:00
el.removeEventListener(event, onEnd);
cb();
};
2016-08-30 03:49:00 +08:00
var onEnd = function (e) {
if (e.target === el) {
if (++ended >= propCount) {
2016-10-12 12:54:06 +08:00
end();
2016-08-30 03:49:00 +08:00
}
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-07-17 13:53:44 +08:00
setTimeout(function () {
if (ended < propCount) {
2016-10-12 12:54:06 +08:00
end();
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
}, timeout + 1);
el.addEventListener(event, onEnd);
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
var transformRE = /\b(transform|all)(,|$)/;
2016-07-17 13:53:44 +08:00
2016-08-30 03:49:00 +08:00
function getTransitionInfo (el, expectedType) {
2016-10-12 12:54:06 +08:00
var styles = window.getComputedStyle(el);
var transitioneDelays = styles[transitionProp + 'Delay'].split(', ');
var transitionDurations = styles[transitionProp + 'Duration'].split(', ');
var transitionTimeout = getTimeout(transitioneDelays, transitionDurations);
var animationDelays = styles[animationProp + 'Delay'].split(', ');
var animationDurations = styles[animationProp + 'Duration'].split(', ');
var animationTimeout = getTimeout(animationDelays, animationDurations);
var type;
var timeout = 0;
var propCount = 0;
2016-07-27 12:25:41 +08:00
/* istanbul ignore if */
if (expectedType === TRANSITION) {
if (transitionTimeout > 0) {
2016-10-12 12:54:06 +08:00
type = TRANSITION;
timeout = transitionTimeout;
propCount = transitionDurations.length;
2016-07-27 12:25:41 +08:00
}
} else if (expectedType === ANIMATION) {
if (animationTimeout > 0) {
2016-10-12 12:54:06 +08:00
type = ANIMATION;
timeout = animationTimeout;
propCount = animationDurations.length;
2016-07-27 12:25:41 +08:00
}
} else {
2016-10-12 12:54:06 +08:00
timeout = Math.max(transitionTimeout, animationTimeout);
2016-08-30 03:49:00 +08:00
type = timeout > 0
? transitionTimeout > animationTimeout
? TRANSITION
: ANIMATION
2016-10-12 12:54:06 +08:00
: null;
2016-08-30 03:49:00 +08:00
propCount = type
? type === TRANSITION
? transitionDurations.length
: animationDurations.length
2016-10-12 12:54:06 +08:00
: 0;
2016-08-30 03:49:00 +08:00
}
var hasTransform =
type === TRANSITION &&
2016-10-12 12:54:06 +08:00
transformRE.test(styles[transitionProp + 'Property']);
2016-07-17 13:53:44 +08:00
return {
type: type,
timeout: timeout,
2016-07-27 12:25:41 +08:00
propCount: propCount,
hasTransform: hasTransform
2016-08-30 03:49:00 +08:00
}
2016-07-17 13:53:44 +08:00
}
2016-08-30 03:49:00 +08:00
function getTimeout (delays, durations) {
2016-11-05 04:47:02 +08:00
/* istanbul ignore next */
while (delays.length < durations.length) {
delays = delays.concat(delays);
}
2016-07-17 13:53:44 +08:00
return Math.max.apply(null, durations.map(function (d, i) {
2016-08-30 03:49:00 +08:00
return toMs(d) + toMs(delays[i])
}))
2016-07-17 13:53:44 +08:00
}
2016-08-30 03:49:00 +08:00
function toMs (s) {
return Number(s.slice(0, -1)) * 1000
2016-07-17 13:53:44 +08:00
}
2016-08-30 03:49:00 +08:00
/* */
function enter (vnode) {
2016-10-12 12:54:06 +08:00
var el = vnode.elm;
2016-07-17 13:53:44 +08:00
2016-04-27 01:29:27 +08:00
// call leave callback now
if (el._leaveCb) {
2016-10-12 12:54:06 +08:00
el._leaveCb.cancelled = true;
el._leaveCb();
2016-04-27 01:29:27 +08:00
}
2016-06-28 10:25:12 +08:00
2016-10-12 12:54:06 +08:00
var data = resolveTransition(vnode.data.transition);
2016-04-27 01:29:27 +08:00
if (!data) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-07-17 13:53:44 +08:00
/* istanbul ignore if */
2016-08-10 12:55:30 +08:00
if (el._enterCb || el.nodeType !== 1) {
2016-08-30 03:49:00 +08:00
return
2016-07-17 13:53:44 +08:00
}
2016-04-27 01:29:27 +08:00
2016-07-17 13:53:44 +08:00
var css = data.css;
2016-07-27 12:25:41 +08:00
var type = data.type;
2016-07-17 13:53:44 +08:00
var enterClass = data.enterClass;
var enterActiveClass = data.enterActiveClass;
var appearClass = data.appearClass;
var appearActiveClass = data.appearActiveClass;
var beforeEnter = data.beforeEnter;
var enter = data.enter;
var afterEnter = data.afterEnter;
var enterCancelled = data.enterCancelled;
var beforeAppear = data.beforeAppear;
var appear = data.appear;
var afterAppear = data.afterAppear;
var appearCancelled = data.appearCancelled;
2016-04-27 01:29:27 +08:00
2016-08-06 06:14:22 +08:00
// activeInstance will always be the <transition> component managing this
// transition. One edge case to check is when the <transition> is placed
// as the root node of a child component. In that case we need to check
// <transition>'s parent for appear check.
2016-10-12 12:54:06 +08:00
var transitionNode = activeInstance.$vnode;
2016-08-30 03:49:00 +08:00
var context = transitionNode && transitionNode.parent
? transitionNode.parent.context
2016-10-12 12:54:06 +08:00
: activeInstance;
2016-08-06 06:14:22 +08:00
2016-10-12 12:54:06 +08:00
var isAppear = !context._isMounted || !vnode.isRootInsert;
2016-04-27 01:29:27 +08:00
2016-06-28 10:25:12 +08:00
if (isAppear && !appear && appear !== '') {
2016-08-30 03:49:00 +08:00
return
2016-06-28 10:25:12 +08:00
}
2016-10-12 12:54:06 +08:00
var startClass = isAppear ? appearClass : enterClass;
var activeClass = isAppear ? appearActiveClass : enterActiveClass;
var beforeEnterHook = isAppear ? (beforeAppear || beforeEnter) : beforeEnter;
var enterHook = isAppear ? (typeof appear === 'function' ? appear : enter) : enter;
var afterEnterHook = isAppear ? (afterAppear || afterEnter) : afterEnter;
var enterCancelledHook = isAppear ? (appearCancelled || enterCancelled) : enterCancelled;
2016-06-08 09:53:43 +08:00
2016-10-12 12:54:06 +08:00
var expectsCSS = css !== false && !isIE9;
2016-08-30 03:49:00 +08:00
var userWantsControl =
enterHook &&
// enterHook may be a bound method which exposes
// the length of original fn as _length
2016-10-12 12:54:06 +08:00
(enterHook._length || enterHook.length) > 1;
2016-07-17 13:53:44 +08:00
2016-04-27 01:29:27 +08:00
var cb = el._enterCb = once(function () {
2016-06-08 09:53:43 +08:00
if (expectsCSS) {
2016-10-12 12:54:06 +08:00
removeTransitionClass(el, activeClass);
2016-04-27 01:29:27 +08:00
}
if (cb.cancelled) {
2016-06-08 09:53:43 +08:00
if (expectsCSS) {
2016-10-12 12:54:06 +08:00
removeTransitionClass(el, startClass);
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
enterCancelledHook && enterCancelledHook(el);
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
afterEnterHook && afterEnterHook(el);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
el._enterCb = null;
});
2016-04-27 01:29:27 +08:00
2016-08-16 11:39:07 +08:00
if (!vnode.data.show) {
// remove pending leave element on enter by injecting an insert hook
2016-08-30 03:49:00 +08:00
mergeVNodeHook(vnode.data.hook || (vnode.data.hook = {}), 'insert', function () {
2016-10-12 12:54:06 +08:00
var parent = el.parentNode;
var pendingNode = parent && parent._pending && parent._pending[vnode.key];
2016-08-16 11:39:07 +08:00
if (pendingNode && pendingNode.tag === vnode.tag && pendingNode.elm._leaveCb) {
2016-10-12 12:54:06 +08:00
pendingNode.elm._leaveCb();
2016-08-16 11:39:07 +08:00
}
2016-10-12 12:54:06 +08:00
enterHook && enterHook(el, cb);
}, 'transition-insert');
2016-08-16 11:39:07 +08:00
}
2016-07-17 13:53:44 +08:00
// start enter transition
2016-10-12 12:54:06 +08:00
beforeEnterHook && beforeEnterHook(el);
2016-06-08 09:53:43 +08:00
if (expectsCSS) {
2016-10-12 12:54:06 +08:00
addTransitionClass(el, startClass);
addTransitionClass(el, activeClass);
2016-04-27 01:29:27 +08:00
nextFrame(function () {
2016-10-12 12:54:06 +08:00
removeTransitionClass(el, startClass);
2016-06-28 10:25:12 +08:00
if (!cb.cancelled && !userWantsControl) {
2016-10-12 12:54:06 +08:00
whenTransitionEnds(el, type, cb);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
});
2016-04-27 01:29:27 +08:00
}
2016-07-17 13:53:44 +08:00
2016-08-16 11:39:07 +08:00
if (vnode.data.show) {
2016-10-12 12:54:06 +08:00
enterHook && enterHook(el, cb);
2016-08-16 11:39:07 +08:00
}
2016-06-08 09:53:43 +08:00
if (!expectsCSS && !userWantsControl) {
2016-10-12 12:54:06 +08:00
cb();
2016-04-27 01:29:27 +08:00
}
}
2016-08-30 03:49:00 +08:00
function leave (vnode, rm) {
2016-10-12 12:54:06 +08:00
var el = vnode.elm;
2016-07-17 13:53:44 +08:00
2016-04-27 01:29:27 +08:00
// call enter callback now
if (el._enterCb) {
2016-10-12 12:54:06 +08:00
el._enterCb.cancelled = true;
el._enterCb();
2016-04-27 01:29:27 +08:00
}
2016-07-17 13:53:44 +08:00
2016-10-12 12:54:06 +08:00
var data = resolveTransition(vnode.data.transition);
2016-04-27 01:29:27 +08:00
if (!data) {
2016-08-30 03:49:00 +08:00
return rm()
2016-04-27 01:29:27 +08:00
}
2016-07-17 13:53:44 +08:00
/* istanbul ignore if */
2016-08-10 12:55:30 +08:00
if (el._leaveCb || el.nodeType !== 1) {
2016-08-30 03:49:00 +08:00
return
2016-07-17 13:53:44 +08:00
}
var css = data.css;
2016-07-27 12:25:41 +08:00
var type = data.type;
2016-07-17 13:53:44 +08:00
var leaveClass = data.leaveClass;
var leaveActiveClass = data.leaveActiveClass;
var beforeLeave = data.beforeLeave;
var leave = data.leave;
var afterLeave = data.afterLeave;
var leaveCancelled = data.leaveCancelled;
var delayLeave = data.delayLeave;
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
var expectsCSS = css !== false && !isIE9;
2016-08-30 03:49:00 +08:00
var userWantsControl =
leave &&
// leave hook may be a bound method which exposes
// the length of original fn as _length
2016-10-12 12:54:06 +08:00
(leave._length || leave.length) > 1;
2016-04-27 01:29:27 +08:00
var cb = el._leaveCb = once(function () {
2016-07-17 13:53:44 +08:00
if (el.parentNode && el.parentNode._pending) {
2016-10-12 12:54:06 +08:00
el.parentNode._pending[vnode.key] = null;
2016-07-17 13:53:44 +08:00
}
2016-06-08 09:53:43 +08:00
if (expectsCSS) {
2016-10-12 12:54:06 +08:00
removeTransitionClass(el, leaveActiveClass);
2016-04-27 01:29:27 +08:00
}
if (cb.cancelled) {
2016-06-08 09:53:43 +08:00
if (expectsCSS) {
2016-10-12 12:54:06 +08:00
removeTransitionClass(el, leaveClass);
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
leaveCancelled && leaveCancelled(el);
2016-04-27 01:29:27 +08:00
} else {
2016-10-12 12:54:06 +08:00
rm();
afterLeave && afterLeave(el);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
el._leaveCb = null;
});
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
if (delayLeave) {
2016-10-12 12:54:06 +08:00
delayLeave(performLeave);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
performLeave();
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function performLeave () {
2016-07-17 13:53:44 +08:00
// the delayed leave may have already been cancelled
if (cb.cancelled) {
2016-08-30 03:49:00 +08:00
return
2016-07-17 13:53:44 +08:00
}
// record leaving element
if (!vnode.data.show) {
2016-10-12 12:54:06 +08:00
(el.parentNode._pending || (el.parentNode._pending = {}))[vnode.key] = vnode;
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
beforeLeave && beforeLeave(el);
2016-06-08 09:53:43 +08:00
if (expectsCSS) {
2016-10-12 12:54:06 +08:00
addTransitionClass(el, leaveClass);
addTransitionClass(el, leaveActiveClass);
2016-06-08 09:53:43 +08:00
nextFrame(function () {
2016-10-12 12:54:06 +08:00
removeTransitionClass(el, leaveClass);
2016-06-28 10:25:12 +08:00
if (!cb.cancelled && !userWantsControl) {
2016-10-12 12:54:06 +08:00
whenTransitionEnds(el, type, cb);
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
});
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
leave && leave(el, cb);
2016-06-08 09:53:43 +08:00
if (!expectsCSS && !userWantsControl) {
2016-10-12 12:54:06 +08:00
cb();
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-10-01 02:32:00 +08:00
function resolveTransition (def$$1) {
if (!def$$1) {
2016-08-30 03:49:00 +08:00
return
2016-04-27 01:29:27 +08:00
}
2016-07-17 13:53:44 +08:00
/* istanbul ignore else */
2016-10-01 02:32:00 +08:00
if (typeof def$$1 === 'object') {
2016-10-12 12:54:06 +08:00
var res = {};
2016-10-01 02:32:00 +08:00
if (def$$1.css !== false) {
2016-10-12 12:54:06 +08:00
extend(res, autoCssTransition(def$$1.name || 'v'));
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
extend(res, def$$1);
2016-08-30 03:49:00 +08:00
return res
2016-10-01 02:32:00 +08:00
} else if (typeof def$$1 === 'string') {
return autoCssTransition(def$$1)
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
}
var autoCssTransition = cached(function (name) {
return {
2016-08-30 03:49:00 +08:00
enterClass: (name + "-enter"),
leaveClass: (name + "-leave"),
appearClass: (name + "-enter"),
enterActiveClass: (name + "-enter-active"),
leaveActiveClass: (name + "-leave-active"),
appearActiveClass: (name + "-enter-active")
}
2016-10-12 12:54:06 +08:00
});
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
function once (fn) {
2016-10-12 12:54:06 +08:00
var called = false;
2016-06-08 09:53:43 +08:00
return function () {
if (!called) {
2016-10-12 12:54:06 +08:00
called = true;
fn();
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-07-17 13:53:44 +08:00
var transition = inBrowser ? {
2016-08-30 03:49:00 +08:00
create: function create (_, vnode) {
2016-07-17 13:53:44 +08:00
if (!vnode.data.show) {
2016-10-12 12:54:06 +08:00
enter(vnode);
2016-06-08 09:53:43 +08:00
}
},
2016-08-30 03:49:00 +08:00
remove: function remove (vnode, rm) {
2016-07-17 13:53:44 +08:00
/* istanbul ignore else */
if (!vnode.data.show) {
2016-10-12 12:54:06 +08:00
leave(vnode, rm);
2016-06-08 09:53:43 +08:00
} else {
2016-10-12 12:54:06 +08:00
rm();
2016-06-08 09:53:43 +08:00
}
}
2016-10-12 12:54:06 +08:00
} : {};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
var platformModules = [
attrs,
klass,
events,
domProps,
style,
transition
2016-10-12 12:54:06 +08:00
];
2016-08-30 03:49:00 +08:00
/* */
2016-06-08 09:53:43 +08:00
// the directive module should be applied last, after all
// built-in modules have been applied.
2016-10-12 12:54:06 +08:00
var modules = platformModules.concat(baseModules);
2016-06-08 09:53:43 +08:00
2016-10-12 12:54:06 +08:00
var patch$1 = createPatchFunction({ nodeOps: nodeOps, modules: modules });
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
/**
* Not type checking this file because flow doesn't like attaching
* properties to Elements.
*/
2016-11-05 04:47:02 +08:00
var modelableTagRE = /^input|select|textarea|vue-component-[0-9]+(-[0-9a-zA-Z_-]*)?$/;
2016-06-23 03:33:53 +08:00
2016-06-08 09:53:43 +08:00
/* istanbul ignore if */
if (isIE9) {
// http://www.matts411.com/post/internet-explorer-9-oninput/
document.addEventListener('selectionchange', function () {
2016-10-12 12:54:06 +08:00
var el = document.activeElement;
2016-06-08 09:53:43 +08:00
if (el && el.vmodel) {
2016-10-12 12:54:06 +08:00
trigger(el, 'input');
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
});
2016-06-08 09:53:43 +08:00
}
var model = {
2016-10-12 12:54:06 +08:00
inserted: function inserted (el, binding, vnode) {
2016-06-08 09:53:43 +08:00
if (process.env.NODE_ENV !== 'production') {
2016-06-23 03:33:53 +08:00
if (!modelableTagRE.test(vnode.tag)) {
2016-08-30 03:49:00 +08:00
warn(
"v-model is not supported on element type: <" + (vnode.tag) + ">. " +
'If you are working with contenteditable, it\'s recommended to ' +
'wrap a library dedicated for that purpose inside a custom component.',
vnode.context
2016-10-12 12:54:06 +08:00
);
2016-06-08 09:53:43 +08:00
}
}
if (vnode.tag === 'select') {
2016-10-12 12:54:06 +08:00
var cb = function () {
setSelected(el, binding, vnode.context);
};
cb();
2016-09-24 06:24:49 +08:00
/* istanbul ignore if */
if (isIE || isEdge) {
2016-10-12 12:54:06 +08:00
setTimeout(cb, 0);
2016-09-24 06:24:49 +08:00
}
2016-10-13 17:27:27 +08:00
} else if (
(vnode.tag === 'textarea' || el.type === 'text') &&
!binding.modifiers.lazy
) {
2016-06-08 09:53:43 +08:00
if (!isAndroid) {
2016-10-12 12:54:06 +08:00
el.addEventListener('compositionstart', onCompositionStart);
el.addEventListener('compositionend', onCompositionEnd);
2016-06-08 09:53:43 +08:00
}
/* istanbul ignore if */
if (isIE9) {
2016-10-12 12:54:06 +08:00
el.vmodel = true;
2016-06-08 09:53:43 +08:00
}
}
},
2016-08-30 03:49:00 +08:00
componentUpdated: function componentUpdated (el, binding, vnode) {
2016-06-08 09:53:43 +08:00
if (vnode.tag === 'select') {
2016-10-12 12:54:06 +08:00
setSelected(el, binding, vnode.context);
2016-06-08 09:53:43 +08:00
// in case the options rendered by v-for have changed,
// it's possible that the value is out-of-sync with the rendered options.
2016-11-05 04:47:02 +08:00
// detect such cases and filter out values that no longer has a matching
2016-06-08 09:53:43 +08:00
// option in the DOM.
2016-08-30 03:49:00 +08:00
var needReset = el.multiple
? binding.value.some(function (v) { return hasNoMatchingOption(v, el.options); })
2016-10-13 17:27:27 +08:00
: binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, el.options);
2016-06-08 09:53:43 +08:00
if (needReset) {
2016-10-12 12:54:06 +08:00
trigger(el, 'change');
2016-06-08 09:53:43 +08:00
}
}
}
2016-10-12 12:54:06 +08:00
};
2016-06-08 09:53:43 +08:00
2016-08-30 03:49:00 +08:00
function setSelected (el, binding, vm) {
2016-10-12 12:54:06 +08:00
var value = binding.value;
var isMultiple = el.multiple;
2016-08-30 03:49:00 +08:00
if (isMultiple && !Array.isArray(value)) {
process.env.NODE_ENV !== 'production' && warn(
"<select multiple v-model=\"" + (binding.expression) + "\"> " +
"expects an Array value for its binding, but got " + (Object.prototype.toString.call(value).slice(8, -1)),
vm
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
return
2016-06-08 09:53:43 +08:00
}
2016-10-12 12:54:06 +08:00
var selected, option;
2016-06-08 09:53:43 +08:00
for (var i = 0, l = el.options.length; i < l; i++) {
2016-10-12 12:54:06 +08:00
option = el.options[i];
2016-06-08 09:53:43 +08:00
if (isMultiple) {
2016-10-12 12:54:06 +08:00
selected = looseIndexOf(value, getValue(option)) > -1;
2016-08-30 03:49:00 +08:00
if (option.selected !== selected) {
2016-10-12 12:54:06 +08:00
option.selected = selected;
2016-08-30 03:49:00 +08:00
}
2016-06-08 09:53:43 +08:00
} else {
2016-09-24 06:24:49 +08:00
if (looseEqual(getValue(option), value)) {
2016-08-30 03:49:00 +08:00
if (el.selectedIndex !== i) {
2016-10-12 12:54:06 +08:00
el.selectedIndex = i;
2016-08-30 03:49:00 +08:00
}
return
2016-06-08 09:53:43 +08:00
}
}
}
2016-08-30 03:49:00 +08:00
if (!isMultiple) {
2016-10-12 12:54:06 +08:00
el.selectedIndex = -1;
2016-08-30 03:49:00 +08:00
}
2016-06-08 09:53:43 +08:00
}
2016-08-30 03:49:00 +08:00
function hasNoMatchingOption (value, options) {
2016-06-08 09:53:43 +08:00
for (var i = 0, l = options.length; i < l; i++) {
2016-09-24 06:24:49 +08:00
if (looseEqual(getValue(options[i]), value)) {
2016-08-30 03:49:00 +08:00
return false
2016-06-08 09:53:43 +08:00
}
}
2016-08-30 03:49:00 +08:00
return true
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function getValue (option) {
return '_value' in option
? option._value
2016-09-24 06:24:49 +08:00
: option.value
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function onCompositionStart (e) {
2016-10-12 12:54:06 +08:00
e.target.composing = true;
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function onCompositionEnd (e) {
2016-10-12 12:54:06 +08:00
e.target.composing = false;
trigger(e.target, 'input');
2016-04-27 01:29:27 +08:00
}
2016-08-30 03:49:00 +08:00
function trigger (el, type) {
2016-10-12 12:54:06 +08:00
var e = document.createEvent('HTMLEvents');
e.initEvent(type, true, true);
el.dispatchEvent(e);
2016-06-08 09:53:43 +08:00
}
2016-04-27 01:29:27 +08:00
2016-08-30 03:49:00 +08:00
/* */
2016-08-02 03:31:12 +08:00
// recursively search for possible transition defined inside the component root
2016-08-30 03:49:00 +08:00
function locateNode (vnode) {
return vnode.child && (!vnode.data || !vnode.data.transition)
? locateNode(vnode.child._vnode)
: vnode
2016-08-02 03:31:12 +08:00
}
2016-04-27 01:29:27 +08:00
var show = {
2016-08-30 03:49:00 +08:00
bind: function bind (el, ref, vnode) {
var value = ref.value;
2016-06-08 09:53:43 +08:00
2016-10-12 12:54:06 +08:00
vnode = locateNode(vnode);
var transition = vnode.data && vnode.data.transition;
2016-09-08 19:29:47 +08:00
if (value && transition && !isIE9) {
2016-10-12 12:54:06 +08:00
enter(vnode);
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
var originalDisplay = el.style.display === 'none' ? '' : el.style.display;
el.style.display = value ? originalDisplay : 'none';
el.__vOriginalDisplay = originalDisplay;
2016-04-27 01:29:27 +08:00
},
2016-08-30 03:49:00 +08:00
update: function update (el, ref, vnode) {
var value = ref.value;
var oldValue = ref.oldValue;
2016-06-08 09:53:43 +08:00
2016-08-10 12:55:30 +08:00
/* istanbul ignore if */
2016-09-24 06:24:49 +08:00
if (value === oldValue) { return }
2016-10-12 12:54:06 +08:00
vnode = locateNode(vnode);
var transition = vnode.data && vnode.data.transition;
2016-04-27 01:29:27 +08:00
if (transition && !isIE9) {
if (value) {
2016-10-12 12:54:06 +08:00
enter(vnode);
el.style.display = el.__vOriginalDisplay;
2016-04-27 01:29:27 +08:00
} else {
leave(vnode, function () {
2016-10-12 12:54:06 +08:00
el.style.display = 'none';
});
2016-04-27 01:29:27 +08:00
}
} else {
2016-10-12 12:54:06 +08:00
el.style.display = value ? el.__vOriginalDisplay : 'none';
2016-04-27 01:29:27 +08:00
}
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
var platformDirectives = {
model: model,
show: show
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
// Provides transition support for a single element/component.
// supports transition mode (out-in / in-out)
2016-04-27 01:29:27 +08:00
2016-07-17 13:53:44 +08:00
var transitionProps = {
name: String,
appear: Boolean,
css: Boolean,
mode: String,
2016-07-27 12:25:41 +08:00
type: String,
2016-07-17 13:53:44 +08:00
enterClass: String,
leaveClass: String,
enterActiveClass: String,
leaveActiveClass: String,
appearClass: String,
appearActiveClass: String
2016-10-12 12:54:06 +08:00
};
2016-07-17 13:53:44 +08:00
2016-08-10 12:55:30 +08:00
// in case the child is also an abstract component, e.g. <keep-alive>
2016-11-05 04:47:02 +08:00
// we want to recursively retrieve the real component to be rendered
2016-08-30 03:49:00 +08:00
function getRealChild (vnode) {
2016-10-12 12:54:06 +08:00
var compOptions = vnode && vnode.componentOptions;
2016-08-10 12:55:30 +08:00
if (compOptions && compOptions.Ctor.options.abstract) {
2016-08-30 03:49:00 +08:00
return getRealChild(getFirstComponentChild(compOptions.children))
2016-08-10 12:55:30 +08:00
} else {
2016-08-30 03:49:00 +08:00
return vnode
2016-08-10 12:55:30 +08:00
}
}
2016-08-30 03:49:00 +08:00
function extractTransitionData (comp) {
2016-10-12 12:54:06 +08:00
var data = {};
var options = comp.$options;
2016-07-17 13:53:44 +08:00
// props
for (var key in options.propsData) {
2016-10-12 12:54:06 +08:00
data[key] = comp[key];
2016-07-17 13:53:44 +08:00
}
// events.
// extract listeners and pass them directly to the transition methods
2016-10-12 12:54:06 +08:00
var listeners = options._parentListeners;
2016-08-30 03:49:00 +08:00
for (var key$1 in listeners) {
2016-10-12 12:54:06 +08:00
data[camelize(key$1)] = listeners[key$1].fn;
2016-07-17 13:53:44 +08:00
}
2016-08-30 03:49:00 +08:00
return data
2016-07-17 13:53:44 +08:00
}
2016-08-30 03:49:00 +08:00
function placeholder (h, rawChild) {
return /\d-keep-alive$/.test(rawChild.tag)
? h('keep-alive')
: null
2016-08-16 11:39:07 +08:00
}
2016-08-30 03:49:00 +08:00
function hasParentTransition (vnode) {
while ((vnode = vnode.parent)) {
2016-08-16 11:39:07 +08:00
if (vnode.data.transition) {
2016-08-30 03:49:00 +08:00
return true
2016-08-16 11:39:07 +08:00
}
}
}
2016-07-17 13:53:44 +08:00
var Transition = {
name: 'transition',
props: transitionProps,
2016-07-24 10:48:09 +08:00
abstract: true,
2016-08-30 03:49:00 +08:00
render: function render (h) {
var this$1 = this;
2016-04-27 01:29:27 +08:00
2016-10-12 12:54:06 +08:00
var children = this.$slots.default;
2016-07-17 13:53:44 +08:00
if (!children) {
2016-08-30 03:49:00 +08:00
return
2016-07-17 13:53:44 +08:00
}
// filter out text nodes (possible whitespaces)
2016-10-12 12:54:06 +08:00
children = children.filter(function (c) { return c.tag; });
2016-08-02 03:31:12 +08:00
/* istanbul ignore if */
2016-07-17 13:53:44 +08:00
if (!children.length) {
2016-08-30 03:49:00 +08:00
return
2016-07-17 13:53:44 +08:00
}
// warn multiple elements
if (process.env.NODE_ENV !== 'production' && children.length > 1) {
2016-08-30 03:49:00 +08:00
warn(
'<transition> can only be used on a single element. Use ' +
'<transition-group> for lists.',
this.$parent
2016-10-12 12:54:06 +08:00
);
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
var mode = this.mode;
2016-07-17 13:53:44 +08:00
// warn invalid mode
2016-08-30 03:49:00 +08:00
if (process.env.NODE_ENV !== 'production' &&
mode && mode !== 'in-out' && mode !== 'out-in') {
warn(
'invalid <transition> mode: ' + mode,
this.$parent
2016-10-12 12:54:06 +08:00
);
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
var rawChild = children[0];
2016-07-17 13:53:44 +08:00
// if this is a component root node and the component's
// parent container node also has transition, skip.
2016-08-16 11:39:07 +08:00
if (hasParentTransition(this.$vnode)) {
2016-08-30 03:49:00 +08:00
return rawChild
2016-07-17 13:53:44 +08:00
}
// apply transition data to child
// use getRealChild() to ignore abstract components e.g. keep-alive
2016-10-12 12:54:06 +08:00
var child = getRealChild(rawChild);
2016-07-17 13:53:44 +08:00
/* istanbul ignore if */
2016-08-10 12:55:30 +08:00
if (!child) {
2016-08-30 03:49:00 +08:00
return rawChild
2016-08-10 12:55:30 +08:00
}
2016-08-16 11:39:07 +08:00
if (this._leaving) {
2016-08-30 03:49:00 +08:00
return placeholder(h, rawChild)
2016-08-16 11:39:07 +08:00
}
2016-10-12 12:54:06 +08:00
var key = child.key = child.key == null || child.isStatic
2016-08-30 03:49:00 +08:00
? ("__v" + (child.tag + this._uid) + "__")
2016-10-12 12:54:06 +08:00
: child.key;
var data = (child.data || (child.data = {})).transition = extractTransitionData(this);
var oldRawChild = this._vnode;
var oldChild = getRealChild(oldRawChild);
2016-07-17 13:53:44 +08:00
2016-08-21 02:04:54 +08:00
// mark v-show
// so that the transition module can hand over the control to the directive
2016-08-30 03:49:00 +08:00
if (child.data.directives && child.data.directives.some(function (d) { return d.name === 'show'; })) {
2016-10-12 12:54:06 +08:00
child.data.show = true;
2016-08-21 02:04:54 +08:00
}
2016-10-12 12:54:06 +08:00
if (oldChild && oldChild.data && oldChild.key !== key) {
2016-07-24 10:48:09 +08:00
// replace old child transition data with fresh one
// important for dynamic transitions!
2016-10-12 12:54:06 +08:00
var oldData = oldChild.data.transition = extend({}, data);
2016-07-24 10:48:09 +08:00
// handle transition mode
2016-07-17 13:53:44 +08:00
if (mode === 'out-in') {
2016-08-16 11:39:07 +08:00
// return placeholder node and queue update when leave finishes
2016-10-12 12:54:06 +08:00
this._leaving = true;
2016-07-17 13:53:44 +08:00
mergeVNodeHook(oldData, 'afterLeave', function () {
2016-10-12 12:54:06 +08:00
this$1._leaving = false;
this$1.$forceUpdate();
}, key);
2016-08-30 03:49:00 +08:00
return placeholder(h, rawChild)
2016-07-17 13:53:44 +08:00
} else if (mode === 'in-out') {
2016-10-12 12:54:06 +08:00
var delayedLeave;
var performLeave = function () { delayedLeave(); };
mergeVNodeHook(data, 'afterEnter', performLeave, key);
mergeVNodeHook(data, 'enterCancelled', performLeave, key);
2016-08-21 02:04:54 +08:00
mergeVNodeHook(oldData, 'delayLeave', function (leave) {
2016-10-12 12:54:06 +08:00
delayedLeave = leave;
}, key);
2016-04-27 01:29:27 +08:00
}
}
2016-07-17 13:53:44 +08:00
2016-08-30 03:49:00 +08:00
return rawChild
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
// Provides transition support for list items.
// supports move transitions using the FLIP technique.
// Because the vdom's children update algorithm is "unstable" - i.e.
// it doesn't guarantee the relative positioning of removed elements,
// we force transition-group to update its children into two passes:
// in the first pass, we remove all nodes that need to be removed,
// triggering their leaving transition; in the second pass, we insert/move
// into the final disired state. This way in the second pass removed
// nodes will remain where they should be.
2016-04-27 01:29:27 +08:00
2016-07-24 10:48:09 +08:00
var props = extend({
2016-07-17 13:53:44 +08:00
tag: String,
moveClass: String
2016-10-12 12:54:06 +08:00
}, transitionProps);
2016-07-17 13:53:44 +08:00
2016-10-12 12:54:06 +08:00
delete props.mode;
2016-07-17 13:53:44 +08:00
var TransitionGroup = {
2016-07-24 10:48:09 +08:00
props: props,
2016-07-17 13:53:44 +08:00
2016-08-30 03:49:00 +08:00
render: function render (h) {
2016-10-12 12:54:06 +08:00
var tag = this.tag || this.$vnode.data.tag || 'span';
var map = Object.create(null);
var prevChildren = this.prevChildren = this.children;
var rawChildren = this.$slots.default || [];
var children = this.children = [];
var transitionData = extractTransitionData(this);
2016-07-17 13:53:44 +08:00
for (var i = 0; i < rawChildren.length; i++) {
2016-10-12 12:54:06 +08:00
var c = rawChildren[i];
2016-07-17 13:53:44 +08:00
if (c.tag) {
2016-09-08 19:29:47 +08:00
if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {
2016-10-12 12:54:06 +08:00
children.push(c);
2016-08-30 03:49:00 +08:00
map[c.key] = c
2016-10-12 12:54:06 +08:00
;(c.data || (c.data = {})).transition = transitionData;
2016-07-17 13:53:44 +08:00
} else if (process.env.NODE_ENV !== 'production') {
2016-10-12 12:54:06 +08:00
var opts = c.componentOptions;
2016-08-30 03:49:00 +08:00
var name = opts
? (opts.Ctor.options.name || opts.tag)
2016-10-12 12:54:06 +08:00
: c.tag;
warn(("<transition-group> children must be keyed: <" + name + ">"));
2016-07-17 13:53:44 +08:00
}
}
}
if (prevChildren) {
2016-10-12 12:54:06 +08:00
var kept = [];
var removed = [];
2016-08-30 03:49:00 +08:00
for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {
2016-10-12 12:54:06 +08:00
var c$1 = prevChildren[i$1];
c$1.data.transition = transitionData;
c$1.data.pos = c$1.elm.getBoundingClientRect();
2016-08-30 03:49:00 +08:00
if (map[c$1.key]) {
2016-10-12 12:54:06 +08:00
kept.push(c$1);
2016-07-17 13:53:44 +08:00
} else {
2016-10-12 12:54:06 +08:00
removed.push(c$1);
2016-07-17 13:53:44 +08:00
}
}
2016-10-12 12:54:06 +08:00
this.kept = h(tag, null, kept);
this.removed = removed;
2016-07-17 13:53:44 +08:00
}
2016-08-30 03:49:00 +08:00
return h(tag, null, children)
2016-07-17 13:53:44 +08:00
},
2016-08-30 03:49:00 +08:00
beforeUpdate: function beforeUpdate () {
2016-07-17 13:53:44 +08:00
// force removing pass
2016-08-30 03:49:00 +08:00
this.__patch__(
this._vnode,
this.kept,
false, // hydrating
true // removeOnly (!important, avoids unnecessary moves)
2016-10-12 12:54:06 +08:00
);
this._vnode = this.kept;
2016-07-17 13:53:44 +08:00
},
2016-08-30 03:49:00 +08:00
updated: function updated () {
2016-10-12 12:54:06 +08:00
var children = this.prevChildren;
2016-11-20 11:14:58 +08:00
var moveClass = this.moveClass || ((this.name || 'v') + '-move');
2016-07-17 13:53:44 +08:00
if (!children.length || !this.hasMove(children[0].elm, moveClass)) {
2016-08-30 03:49:00 +08:00
return
2016-07-17 13:53:44 +08:00
}
2016-09-24 06:24:49 +08:00
// we divide the work into three loops to avoid mixing DOM reads and writes
// in each iteration - which helps prevent layout thrashing.
2016-10-12 12:54:06 +08:00
children.forEach(callPendingCbs);
children.forEach(recordPosition);
children.forEach(applyTranslation);
2016-07-17 13:53:44 +08:00
// force reflow to put everything in position
2016-10-12 12:54:06 +08:00
var f = document.body.offsetHeight; // eslint-disable-line
2016-07-17 13:53:44 +08:00
children.forEach(function (c) {
if (c.data.moved) {
2016-10-12 12:54:06 +08:00
var el = c.elm;
var s = el.style;
addTransitionClass(el, moveClass);
s.transform = s.WebkitTransform = s.transitionDuration = '';
2016-08-30 03:49:00 +08:00
el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {
2016-08-21 02:04:54 +08:00
if (!e || /transform$/.test(e.propertyName)) {
2016-10-12 12:54:06 +08:00
el.removeEventListener(transitionEndEvent, cb);
el._moveCb = null;
removeTransitionClass(el, moveClass);
2016-08-21 02:04:54 +08:00
}
2016-10-12 12:54:06 +08:00
});
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
});
2016-07-17 13:53:44 +08:00
},
methods: {
2016-08-30 03:49:00 +08:00
hasMove: function hasMove (el, moveClass) {
2016-07-17 13:53:44 +08:00
/* istanbul ignore if */
if (!hasTransition) {
2016-08-30 03:49:00 +08:00
return false
2016-07-17 13:53:44 +08:00
}
if (this._hasMove != null) {
2016-08-30 03:49:00 +08:00
return this._hasMove
2016-07-17 13:53:44 +08:00
}
2016-10-12 12:54:06 +08:00
addTransitionClass(el, moveClass);
var info = getTransitionInfo(el);
removeTransitionClass(el, moveClass);
2016-08-30 03:49:00 +08:00
return (this._hasMove = info.hasTransform)
2016-07-17 13:53:44 +08:00
}
2016-04-27 01:29:27 +08:00
}
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-09-24 06:24:49 +08:00
function callPendingCbs (c) {
/* istanbul ignore if */
if (c.elm._moveCb) {
2016-10-12 12:54:06 +08:00
c.elm._moveCb();
2016-09-24 06:24:49 +08:00
}
/* istanbul ignore if */
if (c.elm._enterCb) {
2016-10-12 12:54:06 +08:00
c.elm._enterCb();
2016-09-24 06:24:49 +08:00
}
}
function recordPosition (c) {
2016-10-12 12:54:06 +08:00
c.data.newPos = c.elm.getBoundingClientRect();
2016-09-24 06:24:49 +08:00
}
function applyTranslation (c) {
2016-10-12 12:54:06 +08:00
var oldPos = c.data.pos;
var newPos = c.data.newPos;
var dx = oldPos.left - newPos.left;
var dy = oldPos.top - newPos.top;
2016-09-24 06:24:49 +08:00
if (dx || dy) {
2016-10-12 12:54:06 +08:00
c.data.moved = true;
var s = c.elm.style;
s.transform = s.WebkitTransform = "translate(" + dx + "px," + dy + "px)";
s.transitionDuration = '0s';
2016-09-24 06:24:49 +08:00
}
}
2016-06-08 09:53:43 +08:00
var platformComponents = {
2016-07-17 13:53:44 +08:00
Transition: Transition,
TransitionGroup: TransitionGroup
2016-10-12 12:54:06 +08:00
};
2016-08-30 03:49:00 +08:00
/* */
2016-04-27 01:29:27 +08:00
// install platform specific utils
2016-11-16 07:05:02 +08:00
Vue$2.config.isUnknownElement = isUnknownElement;
Vue$2.config.isReservedTag = isReservedTag;
Vue$2.config.getTagNamespace = getTagNamespace;
Vue$2.config.mustUseProp = mustUseProp;
2016-04-27 01:29:27 +08:00
2016-06-08 09:53:43 +08:00
// install platform runtime directives & components
2016-11-16 07:05:02 +08:00
extend(Vue$2.options.directives, platformDirectives);
extend(Vue$2.options.components, platformComponents);
2016-04-27 01:29:27 +08:00
// install platform patch function
2016-11-16 07:05:02 +08:00
Vue$2.prototype.__patch__ = config._isServer ? noop : patch$1;
2016-04-27 01:29:27 +08:00
// wrap mount
2016-11-16 07:05:02 +08:00
Vue$2.prototype.$mount = function (
2016-08-30 03:49:00 +08:00
el,
hydrating
) {
2016-10-12 12:54:06 +08:00
el = el && !config._isServer ? query(el) : undefined;
2016-08-30 03:49:00 +08:00
return this._mount(el, hydrating)
2016-10-12 12:54:06 +08:00
};
2016-04-27 01:29:27 +08:00
2016-06-23 03:33:53 +08:00
// devtools global hook
/* istanbul ignore next */
setTimeout(function () {
if (config.devtools) {
if (devtools) {
2016-11-16 07:05:02 +08:00
devtools.emit('init', Vue$2);
2016-08-30 03:49:00 +08:00
} else if (
process.env.NODE_ENV !== 'production' &&
inBrowser && /Chrome\/\d+/.test(window.navigator.userAgent)
) {
console.log(
'Download the Vue Devtools for a better development experience:\n' +
'https://github.com/vuejs/vue-devtools'
2016-10-12 12:54:06 +08:00
);
2016-08-30 03:49:00 +08:00
}
}
2016-10-12 12:54:06 +08:00
}, 0);
2016-06-23 03:33:53 +08:00
2016-11-16 07:05:02 +08:00
module.exports = Vue$2;