| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- /* @flow */
- import config from '../config'
- import Dep from './dep'
- import { arrayMethods } from './array'
- import {
- def,
- isObject,
- isPlainObject,
- hasProto,
- hasOwn,
- warn
- } from '../util/index'
- const arrayKeys = Object.getOwnPropertyNames(arrayMethods)
- /**
- * 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.
- */
- export const observerState = {
- shouldConvert: true,
- isSettingProps: false
- }
- /**
- * 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.
- */
- export class Observer {
- value: any;
- dep: Dep;
- vmCount: number; // number of vms that has this object as root $data
- constructor (value: any) {
- this.value = value
- this.dep = new Dep()
- this.vmCount = 0
- def(value, '__ob__', this)
- if (Array.isArray(value)) {
- const augment = hasProto
- ? protoAugment
- : copyAugment
- augment(value, arrayMethods, arrayKeys)
- this.observeArray(value)
- } else {
- this.walk(value)
- }
- }
- /**
- * Walk through each property and convert them into
- * getter/setters. This method should only be called when
- * value type is Object.
- */
- walk (obj: Object) {
- const val = this.value
- for (const key in obj) {
- defineReactive(val, key, obj[key])
- }
- }
- /**
- * Observe a list of Array items.
- */
- observeArray (items: Array<any>) {
- for (let i = 0, l = items.length; i < l; i++) {
- observe(items[i])
- }
- }
- }
- // helpers
- /**
- * Augment an target Object or Array by intercepting
- * the prototype chain using __proto__
- */
- function protoAugment (target, src: Object) {
- /* eslint-disable no-proto */
- target.__proto__ = src
- /* eslint-enable no-proto */
- }
- /**
- * Augment an target Object or Array by defining
- * hidden properties.
- *
- * istanbul ignore next
- */
- function copyAugment (target: Object, src: Object, keys: Array<string>) {
- for (let i = 0, l = keys.length; i < l; i++) {
- const key = keys[i]
- def(target, key, src[key])
- }
- }
- /**
- * 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.
- */
- export function observe (value: any): Observer | void {
- if (!isObject(value)) {
- return
- }
- let ob: Observer | void
- if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {
- ob = value.__ob__
- } else if (
- observerState.shouldConvert &&
- !config._isServer &&
- (Array.isArray(value) || isPlainObject(value)) &&
- Object.isExtensible(value) &&
- !value._isVue
- ) {
- ob = new Observer(value)
- }
- return ob
- }
- /**
- * Define a reactive property on an Object.
- */
- export function defineReactive (
- obj: Object,
- key: string,
- val: any,
- customSetter?: Function
- ) {
- const dep = new Dep()
- const property = Object.getOwnPropertyDescriptor(obj, key)
- if (property && property.configurable === false) {
- return
- }
- // cater for pre-defined getter/setters
- const getter = property && property.get
- const setter = property && property.set
- let childOb = observe(val)
- Object.defineProperty(obj, key, {
- enumerable: true,
- configurable: true,
- get: function reactiveGetter () {
- const value = getter ? getter.call(obj) : val
- if (Dep.target) {
- dep.depend()
- if (childOb) {
- childOb.dep.depend()
- }
- if (Array.isArray(value)) {
- for (let e, i = 0, l = value.length; i < l; i++) {
- e = value[i]
- e && e.__ob__ && e.__ob__.dep.depend()
- }
- }
- }
- return value
- },
- set: function reactiveSetter (newVal) {
- const value = getter ? getter.call(obj) : val
- if (newVal === value) {
- return
- }
- if (process.env.NODE_ENV !== 'production' && customSetter) {
- customSetter()
- }
- if (setter) {
- setter.call(obj, newVal)
- } else {
- val = newVal
- }
- childOb = observe(newVal)
- dep.notify()
- }
- })
- }
- /**
- * Set a property on an object. Adds the new property and
- * triggers change notification if the property doesn't
- * already exist.
- */
- export function set (obj: Array<any> | Object, key: any, val: any) {
- if (Array.isArray(obj)) {
- obj.splice(key, 1, val)
- return val
- }
- if (hasOwn(obj, key)) {
- obj[key] = val
- return
- }
- const ob = obj.__ob__
- 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.'
- )
- return
- }
- if (!ob) {
- obj[key] = val
- return
- }
- defineReactive(ob.value, key, val)
- ob.dep.notify()
- return val
- }
- /**
- * Delete a property and trigger change if necessary.
- */
- export function del (obj: Object, key: string) {
- const ob = obj.__ob__
- 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.'
- )
- return
- }
- if (!hasOwn(obj, key)) {
- return
- }
- delete obj[key]
- if (!ob) {
- return
- }
- ob.dep.notify()
- }
|