forked from element-plus/element-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvnode.ts
89 lines (76 loc) · 2.21 KB
/
vnode.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
import { Fragment, Text, Comment, createBlock, openBlock, createCommentVNode } from 'vue'
import type { VNode, VNodeTypes, VNodeChild } from 'vue'
type Children = VNodeTypes[] | VNodeTypes
const TEMPLATE = 'template'
export enum PatchFlags {
TEXT = 1,
CLASS = 2,
STYLE = 4,
PROPS = 8,
FULL_PROPS = 16,
HYDRATE_EVENTS = 32,
STABLE_FRAGMENT = 64,
KEYED_FRAGMENT = 128,
UNKEYED_FRAGMENT = 256,
NEED_PATCH = 512,
DYNAMIC_SLOTS = 1024,
HOISTED = -1,
BAIL = -2,
}
export const isFragment = (node: VNodeChild) => (node as VNode).type === Fragment
export const isText = (node: VNodeChild) => (node as VNode).type === Text
export const isComment = (node: VNodeChild) => (node as VNode).type === Comment
export const isTemplate = (node: VNodeChild) => (node as VNode).type === TEMPLATE
/**
* get a valid child node (not fragment nor comment)
* @param node {VNode} node to be searched
* @param depth {number} depth to be searched
*/
function getChildren(node: VNode, depth: number): undefined | VNode {
if (isComment(node)) return
if (isFragment(node) || isTemplate(node)) {
return depth > 0
? getFirstValidNode(node.children as VNodeChild, depth - 1)
: undefined
}
return node
}
/**
* determine if the element is a valid element type rather than fragments and comment e.g. <template> v-if
* @param node {VNode} node to be tested
*/
export const isValidElementNode = (node: VNodeChild) =>
!(isFragment(node) || isComment(node))
export const getFirstValidNode = (
nodes: VNodeChild,
maxDepth = 3,
): ReturnType<typeof getChildren> => {
if (Array.isArray(nodes)) {
return getChildren(nodes[0] as VNode, maxDepth)
} else {
return getChildren(nodes as VNode, maxDepth)
}
}
export function renderIf(
condition: boolean,
node: VNodeTypes,
props: any,
children?: Children,
patchFlag?: number,
patchProps?: string[],
) {
return (
condition
? renderBlock(node, props, children, patchFlag, patchProps)
: createCommentVNode('v-if', true)
)
}
export function renderBlock(
node: VNodeTypes,
props: any,
children?: Children,
patchFlag?: number,
patchProps?: string[],
) {
return (openBlock(), createBlock(node, props, children, patchFlag, patchProps))
}