Skip to content

Commit 382402e

Browse files
committedJun 19, 2024·
feat(applet): add null-safety to inspector component data
1 parent 222da2e commit 382402e

File tree

4 files changed

+32
-20
lines changed

4 files changed

+32
-20
lines changed
 

‎packages/applet/src/modules/components/index.vue

+8-5
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,20 @@ function dfs(node: { id: string, children?: { id: string }[] }, path: string[] =
3939
if (node.children?.length === 0)
4040
linkedList.push([...path])
4141
42-
node.children?.forEach((child) => {
43-
dfs(child, path, linkedList)
44-
})
42+
if (Array.isArray(node.children)) {
43+
node.children.forEach((child) => {
44+
dfs(child, path, linkedList)
45+
})
46+
}
47+
4548
path.pop()
4649
return linkedList
4750
}
4851
4952
function flattenTreeNodes(tree: CustomInspectorNode[]) {
5053
const res: CustomInspectorNode[] = []
5154
const find = (treeNode: CustomInspectorNode[]) => {
52-
treeNode.forEach((item) => {
55+
treeNode?.forEach((item) => {
5356
res.push(item)
5457
if (item.children?.length)
5558
find(item.children)
@@ -61,7 +64,7 @@ function flattenTreeNodes(tree: CustomInspectorNode[]) {
6164
6265
function getNodesByDepth(list: string[][], depth: number) {
6366
const nodes: string[] = []
64-
list.forEach((item) => {
67+
list?.forEach((item) => {
6568
nodes.push(...item.slice(0, depth + 1))
6669
})
6770
return [...new Set(nodes)]

‎packages/applet/src/modules/custom-inspector/components/state/Index.vue

+8-5
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,19 @@ function dfs(node: { id: string, children?: { id: string }[] }, path: string[] =
3737
if (node.children?.length === 0)
3838
linkedList.push([...path])
3939
40-
node.children?.forEach((child) => {
41-
dfs(child, path, linkedList)
42-
})
40+
if (Array.isArray(node.children)) {
41+
node.children.forEach((child) => {
42+
dfs(child, path, linkedList)
43+
})
44+
}
45+
4346
path.pop()
4447
return linkedList
4548
}
4649
4750
function getNodesByDepth(list: string[][], depth: number) {
4851
const nodes: string[] = []
49-
list.forEach((item) => {
52+
list?.forEach((item) => {
5053
nodes.push(...item.slice(0, depth + 1))
5154
})
5255
return [...new Set(nodes)]
@@ -55,7 +58,7 @@ function getNodesByDepth(list: string[][], depth: number) {
5558
function flattenTreeNodes(tree: CustomInspectorNode[]) {
5659
const res: CustomInspectorNode[] = []
5760
const find = (treeNode: CustomInspectorNode[]) => {
58-
treeNode.forEach((item) => {
61+
treeNode?.forEach((item) => {
5962
res.push(item)
6063
if (item.children?.length)
6164
find(item.children)

‎packages/applet/src/modules/pinia/components/store/Index.vue

+8-5
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,19 @@ function dfs(node: { id: string, children?: { id: string }[] }, path: string[] =
3232
if (node.children?.length === 0)
3333
linkedList.push([...path])
3434
35-
node.children?.forEach((child) => {
36-
dfs(child, path, linkedList)
37-
})
35+
if (Array.isArray(node.children)) {
36+
node.children.forEach((child) => {
37+
dfs(child, path, linkedList)
38+
})
39+
}
40+
3841
path.pop()
3942
return linkedList
4043
}
4144
4245
function getNodesByDepth(list: string[][], depth: number) {
4346
const nodes: string[] = []
44-
list.forEach((item) => {
47+
list?.forEach((item) => {
4548
nodes.push(...item.slice(0, depth + 1))
4649
})
4750
return [...new Set(nodes)]
@@ -50,7 +53,7 @@ function getNodesByDepth(list: string[][], depth: number) {
5053
function flattenTreeNodes(tree: CustomInspectorNode[]) {
5154
const res: CustomInspectorNode[] = []
5255
const find = (treeNode: CustomInspectorNode[]) => {
53-
treeNode.forEach((item) => {
56+
treeNode?.forEach((item) => {
5457
res.push(item)
5558
if (item.children?.length)
5659
find(item.children)

‎packages/applet/src/modules/router/components/routes/Index.vue

+8-5
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,19 @@ function dfs(node: { id: string, children?: { id: string }[] }, path: string[] =
3232
if (node.children?.length === 0)
3333
linkedList.push([...path])
3434
35-
node.children?.forEach((child) => {
36-
dfs(child, path, linkedList)
37-
})
35+
if (Array.isArray(node.children)) {
36+
node.children.forEach((child) => {
37+
dfs(child, path, linkedList)
38+
})
39+
}
40+
3841
path.pop()
3942
return linkedList
4043
}
4144
4245
function getNodesByDepth(list: string[][], depth: number) {
4346
const nodes: string[] = []
44-
list.forEach((item) => {
47+
list?.forEach((item) => {
4548
nodes.push(...item.slice(0, depth + 1))
4649
})
4750
return [...new Set(nodes)]
@@ -50,7 +53,7 @@ function getNodesByDepth(list: string[][], depth: number) {
5053
function flattenTreeNodes(tree: CustomInspectorNode[]) {
5154
const res: CustomInspectorNode[] = []
5255
const find = (treeNode: CustomInspectorNode[]) => {
53-
treeNode.forEach((item) => {
56+
treeNode?.forEach((item) => {
5457
res.push(item)
5558
if (item.children?.length)
5659
find(item.children)

0 commit comments

Comments
 (0)
Please sign in to comment.