-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwith.js
73 lines (62 loc) · 1.57 KB
/
with.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
var _ = require('../util')
var Watcher = require('../watcher')
module.exports = {
priority: 900,
bind: function () {
var child = this.vm
var parent = child.$parent
var childKey = this.arg || '$data'
var parentKey = this.expression
if (this.el !== child.$el) {
_.warn(
'v-with can only be used on instance root elements.'
)
} else if (!parent) {
_.warn(
'v-with must be used on an instance with a parent.'
)
} else {
// simple lock to avoid circular updates.
// without this it would stabilize too, but this makes
// sure it doesn't cause other watchers to re-evaluate.
var locked = false
var lock = function () {
locked = true
_.nextTick(unlock)
}
var unlock = function () {
locked = false
}
this.parentWatcher = new Watcher(
parent,
parentKey,
function (val) {
if (!locked) {
lock()
child.$set(childKey, val)
}
}
)
// set the child initial value first, before setting
// up the child watcher to avoid triggering it
// immediately.
child.$set(childKey, this.parentWatcher.value)
this.childWatcher = new Watcher(
child,
childKey,
function (val) {
if (!locked) {
lock()
parent.$set(parentKey, val)
}
}
)
}
},
unbind: function () {
if (this.parentWatcher) {
this.parentWatcher.teardown()
this.childWatcher.teardown()
}
}
}