Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
use-descendants
Advanced tools
useDescendants is a react hook for keeping track of descendant components and their relative indeces. It's based off the [@reach/descendants](https://www.npmjs.com/package/@reach/descendants) package, but faster and smaller.
useDescendants is a react hook for keeping track of descendant components and their relative indeces. It's based off the @reach/descendants package, but faster and smaller.
If you want to understand more about what this package does or why we need it, read the Problem Complex from the @reach/descendants package.
In short, this package allows each item in a list to know it's relative index and the parent of the list can keep track of each child, without needing to render in a loop and pass each component an index.
This enables component composition:
<List>
<Item /> {/* I'm index 0 */}
<Item /> {/* I'm index 1 */}
<div>
<div>
<Item /> {/* I'm arbitrarily nested, but still know that I'm index 2 */}
</div>
</div>
</List>
$ yarn add use-descendants
In the parent, you call useDescendants
and pass the result to <Descendants>
that wraps the children. In each child item, retrieve that items index with the useDescendant
hook.
const Menu = () => {
const context = useDescendants()
return (
<Descendants value={context}>
<Item />
</Descendants>
)
}
const Item = () => {
const index = useDescendant()
return <div>My index is {index}</div>
}
You can pass any data you want to useDescendant
and it will be available in the parent through the map
ref:
// In Item
const ref = useRef()
const index = useDescendant({ ref })
// In Menu
const context = useDescendants()
console.log(context.map.current)
// => { '<randomItemId>': { index: 0, props: { ref: HTMLDivElement } } }
You can also pass un-memoized values or callbacks here because it's just kept in a ref:
const index = useDescendant({
onSelect: () => {
/* Do something */
}
})
FAQs
> Warning: useDescendants is experimental and primarily intended for personal use. It heavily relies on refs and the DOM and likely will not be concurrent mode compatible.
The npm package use-descendants receives a total of 9,602 weekly downloads. As such, use-descendants popularity was classified as popular.
We found that use-descendants demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.