Replace incorrect usages of element.childNodes with element.children
This commit is contained in:
parent
e0496f604e
commit
61ed214e88
|
@ -16,7 +16,7 @@
|
||||||
// Get root li element
|
// Get root li element
|
||||||
const el = document.getElementById(`component-${component?._id}`)
|
const el = document.getElementById(`component-${component?._id}`)
|
||||||
// Get inner nav item content element
|
// Get inner nav item content element
|
||||||
const child = el?.childNodes[0]?.childNodes[0]
|
const child = el?.children[0]?.children[0]
|
||||||
if (!el) {
|
if (!el) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -399,7 +399,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
const scrollIntoView = () => {
|
const scrollIntoView = () => {
|
||||||
const node = document.getElementsByClassName(id)?.[0]?.childNodes[0]
|
const node = document.getElementsByClassName(id)?.[0]?.children[0]
|
||||||
if (!node) {
|
if (!node) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,8 +35,8 @@
|
||||||
|
|
||||||
const getDOMNodeForComponent = component => {
|
const getDOMNodeForComponent = component => {
|
||||||
const parent = component.closest(".component")
|
const parent = component.closest(".component")
|
||||||
const children = Array.from(parent.childNodes)
|
const children = Array.from(parent.children)
|
||||||
return children?.find(node => node?.nodeType === 1)
|
return children[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
// Callback when initially starting a drag on a draggable component
|
// Callback when initially starting a drag on a draggable component
|
||||||
|
|
|
@ -71,8 +71,7 @@
|
||||||
// Extract valid children
|
// Extract valid children
|
||||||
// Sanity limit of 100 active indicators
|
// Sanity limit of 100 active indicators
|
||||||
const children = Array.from(parents)
|
const children = Array.from(parents)
|
||||||
.map(parent => parent?.childNodes?.[0])
|
.map(parent => parent?.children?.[0])
|
||||||
.filter(node => node?.nodeType === 1)
|
|
||||||
.slice(0, 100)
|
.slice(0, 100)
|
||||||
|
|
||||||
// If there aren't any nodes then reset
|
// If there aren't any nodes then reset
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
}
|
}
|
||||||
const id = $builderStore.selectedComponentId
|
const id = $builderStore.selectedComponentId
|
||||||
const parent = document.getElementsByClassName(id)?.[0]
|
const parent = document.getElementsByClassName(id)?.[0]
|
||||||
const element = parent?.childNodes?.[0]
|
const element = parent?.children?.[0]
|
||||||
|
|
||||||
// The settings bar is higher in the dom tree than the selection indicators
|
// The settings bar is higher in the dom tree than the selection indicators
|
||||||
// as we want to be able to render the settings bar wider than the screen,
|
// as we want to be able to render the settings bar wider than the screen,
|
||||||
|
|
Loading…
Reference in New Issue