-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue-vnode-utils.ts
490 lines (392 loc) · 12.3 KB
/
vue-vnode-utils.ts
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
import {
cloneVNode,
Comment,
type Component,
type ComponentOptions,
createCommentVNode,
createTextVNode,
Fragment,
type FunctionalComponent,
isVNode,
Static,
Text,
type VNode,
type VNodeArrayChildren,
type VNodeChild
} from 'vue'
// @ts-ignore
const DEV = process.env.NODE_ENV !== 'production'
export const isComment = (vnode: unknown): vnode is (null | undefined | boolean | (VNode & { type: Comment })) => {
return getType(vnode) === 'comment'
}
export const isComponent = (vnode: unknown): vnode is (VNode & { type: Component }) => {
return getType(vnode) === 'component'
}
export const isElement = (vnode: unknown): vnode is (VNode & { type: string }) => {
return getType(vnode) === 'element'
}
export const isFragment = (vnode: unknown): vnode is ((VNode & { type: typeof Fragment }) | VNodeArrayChildren) => {
return getType(vnode) === 'fragment'
}
export const isFunctionalComponent = (vnode: unknown): vnode is (VNode & { type: FunctionalComponent }) => {
return isComponent(vnode) && typeof vnode.type === 'function'
}
export const isStatefulComponent = (vnode: unknown): vnode is (VNode & { type: ComponentOptions }) => {
return isComponent(vnode) && typeof vnode.type === 'object'
}
export const isStatic = (vnode: unknown): vnode is (VNode & { type: typeof Static }) => {
return getType(vnode) === 'static'
}
export const isText = (vnode: unknown): vnode is (string | number | (VNode & { type: Text })) => {
return getType(vnode) === 'text'
}
export const getText = (vnode: VNode | string | number): string | undefined => {
if (typeof vnode === 'string') {
return vnode
}
if (typeof vnode === 'number') {
return String(vnode)
}
if (isVNode(vnode) && vnode.type === Text) {
return String(vnode.children)
}
return undefined
}
type ValueTypes = 'string' | 'number' | 'boolean' | 'undefined' | 'symbol' | 'bigint' | 'object' | 'function' | 'array' | 'date' | 'regexp' | 'vnode' | 'null'
const typeOf = (value: unknown) => {
let t: ValueTypes = typeof value
if (t === 'object') {
if (value === null) {
t = 'null'
} else if (Array.isArray(value)) {
t = 'array'
} else if (isVNode(value)) {
t = 'vnode'
} else if (value instanceof Date) {
t = 'date'
} else if (value instanceof RegExp) {
t = 'regexp'
}
}
return t
}
const warn = (method: string, msg: string) => {
console.warn(`[${method}] ${msg}`)
}
const checkArguments = (method: string, passed: unknown[], expected: string[]) => {
for (let index = 0; index < passed.length; ++index) {
const t = typeOf(passed[index])
const expect = expected[index]
if (expect !== t) {
warn(method, `Argument ${index + 1} was ${t}, should be ${expect}`)
}
}
}
export const getType = (vnode: unknown) => {
const typeofVNode = typeof vnode
if (vnode == null || typeofVNode === 'boolean') {
return 'comment'
} else if (typeofVNode === 'string' || typeofVNode === 'number') {
return 'text'
} else if (Array.isArray(vnode)) {
return 'fragment'
}
if (isVNode(vnode)) {
const { type } = vnode
const typeofType = typeof type
if (typeofType === 'symbol') {
if (type === Fragment) {
return 'fragment'
} else if (type === Text) {
return 'text'
} else if (type === Comment) {
return 'comment'
} else if (type === Static) {
return 'static'
}
} else if (typeofType === 'string') {
return 'element'
} else if (typeofType === 'object' || typeofType === 'function') {
return 'component'
}
}
return undefined
}
const isEmptyObject = (obj: Record<string, unknown>) => {
for (const prop in obj) {
return false
}
return true
}
const getFragmentChildren = (fragmentVNode: VNode | VNodeArrayChildren): VNodeArrayChildren => {
if (Array.isArray(fragmentVNode)) {
return fragmentVNode
}
const { children } = fragmentVNode
if (Array.isArray(children)) {
return children
}
if (DEV) {
warn('getFragmentChildren', `Unknown children for fragment: ${typeOf(children)}`)
}
return []
}
export type IterationOptions = {
element?: boolean
component?: boolean
comment?: boolean
text?: boolean
static?: boolean
}
export const ALL_VNODES: IterationOptions = Object.freeze({
element: true,
component: true,
comment: true,
text: true,
static: true
})
export const COMPONENTS_AND_ELEMENTS: IterationOptions = Object.freeze({
element: true,
component: true
})
export const SKIP_COMMENTS: IterationOptions = Object.freeze({
element: true,
component: true,
text: true,
static: true
})
const promoteToVNode = (node: VNode | string | number | boolean | null | undefined | void, options: IterationOptions): VNode | null => {
const type = getType(node)
// In practice, we don't call this function for fragments, but TS gets unhappy if we don't handle it
if (!type || type === 'fragment' || !options[type]) {
return null
}
if (isVNode(node)) {
return node
}
if (type === 'text') {
return createTextVNode(getText(node as (string | number)))
}
return createCommentVNode()
}
export const addProps = (
children: VNodeArrayChildren,
callback: (vnode: VNode) => (Record<string, unknown> | null | void),
options: IterationOptions = COMPONENTS_AND_ELEMENTS
): VNodeArrayChildren => {
if (DEV) {
checkArguments('addProps', [children, callback, options], ['array', 'function', 'object'])
}
return replaceChildrenInternal(children, (vnode) => {
const props = callback(vnode)
if (DEV) {
const typeofProps = typeOf(props)
if (!['object', 'null', 'undefined'].includes(typeofProps)) {
warn('addProps', `Callback returned unexpected ${typeofProps}: ${String(props)}`)
}
}
if (props && !isEmptyObject(props)) {
return cloneVNode(vnode, props)
}
}, options)
}
export const replaceChildren = (
children: VNodeArrayChildren,
callback: (vnode: VNode) => (VNode | VNodeArrayChildren | string | number | void),
options: IterationOptions = SKIP_COMMENTS
): VNodeArrayChildren => {
if (DEV) {
checkArguments('replaceChildren', [children, callback, options], ['array', 'function', 'object'])
}
return replaceChildrenInternal(children, callback, options)
}
const replaceChildrenInternal = (
children: VNodeArrayChildren,
callback: (vnode: VNode) => (VNode | VNodeArrayChildren | string | number | void),
options: IterationOptions
): VNodeArrayChildren => {
let nc: VNodeArrayChildren | null = null
for (let index = 0; index < children.length; ++index) {
const child = children[index]
if (isFragment(child)) {
const oldFragmentChildren = getFragmentChildren(child)
const newFragmentChildren = replaceChildrenInternal(oldFragmentChildren, callback, options)
let newChild: VNodeChild = child
if (oldFragmentChildren !== newFragmentChildren) {
nc ??= children.slice(0, index)
if (Array.isArray(child)) {
newChild = newFragmentChildren
} else {
newChild = cloneVNode(child)
newChild.children = newFragmentChildren
}
}
nc && nc.push(newChild)
} else {
const vnode = promoteToVNode(child, options)
if (vnode) {
const newNodes = callback(vnode) ?? vnode
if (DEV) {
const typeOfNewNodes = typeOf(newNodes)
if (!['array', 'vnode', 'string', 'number', 'undefined'].includes(typeOfNewNodes)) {
warn('replaceChildren', `Callback returned unexpected ${typeOfNewNodes} ${String(newNodes)}`)
}
}
if (newNodes !== child) {
nc ??= children.slice(0, index)
}
if (Array.isArray(newNodes)) {
nc && nc.push(...newNodes)
} else {
nc && nc.push(newNodes)
}
} else {
nc && nc.push(child)
}
}
}
return nc ?? children
}
export const betweenChildren = (
children: VNodeArrayChildren,
callback: (previousVNode: VNode, nextVNode: VNode) => (VNode | VNodeArrayChildren | string | number | void),
options: IterationOptions = SKIP_COMMENTS
): VNodeArrayChildren => {
if (DEV) {
checkArguments('betweenChildren', [children, callback, options], ['array', 'function', 'object'])
}
let previousVNode: VNode | null = null
return replaceChildrenInternal(children, vnode => {
let insertedNodes: VNode | VNodeArrayChildren | string | number | void = undefined
if (previousVNode) {
insertedNodes = callback(previousVNode, vnode)
if (DEV) {
const typeOfInsertedNodes = typeOf(insertedNodes)
if (!['array', 'vnode', 'string', 'number', 'undefined'].includes(typeOfInsertedNodes)) {
warn('betweenChildren', `Callback returned unexpected ${typeOfInsertedNodes} ${String(insertedNodes)}`)
}
}
}
previousVNode = vnode
if (insertedNodes == null || (Array.isArray(insertedNodes) && insertedNodes.length === 0)) {
return
}
if (Array.isArray(insertedNodes)) {
return [...insertedNodes, vnode]
}
return [insertedNodes, vnode]
}, options)
}
export const someChild = (
children: VNodeArrayChildren,
callback: (vnode: VNode) => unknown,
options: IterationOptions = ALL_VNODES
): boolean => {
if (DEV) {
checkArguments('someChild', [children, callback, options], ['array', 'function', 'object'])
}
return someChildInternal(children, callback, options)
}
const someChildInternal = (
children: VNodeArrayChildren,
callback: (vnode: VNode) => unknown,
options: IterationOptions
): boolean => {
for (const child of children) {
if (isFragment(child)) {
if (someChild(getFragmentChildren(child), callback, options)) {
return true
}
} else {
const vnode = promoteToVNode(child, options)
if (vnode && callback(vnode)) {
return true
}
}
}
return false
}
export const everyChild = (
children: VNodeArrayChildren,
callback: (vnode: VNode) => unknown,
options: IterationOptions = ALL_VNODES
): boolean => {
if (DEV) {
checkArguments('everyChild', [children, callback, options], ['array', 'function', 'object'])
}
return !someChildInternal(children, (vnode) => !callback(vnode), options)
}
export const eachChild = (
children: VNodeArrayChildren,
callback: (vnode: VNode) => void,
options: IterationOptions = ALL_VNODES
): void => {
if (DEV) {
checkArguments('eachChild', [children, callback, options], ['array', 'function', 'object'])
}
someChildInternal(children, (vnode) => {
callback(vnode)
}, options)
}
export const findChild = (
children: VNodeArrayChildren,
callback: (vnode: VNode) => unknown,
options: IterationOptions = ALL_VNODES
): (VNode | undefined) => {
if (DEV) {
checkArguments('findChild', [children, callback, options], ['array', 'function', 'object'])
}
let node: VNode | undefined = undefined
someChildInternal(children, (vnode) => {
if (callback(vnode)) {
node = vnode
return true
}
}, options)
return node
}
const COLLAPSIBLE_WHITESPACE_RE = /\S|\u00a0/
export const isEmpty = (children: VNodeArrayChildren): boolean => {
if (DEV) {
checkArguments('isEmpty', [children], ['array'])
}
return !someChildInternal(children, (vnode) => {
if (isText(vnode)) {
const text = getText(vnode) || ''
return COLLAPSIBLE_WHITESPACE_RE.test(text)
}
return true
}, SKIP_COMMENTS)
}
export const extractSingleChild = (children: VNodeArrayChildren): VNode | undefined => {
if (DEV) {
checkArguments('extractSingleChild', [children], ['array'])
}
const node = findChild(children, () => {
return true
}, COMPONENTS_AND_ELEMENTS)
if (DEV) {
someChildInternal(children, (vnode) => {
let warning = ''
// The equality check is valid here as matching nodes can't come from promotions
if (vnode === node) {
return false
}
if (isElement(vnode) || isComponent(vnode)) {
warning = 'Multiple root nodes found, only one expected'
} else if (isText(vnode)) {
const text = getText(vnode) || ''
if (COLLAPSIBLE_WHITESPACE_RE.test(text)) {
warning = `Non-empty text node:\n'${text}'`
}
} else {
warning = `Encountered unexpected ${getType(vnode)} VNode`
}
if (warning) {
warn('extractSingleChild', warning)
return true
}
}, SKIP_COMMENTS)
}
return node
}