Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
react-shadow
Advanced tools
Utilise Shadow DOM in React with all the benefits of style encapsulation.
Utilise Shadow DOM in React with all the benefits of style encapsulation.
npm i react-shadow --save
By using ReactShadow
you have all the benefits of Shadow DOM in React.
import ShadowDOM from 'react-shadow';
export default props => {
return (
<ShadowDOM include={['css/core/calendar.css', props.theme]}>
<h1>Calendar for {props.date}</h1>
</ShadowDOM>
);
}
In the above example the h1
element will become the host element with a shadow boundary — and the two defined CSS documents will be fetched and appended.
As the CSS documents are being fetched over the network, the host element will have a className
of resolving
for you to avoid the dreaded FOIC. Once all of the documents have been attached the className
will change to resolved
.
Using the resolved
class name you could then allow the component to appear once all styles have been applied.
.component {
opacity: 0;
transform: scale(.75);
transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.component.resolved {
opacity: 1;
transform: scale(1);
}
Oftentimes components share the same documents, however only one instance will be fetched due to memoize
of the fetchInclude
function.
Instead of defining external CSS documents to fetch, you could choose to add all of the component's styles to the component itself by simply embedding a style
node in your component. Naturally all styles added this way will be encapsulated within the shadow boundary.
export default props => {
const styles = `:host { background-color: ${props.theme} }`;
return (
<ShadowDOM>
<div>
<h1>Calendar for {props.date}</h1>
<style type="text/css">{styles}</style>
</div>
</ShadowDOM>
);
}
Note: Using inline styles will not combine styles into one
style
node.
FAQs
Utilise Shadow DOM in React with all the benefits of style encapsulation.
The npm package react-shadow receives a total of 60,939 weekly downloads. As such, react-shadow popularity was classified as popular.
We found that react-shadow demonstrated a healthy version release cadence and project activity because the last version was released less than 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.