![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
localstate-react
Advanced tools
A React HOC that make Mvstate and React a pleasure to use together
Mvstate can be a bit scary, at least if you are not familiar with functors. Mvstate-React provides you with a nice little HOC that allows you to express your React code more clearly. Let's look at an example:
// Model
export const create = () => ({counter: 1});
export const inc = ({counter}) => ({counter: counter + 1});
export const dec = ({counter}) => ({counter: counter - 1});
// Component
import {create, dec, inc} from './Model';
function Counter({refunc: {model, notify}}) {
return (
<div>
<p>
<strong>Counter is {model.counter}</strong>
</p>
<p>
<button onClick={notify(dec)}>Decrement</button>
<button onClick={notify(inc)}>Increment</button>
<button onClick={notify(inc, dec, inc, dec)}>Silly button</button>
</p>
</div>
);
}
export default observe(create(), Counter);
If you used Redux, you're probably already familiar with this pattern. "observe" will ensure that your component is updated every time notify is called.
Cheers, Peter Crona
FAQs
React HOC for Localstate
The npm package localstate-react receives a total of 1 weekly downloads. As such, localstate-react popularity was classified as not popular.
We found that localstate-react 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.