Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
consume-multiple-contexts
Advanced tools
Utility for consuming multiple react contexts. Look at the example.
It's common to have multiple contexts in React ecosystems and you need consuming them together in your components. In new context API is way for that but you must repeat consumers for every component. It's maybe good for few component but for large applications is pain. The module consume-multiple-contexts try to solve that problem.
You can add the consume-multiple-contexts to your project using npm:
npm i consume-multiple-contexts --save
I use example from React documentation.
const ThemeContext = React.createContext('light');
const UserContext = React.createContext();
class App extends React.Component {
render() {
const {signedInUser, theme} = this.props;
return (
<ThemeContext.Provider value={theme}>
<UserContext.Provider value={signedInUser}>
<Layout />
</UserContext.Provider>
</ThemeContext.Provider>
);
}
}
function Layout() {
return (
<div>
<Sidebar />
<Content />
</div>
);
}
function Content() {
return (
<ThemeContext.Consumer>
{theme => (
<UserContext.Consumer>
{user => (
<ProfilePage user={user} theme={theme} />
)}
</UserContext.Consumer>
)}
</ThemeContext.Consumer>
);
}
function Sidebar() {
return (
<ThemeContext.Consumer>
{theme => (
<UserContext.Consumer>
{user => (
<ProfileSidebar user={user} theme={theme} />
)}
</UserContext.Consumer>
)}
</ThemeContext.Consumer>
);
}
If you use consume-multiple-contexts module you can write:
import { createNamedContext, createMultipleContexts } from 'consume-multiple-contexts';
const ThemeContext = React.createContext('light');
const UserContext = React.createContext();
const withContext = createMultipleContexts(
createNamedContext('theme', ThemeContext),
createNamedContext('user', UserContext)
);
.
.
function Content() {
return withContext(({ theme, user }) => (
<ProfilePage theme={theme} user={user} />
));
}
function Sidebar() {
return withContext(({ theme, user }) => (
<ProfileSidebar theme={theme} user={user} />
));
}
Or if you like HOC you can write:
import { createNamedContext, withMultipleContextsFactory } from 'consume-multiple-contexts';
const ThemeContext = React.createContext('light');
const UserContext = React.createContext();
const multipleContexts = [
createNamedContext('theme', ThemeContext),
createNamedContext('user', UserContext)
];
const withContext = withMultipleContextsFactory(themeContext, userContext);
.
.
const Content = withContext(ProfilePage);
const Sidebar = withContext(ProfileSidebar);
FAQs
Utility for consuming multiple contexts with DRY
The npm package consume-multiple-contexts receives a total of 2 weekly downloads. As such, consume-multiple-contexts popularity was classified as not popular.
We found that consume-multiple-contexts 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.