-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfragment.js
182 lines (163 loc) · 3.63 KB
/
fragment.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
var _ = require('../util')
var transition = require('../transition')
/**
* Abstraction for a partially-compiled fragment.
* Can optionally compile content with a child scope.
*
* @param {Function} linker
* @param {Vue} vm
* @param {DocumentFragment} frag
* @param {Vue} [host]
* @param {Object} [scope]
*/
function Fragment (linker, vm, frag, host, scope, parentFrag) {
this.children = []
this.childFrags = []
this.vm = vm
this.scope = scope
this.inserted = false
this.parentFrag = parentFrag
if (parentFrag) {
parentFrag.childFrags.push(this)
}
this.unlink = linker(vm, frag, host, scope, this)
var single = this.single = frag.childNodes.length === 1
if (single) {
this.node = frag.childNodes[0]
this.before = singleBefore
this.remove = singleRemove
} else {
this.node = _.createAnchor('fragment-start')
this.end = _.createAnchor('fragment-end')
this.nodes = _.toArray(frag.childNodes)
this.before = multiBefore
this.remove = multiRemove
}
this.node.__vfrag__ = this
}
/**
* Call attach/detach for all components contained within
* this fragment. Also do so recursively for all child
* fragments.
*
* @param {Function} hook
*/
Fragment.prototype.callHook = function (hook) {
var i, l
for (i = 0, l = this.children.length; i < l; i++) {
hook(this.children[i])
}
for (i = 0, l = this.childFrags.length; i < l; i++) {
this.childFrags[i].callHook(hook)
}
}
/**
* Destroy the fragment.
*/
Fragment.prototype.destroy = function () {
if (this.parentFrag) {
this.parentFrag.childFrags.$remove(this)
}
this.unlink()
}
/**
* Insert fragment before target, single node version
*
* @param {Node} target
* @param {Boolean} trans
*/
function singleBefore (target, trans) {
var method = trans !== false
? transition.before
: _.before
method(this.node, target, this.vm)
this.inserted = true
if (_.inDoc(this.node)) {
this.callHook(attach)
}
}
/**
* Remove fragment, single node version
*
* @param {Boolean} [destroy]
*/
function singleRemove (destroy) {
var shouldCallRemove = _.inDoc(this.node)
var self = this
transition.remove(this.node, this.vm, function () {
self.inserted = false
if (shouldCallRemove) {
self.callHook(detach)
}
if (destroy) {
self.destroy()
}
})
}
/**
* Insert fragment before target, multi-nodes version
*
* @param {Node} target
*/
function multiBefore (target) {
_.before(this.node, target)
var nodes = this.nodes
var vm = this.vm
for (var i = 0, l = nodes.length; i < l; i++) {
_.before(nodes[i], target, vm)
}
_.before(this.end, target)
this.inserted = true
if (_.inDoc(this.node)) {
this.callHook(attach)
}
}
/**
* Remove fragment, multi-nodes version
*
* @param {Boolean} [destroy]
*/
function multiRemove (destroy) {
var shouldCallRemove = _.inDoc(this.node)
var parent = this.node.parentNode
var node = this.node.nextSibling
var nodes = this.nodes = []
var vm = this.vm
var next
while (node !== this.end) {
nodes.push(node)
next = node.nextSibling
parent.removeChild(node, vm)
node = next
}
parent.removeChild(this.node)
parent.removeChild(this.end)
this.inserted = false
if (shouldCallRemove) {
this.callHook(detach)
}
if (destroy) {
this.destroy()
}
}
/**
* Call attach hook for a Vue instance.
*
* @param {Vue} child
*/
function attach (child) {
if (!child._isAttached) {
child._callHook('attached')
}
}
/**
* Call detach hook for a Vue instance.
*
* @param {Vue} child
*/
function detach (child) {
if (child._isAttached) {
child._callHook('detached')
}
}
module.exports = Fragment