
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
@fluentui-react-native/use-slots
Advanced tools
A pattern and framework for building layering components together in an efficient, pluggable, and customizable manner.
When building libraries of components, larger and more complex components are often built out of smaller and more focused components. This is great conceptually because it allows good separation of concerns and enables better and more modular designs. The boundaries in this layering are not only defined by the definition of your component, whether it be a function or a class based component, but by React.createElement
. The createElement
calls are what JSX is syntactic sugar for, and provides the layering for things like hooks.
The issue is that this layering adds overhead as well. When building HOCs the number of elements in the JSX tree, can be far greater than the actual number of primitives rendered in the DOM. While it is possible to render a function component by calling it directly, this has to be done with caution if that component contains hooks. The storage for hooks is effectively an array indexed from the last createElement
call. If a useState
call were to happen on one render pass, but be skipped in the next, all subsequent hook calls would be misaligned.
To solve this reliably for function components it is necessary to separate the hook calls from element tree generation. The pattern in this package is to write render functions that return a continuation function that will return the JSX tree. This pattern is as follows:
const twoPartRender = (props: MyProps) => {
// do the hook calls in this section */
const theme = React.useContext(ThemeContext);
const [state, setState] = React.useState(() => doSomeStateSetup()));
// now return a (props) or (props, children) or (props, ...children) function that finishes the render
return (additional: MyProps, ...children: React.ReactNode[]) => {
const merged = { ...props, ...additional };
return (<View {...merged}>{children}</View>)
}
}
stagedComponent
This type of function is not recognizable on its own as a component. This package exports a helper function stagedComponent
that both:
The helper will return a React.FunctionComponent
that will forward props (without children) to the first call, then pass children to the continuation function.
Staged components could be consumed by hand. This might look something like:
// create the BaseComponent as a staged component, this can still be rendered via <BaseComponent />
const BaseComponent = stagedComponent(/* some implementation */);
// create a wrapper component
const WrapperComponent = stagedComponent((props) => {
// grab the children, do some prop transformations, etc.
const { children, ...rest } = props;
const propsForBase = doSomethingWithProps(rest);
// call the first part of the function
const continuation = BaseComponent._staged(propsForBase);
// now render that component just by calling the function
return continuation({}, children)
}
Note that in this example the WrapperComponent
is leveraging the code of the BaseComponent
but will not create a dedicated tree entry. Also the WrapperComponent
itself could be implemented as a staged component.
useSlots
hookTBD
FAQs
Hook function to return styled slots
The npm package @fluentui-react-native/use-slots receives a total of 411 weekly downloads. As such, @fluentui-react-native/use-slots popularity was classified as not popular.
We found that @fluentui-react-native/use-slots demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers 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.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.