中文 | English
smart-observe comes from Vue.js and is a small, efficient library for observing changes of javascript Object, Array and Class.
npm install --save smart-observe
or
bower install --save smart-observe
To watch expression. observe.watch(target, expression, callback)
or observe(target, expression, callback)
const target = {a: 1}
observe(target, 'a', function (newValue, oldValue) {
console.log(newValue, oldValue)
})
target.a = 3
// 3 1
const target = {a: 1}
observe.compute(target, 'b', function () {
return this.a * 2
})
console.log(target.b)
// 2
target.a = 3
console.log(target.b)
// 6
const options = {
data: {
PI: Math.PI,
radius: 1,
},
computed: {
'area': function () {
return this.PI * this.square(this.radius) // πr²
},
},
watchers: {
'area': function (newValue, oldValue) {
console.log(`area: ${newValue}`)
},
},
methods: {
square (num) {
return num * num
},
},
}
const target = observe.react(options)
target.radius = 3
// area: 28.274333882308138
name | type | value | detail |
---|---|---|---|
observe.deep |
boolean |
The default is false |
If true , observe.watch(target, expression, callback) will observe target deeply |
observe.sync |
boolean |
The default is false |
If true , observe.watch(target, expression, callback) will invoke callback immediately when a property change is detected |
observe.default |
function |
Could only be one of observe.react , observe.watch and observe.compute . The default is observe.watch |
Set actual method to observe.default for observe(...) |
observe(...)
- It's syntactic sugar of
observe.default
. See 'properties' for details
observe.watch(target, expression, callback)
target
: Any objectexpression
:string
orfunction
callback
:function
- Returns
Watcher
. And callingwatcher.teardown()
could unwatch expression
observe.compute(target, name, accessor, cache)
target
: Any objectname
:string
accessor
:function
: It will be theget
of accessorObject
: Contains: (at leastget
orset
)get
:function
set
:function
cache
:boolean
. Optional. The default istrue
. Iffalse
, theget
will be evaluated whenever reading computed properties
cache
:boolean
. Same asaccessor.cache
observe.react(options, target)
options
:Object
. Contains:data
: It's the properties to addcomputed
: It's the computed properties to addwatchers
: It's the watchers to watch properties or computed propertiesmethods
: The methods to add. And these will bind totarget
target
: Any object. Optional. The default is empty object. It will be attached with the fields ofoptions
- returns
target